DeskTop.js 625 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136
  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.SONGteacherDeskIcon = [
  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": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.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": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //SPROUT Lab
  1525. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. ];
  1542. //010204
  1543. U.MD.D.I.x010204TeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1546. ];
  1547. //010204
  1548. U.MD.D.I.x010204StudentDeskIcon = [
  1549. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1550. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. ];
  1554. //trail
  1555. U.MD.D.I.trailTeacherDeskIcon = [
  1556. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1557. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1558. ];
  1559. //trail
  1560. U.MD.D.I.trailStudentDeskIcon = [
  1561. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1562. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1564. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1565. ];
  1566. //010504
  1567. U.MD.D.I.x010504TeacherDeskIcon = [
  1568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1570. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1575. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1576. ];
  1577. //010504
  1578. U.MD.D.I.x010504StudentDeskIcon = [
  1579. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1582. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //#region 桌面初始化a
  1585. /**
  1586. * 初始化桌面的起始函数
  1587. *
  1588. */
  1589. U.MD.D.I.init = function () {
  1590. if ($("#U_MD_D_K")[0]) {
  1591. //初始化桌面图标
  1592. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1593. // var clickUrl = ':12588/requestIp.php';
  1594. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1595. // U.MD.D.I.Ip = data;
  1596. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1597. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1598. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1599. // })
  1600. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1601. // })
  1602. }
  1603. }
  1604. /**
  1605. * 模式切换
  1606. *
  1607. */
  1608. U.MD.D.I.ModeCheck = function (type) {
  1609. if (US.Config.type == type) {
  1610. return
  1611. }
  1612. US.Config.type = type
  1613. $('.U_PBL_Check .active')[0].className = ''
  1614. if (type == 1) {
  1615. $('.U_PBL_Check div')[0].className = 'active'
  1616. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1617. } else {
  1618. $('.U_PBL_Check div')[1].className = 'active'
  1619. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1620. }
  1621. //初始化桌面图标
  1622. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1623. if (type == 2) {
  1624. U.MD.D.I.openApplication("project")
  1625. }
  1626. }
  1627. /**
  1628. * 隐藏任务栏
  1629. *
  1630. * @param {element} 桌面元素
  1631. */
  1632. U.MD.D.I.hiddenTaskbar = function (el) {
  1633. //任务栏位置变小
  1634. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1635. //桌面的位置变大
  1636. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1637. }
  1638. /**
  1639. * 隐藏任务栏
  1640. *
  1641. * @param {element} 桌面元素
  1642. */
  1643. U.MD.D.I.hiddenTaskbarout = function (el) {
  1644. //任务栏位置变小
  1645. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1646. //任务栏位置变化
  1647. U.selectEl(el).css({ "bottom": "-60px" });
  1648. //桌面的位置变大
  1649. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1650. }
  1651. }
  1652. /**
  1653. * 初始化打印桌面图标
  1654. *
  1655. * @param {element} 桌面元素
  1656. */
  1657. U.MD.D.I.initDesktopIcons = function (el, type) {
  1658. var i, //用于循环
  1659. _content, //桌面图标元素
  1660. _iconcontent, //桌面图标元素
  1661. _frag = $$("frag"), //定义一个碎片元素
  1662. _type = US.userInfo.type,
  1663. _org = US.userInfo.org,
  1664. _oid = US.userInfo.organizeid,
  1665. _role = US.userInfo.role,
  1666. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1667. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1668. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1669. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1670. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1671. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1672. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1673. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1674. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1675. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1676. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1677. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1678. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1679. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1680. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1681. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1682. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1683. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1684. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1685. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1686. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1687. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1688. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1689. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1690. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1691. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1692. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1693. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1694. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1695. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1696. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1697. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1698. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1699. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1700. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1701. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1702. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1703. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1704. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1705. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1706. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1707. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1708. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1709. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1710. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1711. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1712. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1713. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1714. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1715. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1716. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1717. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1718. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1719. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1720. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1721. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1722. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1723. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1724. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1725. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1726. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1727. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1728. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1729. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1730. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1731. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1732. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1733. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1734. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1735. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1736. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1737. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1738. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1739. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1740. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1741. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1742. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1743. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1744. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1745. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1746. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1747. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1748. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1749. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1750. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1751. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1752. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1753. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1754. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1755. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1756. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1757. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1758. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1759. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1760. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1761. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1762. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1763. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1764. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1765. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1766. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1767. 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','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5'];
  1768. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344','884c5665-a453-46f3-b7b6-01d575290aa9','c9a6de59-8b4f-4be1-8565-a08081f649d3','7f280060-665e-4868-b68f-1eec9e1b4a07','f3b243b2-75e2-4b00-8f66-7644946a2a25','16ace517-b5c7-4168-a9bb-a9e0035df840','2fe1a080-4425-4620-b7a0-be2f3750ffd4','a5efd078-20f6-4185-bef9-6d1c688bee70','23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6','ec84034b-8ea4-4d27-9cba-1adcb4720bb3'];
  1769. //清楚桌面图标
  1770. el.innerHTML = "";
  1771. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1772. _teacherDesktopIconInfo.push(
  1773. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1774. { "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)" } },
  1775. )
  1776. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1777. }
  1778. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1779. _teacherDesktopIconInfo.push(
  1780. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1781. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1782. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1783. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1784. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1785. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1786. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1787. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1788. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1789. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1790. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1791. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1792. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1793. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1794. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1795. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1796. )
  1797. }
  1798. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1799. _teacherDesktopIconInfo.push(
  1800. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1801. )
  1802. }
  1803. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1804. // _teacherDesktopIconInfo.push(
  1805. // )
  1806. // }
  1807. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1808. _teacherDesktopIconInfo.push(
  1809. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1810. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1811. )
  1812. }
  1813. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1814. _teacherDesktopIconInfo.push(
  1815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1817. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1819. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1820. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1821. )
  1822. _studentDesktopIconInfo.push(
  1823. )
  1824. }
  1825. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1826. _teacherDesktopIconInfo.push(
  1827. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1828. )
  1829. _studentDesktopIconInfo.push(
  1830. )
  1831. }
  1832. //010606 组织
  1833. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1834. _teacherDesktopIconInfo.push(
  1835. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1836. )
  1837. _studentDesktopIconInfo.push(
  1838. )
  1839. }
  1840. //麒麟二中 和 民新小学
  1841. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1842. _teacherDesktopIconInfo.push(
  1843. )
  1844. }
  1845. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1846. _teacherDesktopIconInfo.push(
  1847. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1848. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1849. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1850. )
  1851. }
  1852. //北师大附中(010601)
  1853. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1854. // _teacherDesktopIconInfo.push(
  1855. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1856. // )
  1857. // _studentDesktopIconInfo.push(
  1858. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. // )
  1860. // }
  1861. //樂善堂余近卿中學
  1862. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1863. _teacherDesktopIconInfo.push(
  1864. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1865. )
  1866. }
  1867. // Education Artificial Intelligence
  1868. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1869. _teacherDesktopIconInfo.push(
  1870. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1871. )
  1872. }
  1873. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1874. _teacherDesktopIconInfo.push(
  1875. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1876. )
  1877. }
  1878. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1879. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1880. _teacherDesktopIconInfo.push(
  1881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. )
  1884. }
  1885. //麒麟二中
  1886. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1887. _studentDesktopIconInfo.push(
  1888. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1890. )
  1891. }
  1892. //万科双语
  1893. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1894. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1895. if (el.Name == '项目管理') {
  1896. el.Name = 'PBL项目'
  1897. }
  1898. return el
  1899. })
  1900. _studentDesktopIconInfo3.push(
  1901. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1902. )
  1903. }
  1904. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1905. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1906. return el.Name != '魔盒识字' && el.Name != '24点'
  1907. })
  1908. }
  1909. 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) {
  1910. _studentDesktopIconInfo.push(
  1911. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1912. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1913. )
  1914. }
  1915. //循环创建桌面图标
  1916. if (type == 1) {
  1917. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1918. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1919. _content = $$("div", {
  1920. className: "U_MD_D_KO",
  1921. "onmousedown": U.UF.C.closure(function (obj) {
  1922. //防止拖动图标即打开了桌面应用
  1923. U.MD.D.click(this, obj);
  1924. }, [_studentDesktopIconInfo[i]]),
  1925. "onclick": U.UF.C.closure(function (obj) {
  1926. //防止拖动图标即打开了桌面应用
  1927. U.MD.D.click(this, obj);
  1928. }, [_studentDesktopIconInfo[i]])
  1929. }, _frag); //
  1930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1933. }
  1934. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1935. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1936. _content = $$("div", {
  1937. className: "U_MD_D_KO",
  1938. "onmousedown": U.UF.C.closure(function (obj) {
  1939. //防止拖动图标即打开了桌面应用
  1940. U.MD.D.click(this, obj);
  1941. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1942. "onclick": U.UF.C.closure(function (obj) {
  1943. //防止拖动图标即打开了桌面应用
  1944. U.MD.D.click(this, obj);
  1945. }, [_hkZJLSStudentDeskIconInfo[i]])
  1946. }, _frag); //
  1947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1950. } //
  1951. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1952. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1953. _content = $$("div", {
  1954. className: "U_MD_D_KO",
  1955. "onmousedown": U.UF.C.closure(function (obj) {
  1956. //防止拖动图标即打开了桌面应用
  1957. U.MD.D.click(this, obj);
  1958. }, [_ytyStudentDeskIconInfo[i]]),
  1959. "onclick": U.UF.C.closure(function (obj) {
  1960. //防止拖动图标即打开了桌面应用
  1961. U.MD.D.click(this, obj);
  1962. }, [_ytyStudentDeskIconInfo[i]])
  1963. }, _frag); //
  1964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1967. } //
  1968. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1969. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1970. _content = $$("div", {
  1971. className: "U_MD_D_KO",
  1972. "onmousedown": U.UF.C.closure(function (obj) {
  1973. //防止拖动图标即打开了桌面应用
  1974. U.MD.D.click(this, obj);
  1975. }, [_jccssylStudentDeskIconInfo[i]]),
  1976. "onclick": U.UF.C.closure(function (obj) {
  1977. //防止拖动图标即打开了桌面应用
  1978. U.MD.D.click(this, obj);
  1979. }, [_jccssylStudentDeskIconInfo[i]])
  1980. }, _frag); //
  1981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1984. }
  1985. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1986. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1987. _content = $$("div", {
  1988. className: "U_MD_D_KO",
  1989. "onmousedown": U.UF.C.closure(function (obj) {
  1990. //防止拖动图标即打开了桌面应用
  1991. U.MD.D.click(this, obj);
  1992. }, [_scnuaiStudentDeskIconInfo[i]]),
  1993. "onclick": U.UF.C.closure(function (obj) {
  1994. //防止拖动图标即打开了桌面应用
  1995. U.MD.D.click(this, obj);
  1996. }, [_scnuaiStudentDeskIconInfo[i]])
  1997. }, _frag); //
  1998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2001. }
  2002. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2003. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2004. _content = $$("div", {
  2005. className: "U_MD_D_KO",
  2006. "onmousedown": U.UF.C.closure(function (obj) {
  2007. //防止拖动图标即打开了桌面应用
  2008. U.MD.D.click(this, obj);
  2009. }, [_caleStudentDeskIconInfo[i]]),
  2010. "onclick": U.UF.C.closure(function (obj) {
  2011. //防止拖动图标即打开了桌面应用
  2012. U.MD.D.click(this, obj);
  2013. }, [_caleStudentDeskIconInfo[i]])
  2014. }, _frag); //
  2015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2018. }
  2019. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2020. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2021. _content = $$("div", {
  2022. className: "U_MD_D_KO",
  2023. "onmousedown": U.UF.C.closure(function (obj) {
  2024. //防止拖动图标即打开了桌面应用
  2025. U.MD.D.click(this, obj);
  2026. }, [_thuioeStudentDeskIconInfo[i]]),
  2027. "onclick": U.UF.C.closure(function (obj) {
  2028. //防止拖动图标即打开了桌面应用
  2029. U.MD.D.click(this, obj);
  2030. }, [_thuioeStudentDeskIconInfo[i]])
  2031. }, _frag); //
  2032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2035. }
  2036. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2037. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2038. _content = $$("div", {
  2039. className: "U_MD_D_KO",
  2040. "onmousedown": U.UF.C.closure(function (obj) {
  2041. //防止拖动图标即打开了桌面应用
  2042. U.MD.D.click(this, obj);
  2043. }, [_tpcStudentDeskIconInfo[i]]),
  2044. "onclick": U.UF.C.closure(function (obj) {
  2045. //防止拖动图标即打开了桌面应用
  2046. U.MD.D.click(this, obj);
  2047. }, [_tpcStudentDeskIconInfo[i]])
  2048. }, _frag); //
  2049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2052. } //
  2053. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2054. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2055. _content = $$("div", {
  2056. className: "U_MD_D_KO",
  2057. "onmousedown": U.UF.C.closure(function (obj) {
  2058. //防止拖动图标即打开了桌面应用
  2059. U.MD.D.click(this, obj);
  2060. }, [_chjyjStudentDeskIconInfo[i]]),
  2061. "onclick": U.UF.C.closure(function (obj) {
  2062. //防止拖动图标即打开了桌面应用
  2063. U.MD.D.click(this, obj);
  2064. }, [_chjyjStudentDeskIconInfo[i]])
  2065. }, _frag); //
  2066. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2067. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2068. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2069. }
  2070. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2071. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2072. _content = $$("div", {
  2073. className: "U_MD_D_KO",
  2074. "onmousedown": U.UF.C.closure(function (obj) {
  2075. //防止拖动图标即打开了桌面应用
  2076. U.MD.D.click(this, obj);
  2077. }, [_szjkyStudentDeskIconInfo[i]]),
  2078. "onclick": U.UF.C.closure(function (obj) {
  2079. //防止拖动图标即打开了桌面应用
  2080. U.MD.D.click(this, obj);
  2081. }, [_szjkyStudentDeskIconInfo[i]])
  2082. }, _frag); //
  2083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2086. }
  2087. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2088. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2089. _content = $$("div", {
  2090. className: "U_MD_D_KO",
  2091. "onmousedown": U.UF.C.closure(function (obj) {
  2092. //防止拖动图标即打开了桌面应用
  2093. U.MD.D.click(this, obj);
  2094. }, [_dseiStudentDeskIconInfo[i]]),
  2095. "onclick": U.UF.C.closure(function (obj) {
  2096. //防止拖动图标即打开了桌面应用
  2097. U.MD.D.click(this, obj);
  2098. }, [_dseiStudentDeskIconInfo[i]])
  2099. }, _frag); //
  2100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2103. }
  2104. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2105. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2106. _content = $$("div", {
  2107. className: "U_MD_D_KO",
  2108. "onmousedown": U.UF.C.closure(function (obj) {
  2109. //防止拖动图标即打开了桌面应用
  2110. U.MD.D.click(this, obj);
  2111. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2112. "onclick": U.UF.C.closure(function (obj) {
  2113. //防止拖动图标即打开了桌面应用
  2114. U.MD.D.click(this, obj);
  2115. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2116. }, _frag); //
  2117. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2118. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2119. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2120. }
  2121. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2122. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2123. _content = $$("div", {
  2124. className: "U_MD_D_KO",
  2125. "onmousedown": U.UF.C.closure(function (obj) {
  2126. //防止拖动图标即打开了桌面应用
  2127. U.MD.D.click(this, obj);
  2128. }, [_nsfxStudentDeskIconInfo[i]]),
  2129. "onclick": U.UF.C.closure(function (obj) {
  2130. //防止拖动图标即打开了桌面应用
  2131. U.MD.D.click(this, obj);
  2132. }, [_nsfxStudentDeskIconInfo[i]])
  2133. }, _frag); //
  2134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2137. }
  2138. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2139. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2140. _content = $$("div", {
  2141. className: "U_MD_D_KO",
  2142. "onmousedown": U.UF.C.closure(function (obj) {
  2143. //防止拖动图标即打开了桌面应用
  2144. U.MD.D.click(this, obj);
  2145. }, [_stiaStudentDeskIconInfo[i]]),
  2146. "onclick": U.UF.C.closure(function (obj) {
  2147. //防止拖动图标即打开了桌面应用
  2148. U.MD.D.click(this, obj);
  2149. }, [_stiaStudentDeskIconInfo[i]])
  2150. }, _frag); //
  2151. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2152. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2153. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2154. }
  2155. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2156. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2157. _content = $$("div", {
  2158. className: "U_MD_D_KO",
  2159. "onmousedown": U.UF.C.closure(function (obj) {
  2160. //防止拖动图标即打开了桌面应用
  2161. U.MD.D.click(this, obj);
  2162. }, [_szdjgStudentDeskIconInfo[i]]),
  2163. "onclick": U.UF.C.closure(function (obj) {
  2164. //防止拖动图标即打开了桌面应用
  2165. U.MD.D.click(this, obj);
  2166. }, [_szdjgStudentDeskIconInfo[i]])
  2167. }, _frag); //
  2168. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2169. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2170. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2171. }
  2172. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2173. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2174. _content = $$("div", {
  2175. className: "U_MD_D_KO",
  2176. "onmousedown": U.UF.C.closure(function (obj) {
  2177. //防止拖动图标即打开了桌面应用
  2178. U.MD.D.click(this, obj);
  2179. }, [_x010607StudentDeskIconInfo[i]]),
  2180. "onclick": U.UF.C.closure(function (obj) {
  2181. //防止拖动图标即打开了桌面应用
  2182. U.MD.D.click(this, obj);
  2183. }, [_x010607StudentDeskIconInfo[i]])
  2184. }, _frag); //
  2185. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2186. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2187. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2188. }
  2189. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2190. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2191. _content = $$("div", {
  2192. className: "U_MD_D_KO",
  2193. "onmousedown": U.UF.C.closure(function (obj) {
  2194. //防止拖动图标即打开了桌面应用
  2195. U.MD.D.click(this, obj);
  2196. }, [_xhlyStudentDeskIconInfo[i]]),
  2197. "onclick": U.UF.C.closure(function (obj) {
  2198. //防止拖动图标即打开了桌面应用
  2199. U.MD.D.click(this, obj);
  2200. }, [_xhlyStudentDeskIconInfo[i]])
  2201. }, _frag); //
  2202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2205. }
  2206. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2207. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2208. _content = $$("div", {
  2209. className: "U_MD_D_KO",
  2210. "onmousedown": U.UF.C.closure(function (obj) {
  2211. //防止拖动图标即打开了桌面应用
  2212. U.MD.D.click(this, obj);
  2213. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2214. "onclick": U.UF.C.closure(function (obj) {
  2215. //防止拖动图标即打开了桌面应用
  2216. U.MD.D.click(this, obj);
  2217. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2218. }, _frag); //
  2219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2222. }
  2223. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2224. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  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. }, [_x010503StudentDeskIconInfo[i]]),
  2231. "onclick": U.UF.C.closure(function (obj) {
  2232. //防止拖动图标即打开了桌面应用
  2233. U.MD.D.click(this, obj);
  2234. }, [_x010503StudentDeskIconInfo[i]])
  2235. }, _frag); //
  2236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2239. }
  2240. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2241. for (i = 0; i < _x010504StudentDeskIconInfo.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. }, [_x010504StudentDeskIconInfo[i]]),
  2248. "onclick": U.UF.C.closure(function (obj) {
  2249. //防止拖动图标即打开了桌面应用
  2250. U.MD.D.click(this, obj);
  2251. }, [_x010504StudentDeskIconInfo[i]])
  2252. }, _frag); //
  2253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2256. }
  2257. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2258. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2259. _content = $$("div", {
  2260. className: "U_MD_D_KO",
  2261. "onmousedown": U.UF.C.closure(function (obj) {
  2262. //防止拖动图标即打开了桌面应用
  2263. U.MD.D.click(this, obj);
  2264. }, [_x010204StudentDeskIconInfo[i]]),
  2265. "onclick": U.UF.C.closure(function (obj) {
  2266. //防止拖动图标即打开了桌面应用
  2267. U.MD.D.click(this, obj);
  2268. }, [_x010204StudentDeskIconInfo[i]])
  2269. }, _frag); //
  2270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2273. }
  2274. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2275. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2276. _content = $$("div", {
  2277. className: "U_MD_D_KO",
  2278. "onmousedown": U.UF.C.closure(function (obj) {
  2279. //防止拖动图标即打开了桌面应用
  2280. U.MD.D.click(this, obj);
  2281. }, [_trailStudentDeskIconInfo[i]]),
  2282. "onclick": U.UF.C.closure(function (obj) {
  2283. //防止拖动图标即打开了桌面应用
  2284. U.MD.D.click(this, obj);
  2285. }, [_trailStudentDeskIconInfo[i]])
  2286. }, _frag); //
  2287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2290. }
  2291. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2292. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2293. _content = $$("div", {
  2294. className: "U_MD_D_KO",
  2295. "onmousedown": U.UF.C.closure(function (obj) {
  2296. //防止拖动图标即打开了桌面应用
  2297. U.MD.D.click(this, obj);
  2298. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2299. "onclick": U.UF.C.closure(function (obj) {
  2300. //防止拖动图标即打开了桌面应用
  2301. U.MD.D.click(this, obj);
  2302. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2303. }, _frag); //
  2304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2307. }
  2308. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2309. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2310. _content = $$("div", {
  2311. className: "U_MD_D_KO",
  2312. "onmousedown": U.UF.C.closure(function (obj) {
  2313. //防止拖动图标即打开了桌面应用
  2314. U.MD.D.click(this, obj);
  2315. }, [_x010608StudentDeskIconInfo[i]]),
  2316. "onclick": U.UF.C.closure(function (obj) {
  2317. //防止拖动图标即打开了桌面应用
  2318. U.MD.D.click(this, obj);
  2319. }, [_x010608StudentDeskIconInfo[i]])
  2320. }, _frag); //
  2321. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2322. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2323. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2324. }
  2325. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2326. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2327. _content = $$("div", {
  2328. className: "U_MD_D_KO",
  2329. "onmousedown": U.UF.C.closure(function (obj) {
  2330. //防止拖动图标即打开了桌面应用
  2331. U.MD.D.click(this, obj);
  2332. }, [_siesStudentDeskIconInfo[i]]),
  2333. "onclick": U.UF.C.closure(function (obj) {
  2334. //防止拖动图标即打开了桌面应用
  2335. U.MD.D.click(this, obj);
  2336. }, [_siesStudentDeskIconInfo[i]])
  2337. }, _frag); //
  2338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2341. }
  2342. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2343. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2344. _content = $$("div", {
  2345. className: "U_MD_D_KO",
  2346. "onmousedown": U.UF.C.closure(function (obj) {
  2347. //防止拖动图标即打开了桌面应用
  2348. U.MD.D.click(this, obj);
  2349. }, [_guzmsStudentDeskIconInfo[i]]),
  2350. "onclick": U.UF.C.closure(function (obj) {
  2351. //防止拖动图标即打开了桌面应用
  2352. U.MD.D.click(this, obj);
  2353. }, [_guzmsStudentDeskIconInfo[i]])
  2354. }, _frag); //
  2355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2358. }
  2359. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2360. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2361. _content = $$("div", {
  2362. className: "U_MD_D_KO",
  2363. "onmousedown": U.UF.C.closure(function (obj) {
  2364. //防止拖动图标即打开了桌面应用
  2365. U.MD.D.click(this, obj);
  2366. }, [_hkStudentDeskIconInfo[i]]),
  2367. "onclick": U.UF.C.closure(function (obj) {
  2368. //防止拖动图标即打开了桌面应用
  2369. U.MD.D.click(this, obj);
  2370. }, [_hkStudentDeskIconInfo[i]])
  2371. }, _frag); //
  2372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2375. }
  2376. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2377. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2378. _content = $$("div", {
  2379. className: "U_MD_D_KO",
  2380. "onmousedown": U.UF.C.closure(function (obj) {
  2381. //防止拖动图标即打开了桌面应用
  2382. U.MD.D.click(this, obj);
  2383. }, [_hkaceStudentDeskIconInfo[i]]),
  2384. "onclick": U.UF.C.closure(function (obj) {
  2385. //防止拖动图标即打开了桌面应用
  2386. U.MD.D.click(this, obj);
  2387. }, [_hkaceStudentDeskIconInfo[i]])
  2388. }, _frag); //
  2389. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2390. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2391. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2392. }
  2393. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2394. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2395. _content = $$("div", {
  2396. className: "U_MD_D_KO",
  2397. "onmousedown": U.UF.C.closure(function (obj) {
  2398. //防止拖动图标即打开了桌面应用
  2399. U.MD.D.click(this, obj);
  2400. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2401. "onclick": U.UF.C.closure(function (obj) {
  2402. //防止拖动图标即打开了桌面应用
  2403. U.MD.D.click(this, obj);
  2404. }, [_BSDNSstudentDesktopIconInfo[i]])
  2405. }, _frag); //
  2406. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2407. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2408. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2409. }
  2410. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2411. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2412. _content = $$("div", {
  2413. className: "U_MD_D_KO",
  2414. "onmousedown": U.UF.C.closure(function (obj) {
  2415. //防止拖动图标即打开了桌面应用
  2416. U.MD.D.click(this, obj);
  2417. }, [_cocobizStudentDeskIconInfo[i]]),
  2418. "onclick": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_cocobizStudentDeskIconInfo[i]])
  2422. }, _frag); //
  2423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2426. }
  2427. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2428. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2429. _content = $$("div", {
  2430. className: "U_MD_D_KO",
  2431. "onmousedown": U.UF.C.closure(function (obj) {
  2432. //防止拖动图标即打开了桌面应用
  2433. U.MD.D.click(this, obj);
  2434. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2435. "onclick": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_xxzjkyStudentDeskIconInfo[i]])
  2439. }, _frag); //
  2440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2443. }
  2444. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2445. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2446. _content = $$("div", {
  2447. className: "U_MD_D_KO",
  2448. "onmousedown": U.UF.C.closure(function (obj) {
  2449. //防止拖动图标即打开了桌面应用
  2450. U.MD.D.click(this, obj);
  2451. }, [_studentDesktopIconInfo[i]]),
  2452. "onclick": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_studentDesktopIconInfo[i]])
  2456. }, _frag); //
  2457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2460. }
  2461. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2462. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2463. _content = $$("div", {
  2464. className: "U_MD_D_KO",
  2465. "onmousedown": U.UF.C.closure(function (obj) {
  2466. //防止拖动图标即打开了桌面应用
  2467. U.MD.D.click(this, obj);
  2468. }, [_tcStudentDeskIconInfo[i]]),
  2469. "onclick": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_tcStudentDeskIconInfo[i]])
  2473. }, _frag); //
  2474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2477. }
  2478. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2479. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2480. _content = $$("div", {
  2481. className: "U_MD_D_KO",
  2482. "onmousedown": U.UF.C.closure(function (obj) {
  2483. //防止拖动图标即打开了桌面应用
  2484. U.MD.D.click(this, obj);
  2485. }, [_szscStudentDeskIconInfo[i]]),
  2486. "onclick": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_szscStudentDeskIconInfo[i]])
  2490. }, _frag); //
  2491. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2492. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2493. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2494. }
  2495. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2496. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2497. _content = $$("div", {
  2498. className: "U_MD_D_KO",
  2499. "onmousedown": U.UF.C.closure(function (obj) {
  2500. //防止拖动图标即打开了桌面应用
  2501. U.MD.D.click(this, obj);
  2502. }, [_studentDesktopIconInfo3[i]]),
  2503. "onclick": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_studentDesktopIconInfo3[i]])
  2507. }, _frag); //
  2508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2511. }
  2512. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2513. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2514. _content = $$("div", {
  2515. className: "U_MD_D_KO",
  2516. "onmousedown": U.UF.C.closure(function (obj) {
  2517. //防止拖动图标即打开了桌面应用
  2518. U.MD.D.click(this, obj);
  2519. }, [_studentDesktopIconInfo2[i]]),
  2520. "onclick": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_studentDesktopIconInfo2[i]])
  2524. }, _frag); //
  2525. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2526. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2527. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2528. }
  2529. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2530. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2531. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2532. continue
  2533. }
  2534. _content = $$("div", {
  2535. className: "U_MD_D_KO",
  2536. "onmousedown": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_wanketeacherDesktopIconInfo[i]]),
  2540. "onclick": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_wanketeacherDesktopIconInfo[i]])
  2544. }, _frag); //
  2545. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2546. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2547. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2548. }
  2549. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2550. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2551. _content = $$("div", {
  2552. className: "U_MD_D_KO",
  2553. "onmousedown": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_wankeAdminDesktopIconInfo[i]]),
  2557. "onclick": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_wankeAdminDesktopIconInfo[i]])
  2561. }, _frag); //
  2562. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2563. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2564. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2565. }
  2566. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2567. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2568. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2569. continue
  2570. }
  2571. _content = $$("div", {
  2572. className: "U_MD_D_KO",
  2573. "onmousedown": U.UF.C.closure(function (obj) {
  2574. //防止拖动图标即打开了桌面应用
  2575. U.MD.D.click(this, obj);
  2576. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2577. "onclick": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_scnuaiTeacherDeskIconInfo[i]])
  2581. }, _frag); //
  2582. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2583. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2584. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2585. }
  2586. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2587. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2588. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2589. continue
  2590. }
  2591. _content = $$("div", {
  2592. className: "U_MD_D_KO",
  2593. "onmousedown": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2597. "onclick": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_BSDNSteacherDesktopIconInfo[i]])
  2601. }, _frag); //
  2602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2605. }
  2606. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2607. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2608. _content = $$("div", {
  2609. className: "U_MD_D_KO",
  2610. "onmousedown": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_scnuaiAdminDeskIconInfo[i]]),
  2614. "onclick": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_scnuaiAdminDeskIconInfo[i]])
  2618. }, _frag); //
  2619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2622. }
  2623. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2624. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2625. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2626. continue
  2627. }
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_jccssylTeacherDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_jccssylTeacherDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2644. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2645. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2646. continue
  2647. }
  2648. _content = $$("div", {
  2649. className: "U_MD_D_KO",
  2650. "onmousedown": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_caleTeacherDeskIconInfo[i]]),
  2654. "onclick": U.UF.C.closure(function (obj) {
  2655. //防止拖动图标即打开了桌面应用
  2656. U.MD.D.click(this, obj);
  2657. }, [_caleTeacherDeskIconInfo[i]])
  2658. }, _frag); //
  2659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2662. }
  2663. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2664. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2665. _content = $$("div", {
  2666. className: "U_MD_D_KO",
  2667. "onmousedown": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_tpcOrganizerDeskIconInfo[i]]),
  2671. "onclick": U.UF.C.closure(function (obj) {
  2672. //防止拖动图标即打开了桌面应用
  2673. U.MD.D.click(this, obj);
  2674. }, [_tpcOrganizerDeskIconInfo[i]])
  2675. }, _frag); //
  2676. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2677. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2678. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2679. }
  2680. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2681. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2682. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2683. continue
  2684. }
  2685. _content = $$("div", {
  2686. className: "U_MD_D_KO",
  2687. "onmousedown": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_tpcTeacherDeskIconInfo[i]]),
  2691. "onclick": U.UF.C.closure(function (obj) {
  2692. //防止拖动图标即打开了桌面应用
  2693. U.MD.D.click(this, obj);
  2694. }, [_tpcTeacherDeskIconInfo[i]])
  2695. }, _frag); //
  2696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2699. }
  2700. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2701. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2702. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2703. continue
  2704. }
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_teacherDesktopIconInfo2[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_teacherDesktopIconInfo2[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2719. }
  2720. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2721. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2722. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2723. continue
  2724. }
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_thuioeTeacherDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_thuioeTeacherDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2741. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2742. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2743. continue
  2744. }
  2745. _content = $$("div", {
  2746. className: "U_MD_D_KO",
  2747. "onmousedown": U.UF.C.closure(function (obj) {
  2748. //防止拖动图标即打开了桌面应用
  2749. U.MD.D.click(this, obj);
  2750. }, [_lotechTeacherDeskIconInfo[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_lotechTeacherDeskIconInfo[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2759. }//
  2760. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2761. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2762. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2763. continue
  2764. }
  2765. _content = $$("div", {
  2766. className: "U_MD_D_KO",
  2767. "onmousedown": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2771. "onclick": U.UF.C.closure(function (obj) {
  2772. //防止拖动图标即打开了桌面应用
  2773. U.MD.D.click(this, obj);
  2774. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2775. }, _frag); //
  2776. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2777. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2778. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2779. }
  2780. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2781. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2782. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2783. continue
  2784. }
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_siesTeacherDeskIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_siesTeacherDeskIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2801. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2802. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2803. continue
  2804. }
  2805. _content = $$("div", {
  2806. className: "U_MD_D_KO",
  2807. "onmousedown": U.UF.C.closure(function (obj) {
  2808. //防止拖动图标即打开了桌面应用
  2809. U.MD.D.click(this, obj);
  2810. }, [_guzmsTeacherDeskIconInfo[i]]),
  2811. "onclick": U.UF.C.closure(function (obj) {
  2812. //防止拖动图标即打开了桌面应用
  2813. U.MD.D.click(this, obj);
  2814. }, [_guzmsTeacherDeskIconInfo[i]])
  2815. }, _frag); //
  2816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2819. }
  2820. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2821. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2822. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2823. continue
  2824. }
  2825. _content = $$("div", {
  2826. className: "U_MD_D_KO",
  2827. "onmousedown": U.UF.C.closure(function (obj) {
  2828. //防止拖动图标即打开了桌面应用
  2829. U.MD.D.click(this, obj);
  2830. }, [_longhuaTeacherDeskIconInfo[i]]),
  2831. "onclick": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_longhuaTeacherDeskIconInfo[i]])
  2835. }, _frag); //
  2836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2839. }
  2840. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2841. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2842. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2843. continue
  2844. }
  2845. _content = $$("div", {
  2846. className: "U_MD_D_KO",
  2847. "onmousedown": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_ytyTeacherDeskIconInfo[i]]),
  2851. "onclick": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_ytyTeacherDeskIconInfo[i]])
  2855. }, _frag); //
  2856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2859. }
  2860. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2861. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2862. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2863. continue
  2864. }
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_yunhaiTeacherDeskIconInfo[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2879. } //_hkStudentDeskIconInfo
  2880. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2881. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2882. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2883. continue
  2884. }
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2901. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2902. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2903. continue
  2904. }
  2905. _content = $$("div", {
  2906. className: "U_MD_D_KO",
  2907. "onmousedown": U.UF.C.closure(function (obj) {
  2908. //防止拖动图标即打开了桌面应用
  2909. U.MD.D.click(this, obj);
  2910. }, [_hkTeacherDeskIconInfo[i]]),
  2911. "onclick": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_hkTeacherDeskIconInfo[i]])
  2915. }, _frag); //
  2916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2919. }
  2920. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2921. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2922. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2923. continue
  2924. }
  2925. _content = $$("div", {
  2926. className: "U_MD_D_KO",
  2927. "onmousedown": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_hkaceTeacherDeskIconInfo[i]]),
  2931. "onclick": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_hkaceTeacherDeskIconInfo[i]])
  2935. }, _frag); //
  2936. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2937. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2938. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2939. }
  2940. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2941. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2942. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2943. continue
  2944. }
  2945. _content = $$("div", {
  2946. className: "U_MD_D_KO",
  2947. "onmousedown": U.UF.C.closure(function (obj) {
  2948. //防止拖动图标即打开了桌面应用
  2949. U.MD.D.click(this, obj);
  2950. }, [_cocobizTeacherDeskIconInfo[i]]),
  2951. "onclick": U.UF.C.closure(function (obj) {
  2952. //防止拖动图标即打开了桌面应用
  2953. U.MD.D.click(this, obj);
  2954. }, [_cocobizTeacherDeskIconInfo[i]])
  2955. }, _frag); //
  2956. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2957. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2958. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2959. }
  2960. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2961. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2962. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2963. continue
  2964. }
  2965. _content = $$("div", {
  2966. className: "U_MD_D_KO",
  2967. "onmousedown": U.UF.C.closure(function (obj) {
  2968. //防止拖动图标即打开了桌面应用
  2969. U.MD.D.click(this, obj);
  2970. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2971. "onclick": U.UF.C.closure(function (obj) {
  2972. //防止拖动图标即打开了桌面应用
  2973. U.MD.D.click(this, obj);
  2974. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2975. }, _frag); //
  2976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2979. }
  2980. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2981. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2982. _content = $$("div", {
  2983. className: "U_MD_D_KO",
  2984. "onmousedown": U.UF.C.closure(function (obj) {
  2985. //防止拖动图标即打开了桌面应用
  2986. U.MD.D.click(this, obj);
  2987. }, [_gdjgAdminDeskIconInfo[i]]),
  2988. "onclick": U.UF.C.closure(function (obj) {
  2989. //防止拖动图标即打开了桌面应用
  2990. U.MD.D.click(this, obj);
  2991. }, [_gdjgAdminDeskIconInfo[i]])
  2992. }, _frag); //
  2993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2996. }
  2997. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2998. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2999. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3000. continue
  3001. }
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_gdjgTeacherDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_gdjgTeacherDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3018. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3019. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3020. continue
  3021. }
  3022. _content = $$("div", {
  3023. className: "U_MD_D_KO",
  3024. "onmousedown": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_szherTeacherDeskIconInfo[i]]),
  3028. "onclick": U.UF.C.closure(function (obj) {
  3029. //防止拖动图标即打开了桌面应用
  3030. U.MD.D.click(this, obj);
  3031. }, [_szherTeacherDeskIconInfo[i]])
  3032. }, _frag); //
  3033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3036. }
  3037. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3038. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3039. _content = $$("div", {
  3040. className: "U_MD_D_KO",
  3041. "onmousedown": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_heyuannAdminDeskIconInfo[i]]),
  3045. "onclick": U.UF.C.closure(function (obj) {
  3046. //防止拖动图标即打开了桌面应用
  3047. U.MD.D.click(this, obj);
  3048. }, [_heyuannAdminDeskIconInfo[i]])
  3049. }, _frag); //
  3050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3053. }
  3054. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3055. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3056. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3057. continue
  3058. }
  3059. _content = $$("div", {
  3060. className: "U_MD_D_KO",
  3061. "onmousedown": U.UF.C.closure(function (obj) {
  3062. //防止拖动图标即打开了桌面应用
  3063. U.MD.D.click(this, obj);
  3064. }, [_heyuanTeacherDeskIconInfo[i]]),
  3065. "onclick": U.UF.C.closure(function (obj) {
  3066. //防止拖动图标即打开了桌面应用
  3067. U.MD.D.click(this, obj);
  3068. }, [_heyuanTeacherDeskIconInfo[i]])
  3069. }, _frag); //
  3070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3073. } //
  3074. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3075. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3076. _content = $$("div", {
  3077. className: "U_MD_D_KO",
  3078. "onmousedown": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_dseiAdminDeskIconInfo[i]]),
  3082. "onclick": U.UF.C.closure(function (obj) {
  3083. //防止拖动图标即打开了桌面应用
  3084. U.MD.D.click(this, obj);
  3085. }, [_dseiAdminDeskIconInfo[i]])
  3086. }, _frag); //
  3087. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3088. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3089. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3090. }
  3091. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3092. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3093. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3094. continue
  3095. }
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_dseiTeacherDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_dseiTeacherDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3110. } //
  3111. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3112. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_chjyjAdminDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_chjyjAdminDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3127. }//
  3128. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3129. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3131. continue
  3132. }
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_chjyjTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_chjyjTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3149. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_szjkyAdminDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_szjkyAdminDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3164. }//
  3165. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3166. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3167. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3168. continue
  3169. }
  3170. _content = $$("div", {
  3171. className: "U_MD_D_KO",
  3172. "onmousedown": U.UF.C.closure(function (obj) {
  3173. //防止拖动图标即打开了桌面应用
  3174. U.MD.D.click(this, obj);
  3175. }, [_szjkyTeacherDeskIconInfo[i]]),
  3176. "onclick": U.UF.C.closure(function (obj) {
  3177. //防止拖动图标即打开了桌面应用
  3178. U.MD.D.click(this, obj);
  3179. }, [_szjkyTeacherDeskIconInfo[i]])
  3180. }, _frag); //
  3181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3184. }
  3185. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3186. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3187. _content = $$("div", {
  3188. className: "U_MD_D_KO",
  3189. "onmousedown": U.UF.C.closure(function (obj) {
  3190. //防止拖动图标即打开了桌面应用
  3191. U.MD.D.click(this, obj);
  3192. }, [_futianAdminDeskIconInfo[i]]),
  3193. "onclick": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_futianAdminDeskIconInfo[i]])
  3197. }, _frag); //
  3198. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3199. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3200. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3201. }
  3202. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3203. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3204. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3205. continue
  3206. }
  3207. _content = $$("div", {
  3208. className: "U_MD_D_KO",
  3209. "onmousedown": U.UF.C.closure(function (obj) {
  3210. //防止拖动图标即打开了桌面应用
  3211. U.MD.D.click(this, obj);
  3212. }, [_futianTeacherDeskIconInfo[i]]),
  3213. "onclick": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_futianTeacherDeskIconInfo[i]])
  3217. }, _frag); //
  3218. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3219. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3220. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3221. }
  3222. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3223. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3224. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3225. continue
  3226. }
  3227. _content = $$("div", {
  3228. className: "U_MD_D_KO",
  3229. "onmousedown": U.UF.C.closure(function (obj) {
  3230. //防止拖动图标即打开了桌面应用
  3231. U.MD.D.click(this, obj);
  3232. }, [_MingdeTeacherDeskIcon[i]]),
  3233. "onclick": U.UF.C.closure(function (obj) {
  3234. //防止拖动图标即打开了桌面应用
  3235. U.MD.D.click(this, obj);
  3236. }, [_MingdeTeacherDeskIcon[i]])
  3237. }, _frag); //
  3238. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3239. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3240. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3241. }
  3242. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3243. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3244. _content = $$("div", {
  3245. className: "U_MD_D_KO",
  3246. "onmousedown": U.UF.C.closure(function (obj) {
  3247. //防止拖动图标即打开了桌面应用
  3248. U.MD.D.click(this, obj);
  3249. }, [_lhsAdminDesktopIconInfo[i]]),
  3250. "onclick": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_lhsAdminDesktopIconInfo[i]])
  3254. }, _frag); //
  3255. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3256. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3257. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3258. }
  3259. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3260. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3261. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3262. continue
  3263. }
  3264. _content = $$("div", {
  3265. className: "U_MD_D_KO",
  3266. "onmousedown": U.UF.C.closure(function (obj) {
  3267. //防止拖动图标即打开了桌面应用
  3268. U.MD.D.click(this, obj);
  3269. }, [_lhsteacherDesktopIconInfo[i]]),
  3270. "onclick": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_lhsteacherDesktopIconInfo[i]])
  3274. }, _frag); //
  3275. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3276. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3277. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3278. }
  3279. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3280. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3281. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3282. continue
  3283. }
  3284. _content = $$("div", {
  3285. className: "U_MD_D_KO",
  3286. "onmousedown": U.UF.C.closure(function (obj) {
  3287. //防止拖动图标即打开了桌面应用
  3288. U.MD.D.click(this, obj);
  3289. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3290. "onclick": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_zhoujiateacherDesktopIconInfo[i]])
  3294. }, _frag); //
  3295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3298. }
  3299. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3300. for (i = 0; i < _hanDeskIcon.length; i++) {
  3301. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3302. continue
  3303. }
  3304. _content = $$("div", {
  3305. className: "U_MD_D_KO",
  3306. "onmousedown": U.UF.C.closure(function (obj) {
  3307. //防止拖动图标即打开了桌面应用
  3308. U.MD.D.click(this, obj);
  3309. }, [_hanDeskIcon[i]]),
  3310. "onclick": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_hanDeskIcon[i]])
  3314. }, _frag); //
  3315. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3316. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3317. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3318. }
  3319. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3320. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3321. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3322. continue
  3323. }
  3324. _content = $$("div", {
  3325. className: "U_MD_D_KO",
  3326. "onmousedown": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_orgStemDeskIcon[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_orgStemDeskIcon[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3338. }
  3339. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3340. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3341. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3342. continue
  3343. }
  3344. _content = $$("div", {
  3345. className: "U_MD_D_KO",
  3346. "onmousedown": U.UF.C.closure(function (obj) {
  3347. //防止拖动图标即打开了桌面应用
  3348. U.MD.D.click(this, obj);
  3349. }, [_szulsDeskIcon[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_szulsDeskIcon[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3358. }
  3359. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3360. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3361. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3362. continue
  3363. }
  3364. _content = $$("div", {
  3365. className: "U_MD_D_KO",
  3366. "onmousedown": U.UF.C.closure(function (obj) {
  3367. //防止拖动图标即打开了桌面应用
  3368. U.MD.D.click(this, obj);
  3369. }, [_orgDesktopIconInfo[i]]),
  3370. "onclick": U.UF.C.closure(function (obj) {
  3371. //防止拖动图标即打开了桌面应用
  3372. U.MD.D.click(this, obj);
  3373. }, [_orgDesktopIconInfo[i]])
  3374. }, _frag); //
  3375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3378. }
  3379. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3380. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3381. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3382. continue
  3383. }
  3384. _content = $$("div", {
  3385. className: "U_MD_D_KO",
  3386. "onmousedown": U.UF.C.closure(function (obj) {
  3387. //防止拖动图标即打开了桌面应用
  3388. U.MD.D.click(this, obj);
  3389. }, [_schoolDesktopIconInfo[i]]),
  3390. "onclick": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_schoolDesktopIconInfo[i]])
  3394. }, _frag); //
  3395. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3396. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3397. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3398. }
  3399. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3400. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3401. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3402. continue
  3403. }
  3404. _content = $$("div", {
  3405. className: "U_MD_D_KO",
  3406. "onmousedown": U.UF.C.closure(function (obj) {
  3407. //防止拖动图标即打开了桌面应用
  3408. U.MD.D.click(this, obj);
  3409. }, [_GMteacherDesktopIconInfo[i]]),
  3410. "onclick": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_GMteacherDesktopIconInfo[i]])
  3414. }, _frag); //
  3415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3418. }
  3419. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3420. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3421. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3422. continue
  3423. }
  3424. _content = $$("div", {
  3425. className: "U_MD_D_KO",
  3426. "onmousedown": U.UF.C.closure(function (obj) {
  3427. //防止拖动图标即打开了桌面应用
  3428. U.MD.D.click(this, obj);
  3429. }, [_SONGteacherDesktopIconInfo[i]]),
  3430. "onclick": U.UF.C.closure(function (obj) {
  3431. //防止拖动图标即打开了桌面应用
  3432. U.MD.D.click(this, obj);
  3433. }, [_SONGteacherDesktopIconInfo[i]])
  3434. }, _frag); //
  3435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3438. }
  3439. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3440. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3441. _content = $$("div", {
  3442. className: "U_MD_D_KO",
  3443. "onmousedown": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_GMstudentDesktopIconInfo[i]]),
  3447. "onclick": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_GMstudentDesktopIconInfo[i]])
  3451. }, _frag); //
  3452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3455. }
  3456. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3457. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3458. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3459. continue
  3460. }
  3461. _content = $$("div", {
  3462. className: "U_MD_D_KO",
  3463. "onmousedown": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_tcTeacherDeskIconInfo[i]]),
  3467. "onclick": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_tcTeacherDeskIconInfo[i]])
  3471. }, _frag); //
  3472. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3473. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3474. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3475. }
  3476. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3477. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3478. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3479. continue
  3480. }
  3481. _content = $$("div", {
  3482. className: "U_MD_D_KO",
  3483. "onmousedown": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_tcOrganizerDeskIconInfo[i]]),
  3487. "onclick": U.UF.C.closure(function (obj) {
  3488. //防止拖动图标即打开了桌面应用
  3489. U.MD.D.click(this, obj);
  3490. }, [_tcOrganizerDeskIconInfo[i]])
  3491. }, _frag); //
  3492. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3493. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3494. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3495. }
  3496. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3497. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3498. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3499. continue
  3500. }
  3501. _content = $$("div", {
  3502. className: "U_MD_D_KO",
  3503. "onmousedown": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_szscTeacherDeskIconInfo[i]]),
  3507. "onclick": U.UF.C.closure(function (obj) {
  3508. //防止拖动图标即打开了桌面应用
  3509. U.MD.D.click(this, obj);
  3510. }, [_szscTeacherDeskIconInfo[i]])
  3511. }, _frag); //
  3512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3515. }
  3516. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3517. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3518. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3519. continue
  3520. }
  3521. _content = $$("div", {
  3522. className: "U_MD_D_KO",
  3523. "onmousedown": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_szscOrganizerDeskIconInfo[i]]),
  3527. "onclick": U.UF.C.closure(function (obj) {
  3528. //防止拖动图标即打开了桌面应用
  3529. U.MD.D.click(this, obj);
  3530. }, [_szscOrganizerDeskIconInfo[i]])
  3531. }, _frag); //
  3532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3535. }
  3536. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3537. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3538. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3539. continue
  3540. }
  3541. _content = $$("div", {
  3542. className: "U_MD_D_KO",
  3543. "onmousedown": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_nsfxTeacherDeskIconInfo[i]]),
  3547. "onclick": U.UF.C.closure(function (obj) {
  3548. //防止拖动图标即打开了桌面应用
  3549. U.MD.D.click(this, obj);
  3550. }, [_nsfxTeacherDeskIconInfo[i]])
  3551. }, _frag); //
  3552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3555. }
  3556. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3557. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3558. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3559. continue
  3560. }
  3561. _content = $$("div", {
  3562. className: "U_MD_D_KO",
  3563. "onmousedown": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_stiaTeacherDeskIconInfo[i]]),
  3567. "onclick": U.UF.C.closure(function (obj) {
  3568. //防止拖动图标即打开了桌面应用
  3569. U.MD.D.click(this, obj);
  3570. }, [_stiaTeacherDeskIconInfo[i]])
  3571. }, _frag); //
  3572. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3573. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3574. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3575. }
  3576. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3577. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3578. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3579. continue
  3580. }
  3581. _content = $$("div", {
  3582. className: "U_MD_D_KO",
  3583. "onmousedown": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_szdjgTeacherDeskIconInfo[i]]),
  3587. "onclick": U.UF.C.closure(function (obj) {
  3588. //防止拖动图标即打开了桌面应用
  3589. U.MD.D.click(this, obj);
  3590. }, [_szdjgTeacherDeskIconInfo[i]])
  3591. }, _frag); //
  3592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3595. }
  3596. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3597. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3598. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3599. continue
  3600. }
  3601. _content = $$("div", {
  3602. className: "U_MD_D_KO",
  3603. "onmousedown": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_x010607TeacherDeskIconInfo[i]]),
  3607. "onclick": U.UF.C.closure(function (obj) {
  3608. //防止拖动图标即打开了桌面应用
  3609. U.MD.D.click(this, obj);
  3610. }, [_x010607TeacherDeskIconInfo[i]])
  3611. }, _frag); //
  3612. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3613. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3614. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3615. }
  3616. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3617. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3618. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3619. continue
  3620. }
  3621. _content = $$("div", {
  3622. className: "U_MD_D_KO",
  3623. "onmousedown": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_xhlyTeacherDeskIconInfo[i]]),
  3627. "onclick": U.UF.C.closure(function (obj) {
  3628. //防止拖动图标即打开了桌面应用
  3629. U.MD.D.click(this, obj);
  3630. }, [_xhlyTeacherDeskIconInfo[i]])
  3631. }, _frag); //
  3632. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3633. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3634. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3635. }
  3636. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3637. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3638. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3639. continue
  3640. }
  3641. _content = $$("div", {
  3642. className: "U_MD_D_KO",
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3655. }
  3656. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3657. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3658. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3659. continue
  3660. }
  3661. _content = $$("div", {
  3662. className: "U_MD_D_KO",
  3663. "onmousedown": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_x010503TeacherDeskIconInfo[i]]),
  3667. "onclick": U.UF.C.closure(function (obj) {
  3668. //防止拖动图标即打开了桌面应用
  3669. U.MD.D.click(this, obj);
  3670. }, [_x010503TeacherDeskIconInfo[i]])
  3671. }, _frag); //
  3672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3675. }
  3676. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3677. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3678. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3679. continue
  3680. }
  3681. _content = $$("div", {
  3682. className: "U_MD_D_KO",
  3683. "onmousedown": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_x010504TeacherDeskIconInfo[i]]),
  3687. "onclick": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_x010504TeacherDeskIconInfo[i]])
  3691. }, _frag); //
  3692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  3694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  3695. }
  3696. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  3697. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  3698. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3699. continue
  3700. }
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_x010204TeacherDeskIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_x010204TeacherDeskIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  3717. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  3718. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_trailTeacherDeskIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_trailTeacherDeskIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3737. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3738. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3757. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3758. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3759. continue
  3760. }
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_x010608TeacherDeskIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_x010608TeacherDeskIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3775. }
  3776. } else {
  3777. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3778. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_teacherDesktopIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_teacherDesktopIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. }
  3797. } else {
  3798. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3799. _content = $$("div", {
  3800. className: "U_MD_D_KO",
  3801. style: { 'width': '124px', 'height': '145px' },
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_easyDesktopIconInfo[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_easyDesktopIconInfo[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3814. }
  3815. }
  3816. if (type == 1) {
  3817. //加载好后给图标定位
  3818. U.MD.D.iconPostion($(_frag).Child());
  3819. } else {
  3820. //加载好后给图标定位
  3821. U.MD.D.iconPostion2($(_frag).Child());
  3822. }
  3823. //把图标加载到页面
  3824. el.appendChild(_frag);
  3825. }
  3826. /**
  3827. * 显示任务栏
  3828. *
  3829. * @param {element} 桌面元素
  3830. */
  3831. U.MD.D.I.displayTaskbar = function (el) {
  3832. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3833. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3834. //任务栏位置变化
  3835. U.selectEl(el).css({ "bottom": "0px" });
  3836. //桌面位置变话
  3837. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3838. }
  3839. }
  3840. //#region 桌面图标拖动逻辑
  3841. /**
  3842. * 桌面排列图标
  3843. *
  3844. * @param {element} 桌面元素
  3845. * @param {object} 上下相距的距离
  3846. * @param {object} 左右相距的距离
  3847. * @return {object} 命名空间
  3848. */
  3849. U.MD.D.iconPostion = function (childs, top, left) {
  3850. var i; //用于循环处理
  3851. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3852. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3853. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3854. for (i = 0; i < childs.length; i++) {
  3855. //如果竖排top超过了范围处理
  3856. if (top + 95 > US.height - 10) {
  3857. //left超过了页面范围处理,则向上重叠打印处理
  3858. if ((left + 180) > US.width) {
  3859. top -= 110;
  3860. left -= 90;
  3861. }
  3862. //没有超过范围,那么left+90添加到下一个竖排打印
  3863. else {
  3864. left += 90;
  3865. top = 15;
  3866. };
  3867. }
  3868. //给图标的位置赋值
  3869. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3870. if (i < childs.length - 1) {
  3871. //页面图标每次向下加95
  3872. top += 95;
  3873. }
  3874. }
  3875. //返回最后调用的图标的位置
  3876. return [top, left];
  3877. }
  3878. /**
  3879. * 桌面排列图标
  3880. *
  3881. * @param {element} 桌面元素
  3882. * @param {object} 上下相距的距离
  3883. * @param {object} 左右相距的距离
  3884. * @return {object} 命名空间
  3885. */
  3886. U.MD.D.iconPostion2 = function (childs, top, left) {
  3887. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3888. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3889. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3890. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3891. for (i = 0; i < childs.length; i++) {
  3892. //如果竖排top超过了范围处理
  3893. if (left + 150 > US.width - 10) {
  3894. //left超过了页面范围处理,则向上重叠打印处理
  3895. if ((top + 180) > US.Height) {
  3896. top -= 150;
  3897. left -= 150;
  3898. }
  3899. //没有超过范围,那么left+90添加到下一个竖排打印
  3900. else {
  3901. top += 150;
  3902. left = ol;
  3903. };
  3904. }
  3905. //给图标的位置赋值
  3906. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3907. if (i < childs.length - 1) {
  3908. //页面图标每次向下加95
  3909. left += 150;
  3910. }
  3911. }
  3912. //返回最后调用的图标的位置
  3913. return [top, left];
  3914. }
  3915. /**
  3916. * 桌面点击事件逻辑
  3917. *
  3918. * @param {element} 桌面元素
  3919. * @param {object} 上下相距的距离
  3920. * @param {object} 左右相距的距离
  3921. * @return {object} 命名空间
  3922. */
  3923. U.MD.D.click = function (el, obj) {
  3924. var _buttonnumber = event.button; //点击的按钮的事件值
  3925. var _userinfo = US.userInfo;
  3926. U.UF.EV.stopBubble(); //阻止向上冒泡
  3927. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3928. if (_buttonnumber < 2) {
  3929. //如果是click事件的处理
  3930. if (event.type == "click") {
  3931. //如果元素在mousemove事件中没有移动则出发click事件
  3932. if (!U.MD.D.I.IsDrag) {
  3933. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3934. U.alert("请先登录您的账号!");
  3935. setTimeout(() => {
  3936. U.MD.U.L.login();
  3937. }, 2000);
  3938. } else {
  3939. //打开应用处理
  3940. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3941. }
  3942. }
  3943. }
  3944. //如果是mouse事件的处理
  3945. else {
  3946. if (US.Config.type == '1') {
  3947. //拖动处理,添加拖动和拖动结束事件
  3948. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3949. }
  3950. }
  3951. U.MD.D.I.IsDrag = false;
  3952. }
  3953. }
  3954. /**
  3955. * 拖动的处理
  3956. *
  3957. */
  3958. U.MD.D.iconMove = function () {
  3959. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3960. U.MD.D.I.IsDrag = true;
  3961. }
  3962. /**
  3963. * 拖动结束后,这里是定位处理,以网状的形式定位
  3964. *
  3965. * @param {element} 拖动的元素
  3966. * @return {object} 命名空间
  3967. */
  3968. U.MD.D.iconUp = function (el) {
  3969. var _top = 15,
  3970. _left = 20,
  3971. _margin,
  3972. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3973. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3974. if (_positioninfo["OT"] > 15) {
  3975. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3976. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3977. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3978. }
  3979. if (_positioninfo["OL"] > 20) {
  3980. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3981. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3982. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3983. }
  3984. //while循环判断么一个重叠的元素
  3985. do {
  3986. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3987. _top = _positioninfo[0] + 95; //得到定位后的top
  3988. _left = _positioninfo[1]; //得到定位后的left
  3989. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3990. }
  3991. /**
  3992. * 判断拖动后图标是否重叠
  3993. *
  3994. * @param {element} 拖动的元素
  3995. * @param {element} 桌面所有的元素
  3996. * @param {array} 拖动元素的位置
  3997. ----------[0] 上 top
  3998. ----------[1] 左 left
  3999. * @return {object} 命名空间
  4000. */
  4001. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4002. //循环所有的图标
  4003. for (var i = 0; i < childs.length; i++) {
  4004. //判断有没有和该图标诶子重叠的元素
  4005. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4006. return childs[i]; //如果有返回
  4007. }
  4008. }
  4009. }
  4010. //#endregion
  4011. //#endregion
  4012. //#region 桌面应用
  4013. /**
  4014. * 打开应用
  4015. *
  4016. * @param {string} 类型
  4017. -----------------Disk 网盘系统
  4018. -----------------PDisk 学习系统网盘
  4019. -----------------Poto 图片
  4020. -----------------Video 视频
  4021. -----------------Music 音乐
  4022. -----------------Word word
  4023. -----------------Excel excel
  4024. -----------------Txt 记事本
  4025. -----------------PB 学习系统
  4026. -----------------Blog 朋友圈系统
  4027. -----------------FTP ftp系统
  4028. -----------------Group 好友群
  4029. -----------------SY 首页系统
  4030. -----------------Set 个人设置
  4031. -----------------XSet 系统设置
  4032. -----------------App 我们所有的app
  4033. -----------------BC c.1473.cn 平台
  4034. -----------------CWeb d.1473.cn 变成平台
  4035. -----------------其他的外联系统 我们统一用iframe打开
  4036. * @param {array} 类型
  4037. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4038. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4039. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4040. 如果第一个参数为其他,则无第二个参数
  4041. * @returns {array}
  4042. */
  4043. window.addEventListener('message', function (e) { // 监听 message 事件
  4044. // alert(e.data.type);
  4045. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4046. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4047. //3是展示全部阶段 2学生 1老师 4专家
  4048. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4049. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4050. //3是展示全部阶段 2学生 1老师 4专家
  4051. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4052. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4053. //3是展示全部阶段 2学生 1老师 4专家
  4054. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4055. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4056. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4057. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4058. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4059. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4060. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4061. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4062. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4063. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4064. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4065. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4066. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4067. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4068. //3是展示全部阶段 2学生 1老师 4专家
  4069. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4070. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4071. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4072. U.MD.D.I.selectUser();
  4073. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4074. var _formel = document.getElementById("study");
  4075. U.UF.F.windowZooming(_formel);
  4076. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4077. var _formel = document.getElementById("studyDetail");
  4078. U.UF.F.windowZooming(_formel);
  4079. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4080. var _formel = document.getElementById("studyDetail");
  4081. U.UF.F.windowZooming(_formel);
  4082. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4083. var _formel = document.getElementById("studentStudy");
  4084. U.UF.F.windowZooming(_formel);
  4085. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4086. // var _formel = document.getElementById("study");
  4087. //如果最大化了,那么就把他缩小
  4088. // if (_formel.ismaximize) {
  4089. // return;
  4090. // }
  4091. // U.UF.F.windowZooming(_formel);
  4092. // U.UF.F.topWindow(_formel);
  4093. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4094. // var _formel = document.getElementById("studyDetail");
  4095. //如果最大化了,那么就把他缩小
  4096. // if (_formel.ismaximize) {
  4097. // return;
  4098. // }
  4099. // U.UF.F.windowZooming(_formel);
  4100. // U.UF.F.topWindow(_formel);
  4101. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4102. // var _formel = document.getElementById("studentStudy");
  4103. // if (_formel.ismaximize) {
  4104. // return;
  4105. // }
  4106. // U.UF.F.windowZooming(_formel);
  4107. // U.UF.F.topWindow(_formel);
  4108. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4109. var _formel = document.getElementById("study");
  4110. // if (_formel.ismaximize) {
  4111. // return;
  4112. // }
  4113. // U.UF.F.windowZooming(_formel);
  4114. U.UF.F.topWindow(_formel);
  4115. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4116. var _formel = document.getElementById("studentIndex");
  4117. U.UF.F.windowZooming(_formel);
  4118. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4119. var _formel = document.getElementById("studyDetailS");
  4120. U.UF.F.windowZooming(_formel);
  4121. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4122. var _formel = document.getElementById("studioIndex");
  4123. U.UF.F.windowZooming(_formel);
  4124. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4125. var _formel = document.getElementById("studyDetailStudio");
  4126. U.UF.F.windowZooming(_formel);
  4127. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4128. var _formel = document.getElementById("studyDetailStudio");
  4129. U.UF.F.windowZooming(_formel);
  4130. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4131. var _formel = document.getElementById("studyDetailNT");
  4132. U.UF.F.windowZooming(_formel);
  4133. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4134. var _formel = document.getElementById("studyDetailS");
  4135. U.UF.F.windowZooming(_formel);
  4136. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4137. var _formel = document.getElementById("studyDetailS");
  4138. U.UF.F.topWindow(_formel);
  4139. } else if (e.data.tools && e.data.tools == "1") {
  4140. // U.MD.D.I.openApplication("whiteboard")
  4141. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4142. } else if (e.data.tools && e.data.tools == "2") {
  4143. U.MD.D.I.openApplication("note")
  4144. } else if (e.data.tools && e.data.tools == "3") {
  4145. // U.MD.D.I.openApplication("mind")
  4146. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4147. } else if (e.data.tools && e.data.tools == "4") {
  4148. U.MD.D.I.openApplication("investigation")
  4149. } else if (e.data.tools && e.data.tools == "6") {
  4150. // U.MD.D.I.openApplication("doc")
  4151. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4152. } else if (e.data.tools && e.data.tools == "7") {
  4153. // U.MD.D.I.openApplication("mindNetwork")
  4154. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4155. } else if (e.data.tools && e.data.tools == "8") {
  4156. U.MD.D.I.openApplication("library")
  4157. } else if (e.data.tools && e.data.tools == "17") {
  4158. U.MD.D.I.openApplication("stuLibrary")
  4159. } else if (e.data.tools && e.data.tools == "18") {
  4160. U.MD.D.I.openApplication("train")
  4161. } else if (e.data.tools && e.data.tools == "21") {
  4162. U.MD.D.I.openApplication("program")
  4163. } else if (e.data.tools && e.data.tools == "22") {
  4164. U.MD.D.I.openApplication("AIprogram2")
  4165. } else if (e.data.tools && e.data.tools == "23") {
  4166. U.MD.D.I.openApplication("Pythonprogram")
  4167. } else if (e.data.tools && e.data.tools == "24") {
  4168. U.MD.D.I.openApplication("AIprogram")
  4169. } else if (e.data.tools && e.data.tools == "25") {
  4170. U.MD.D.I.openApplication("sys")
  4171. } else if (e.data.tools && e.data.tools == "26") {
  4172. // U.MD.D.I.openApplication("courseDesign")
  4173. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4174. } else if (e.data.tools && e.data.tools == "31") {
  4175. U.MD.D.I.openApplication("netWorkPanel")
  4176. } else if (e.data.tools && e.data.tools == "32") {
  4177. U.MD.D.I.openApplication("codeEdit")
  4178. } else if (e.data.tools && e.data.tools == "57") {
  4179. U.MD.D.I.openApplication("CocoPi")
  4180. } else if (e.data.tools && e.data.tools == "63") {
  4181. U.MD.D.I.openApplication("Wood")
  4182. } else if (e.data.tools && e.data.tools == "58") {
  4183. U.MD.D.I.openApplication("car")
  4184. } else if (e.data.tools && e.data.tools == "59") {
  4185. U.MD.D.I.openApplication("lineSearch")
  4186. } else if (e.data.tools && e.data.tools == "60") {
  4187. U.MD.D.I.openApplication("deepLearning")
  4188. } else if (e.data.tools && e.data.tools == "61") {
  4189. U.MD.D.I.openApplication("allHistory")
  4190. } else if (e.data.tools && e.data.tools == "28") {
  4191. U.MD.D.I.openApplication("translation")
  4192. } else if (e.data.tools && e.data.tools == "37") {
  4193. U.MD.D.I.openApplication("mohe")
  4194. } else if (e.data.tools && e.data.tools == "38") {
  4195. U.MD.D.I.openApplication("24game")
  4196. } else if (e.data.tools && e.data.tools == "39") {
  4197. U.MD.D.I.openApplication("GeoGebra")
  4198. } else if (e.data.tools && e.data.tools == "43") {
  4199. U.MD.D.I.openApplication("studentEvaluate")
  4200. } else if (e.data.tools && e.data.tools == "44") {
  4201. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4202. } else if (e.data.tools && e.data.tools == "46") {
  4203. U.MD.D.I.openApplication("project")
  4204. } else if (e.data.tools && e.data.tools == "71") {
  4205. U.MD.D.I.openApplication("aigptCourse")
  4206. } else if (e.data.tools && e.data.tools == "1s") {
  4207. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4208. } else if (e.data.tools && e.data.tools == "3s") {
  4209. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4210. } else if (e.data.tools && e.data.tools == "6s") {
  4211. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4212. } else if (e.data.tools && e.data.tools == "1studio") {
  4213. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4214. } else if (e.data.tools && e.data.tools == "3studio") {
  4215. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4216. } else if (e.data.tools && e.data.tools == "6studio") {
  4217. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4218. } else if (e.data.tools && e.data.tools == "3y") {
  4219. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4220. } else if (e.data.tools && e.data.tools == "1y") {
  4221. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4222. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4223. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4224. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4225. U.MD.D.I.openApplication("AIAnalyse")
  4226. } else if (e.data.tools && e.data.tools == "1teacher") {
  4227. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4228. } else if (e.data.tools && e.data.tools == "3teacher") {
  4229. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4230. } else if (e.data.tools && e.data.tools == "7teacher") {
  4231. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4232. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4233. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4234. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4235. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4236. } else if (e.data.tools && e.data.tools == "1E") {
  4237. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4238. } else if (e.data.tools && e.data.tools == "3E") {
  4239. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4240. } else if (e.data.tools && e.data.tools == "57y") {
  4241. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4242. } else if (e.data.tools && e.data.tools == "57u") {
  4243. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4244. } else if (e.data.tools && e.data.tools == "57teacher") {
  4245. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4246. } else if (e.data.tools && e.data.tools == "64") {
  4247. U.MD.D.I.openApplication("AIChat")
  4248. } else if (e.data.tools && e.data.tools == "66") {
  4249. U.MD.D.I.openApplication("formulaEdi")
  4250. } else if (e.data.tools && e.data.tools == "67") {
  4251. U.MD.D.I.openApplication("molStr")
  4252. } else if (e.data.tools && e.data.tools == "68") {
  4253. U.MD.D.I.openApplication("timeAxis")
  4254. } else if (e.data.tools && e.data.tools == "openCourse") {
  4255. let _data = {
  4256. typea: e.data.typea || '',
  4257. typeb: e.data.typeb || '',
  4258. typed: e.data.typed || '',
  4259. }
  4260. U.MD.D.I.openInApplication("index", _data)
  4261. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4262. let _data = {
  4263. classid: e.data.classid || '',
  4264. }
  4265. U.MD.D.I.openInApplication("dataClass", _data)
  4266. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4267. let _data = {
  4268. cid: e.data.cid || '',
  4269. gid: e.data.gid || '',
  4270. }
  4271. U.MD.D.I.openInApplication("opencCscl", _data)
  4272. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4273. U.MD.D.I.openApplication("dataBoardTest")
  4274. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4275. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4276. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4277. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4278. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4279. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4280. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4281. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4282. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4283. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4284. }else if (e.data.tools && e.data.tools == "loginSz") {
  4285. U.MD.D.I.openInApplication("loginSz")
  4286. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4287. if($('#classroom_observation_board')[0]){
  4288. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4289. }
  4290. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4291. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4292. if($('#classroom_observation_ob_comment')[0]){
  4293. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4294. }
  4295. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4296. }
  4297. });
  4298. U.MD.D.I.selectUser = function () {
  4299. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4300. if (res.value[0].length > 0) {
  4301. US.userInfo = res.value[0][0];
  4302. $(".userName")[0].innerHTML = US.userInfo.username;
  4303. }
  4304. }, [], { "type": "GET", "withCredentials": true });
  4305. }
  4306. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4307. var _userinfo = US.userInfo, //登录用户信息
  4308. _userid = US.userInfo.userid, //登录用户id
  4309. _oid = _userinfo.organizeid,
  4310. _type = US.userInfo.type,
  4311. _org = US.userInfo.org,
  4312. _role = US.userInfo.role,
  4313. _classId = US.userInfo.classid;
  4314. if (_type == 4) {
  4315. tType = 4
  4316. }
  4317. switch (str) {
  4318. case "studyDetailNT": //无终端模式
  4319. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4320. setTimeout(() => {
  4321. U.MD.U.L.login();
  4322. }, 2000);
  4323. } else {
  4324. _formdiv = new U.UF.UI.form(
  4325. "课程详情",
  4326. $$("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 }), {
  4327. "id": "studyDetailNT",
  4328. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4329. "onresize": function () { }
  4330. }, {
  4331. closecallback: function () { }
  4332. }, { "style": { "height": "36px" } }).form; //创建窗体
  4333. _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); } }
  4334. break;
  4335. }
  4336. case "studyDetail":
  4337. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4338. setTimeout(() => {
  4339. U.MD.U.L.login();
  4340. }, 2000);
  4341. } else {
  4342. _formdiv = new U.UF.UI.form(
  4343. "课程详情",
  4344. $$("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 }), {
  4345. "id": "studyDetail",
  4346. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4347. "onresize": function () { }
  4348. }, {
  4349. closecallback: function () { }
  4350. }, { "style": { "height": "36px" } }).form; //创建窗体
  4351. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4352. break;
  4353. }
  4354. case "studyDetailTrain":
  4355. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4356. setTimeout(() => {
  4357. U.MD.U.L.login();
  4358. }, 2000);
  4359. } else {
  4360. _formdiv = new U.UF.UI.form(
  4361. "培训详情",
  4362. $$("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 }), {
  4363. "id": "studyDetailTrain",
  4364. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4365. "onresize": function () { }
  4366. }, {
  4367. closecallback: function () { }
  4368. }, { "style": { "height": "36px" } }).form; //创建窗体
  4369. _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); } }
  4370. break;
  4371. }
  4372. case "studyDetailS":
  4373. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4374. setTimeout(() => {
  4375. U.MD.U.L.login();
  4376. }, 2000);
  4377. } else {
  4378. _formdiv = new U.UF.UI.form(
  4379. "项目详情",
  4380. $$("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 }), {
  4381. "id": "studyDetailS",
  4382. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4383. "onresize": function () { }
  4384. }, {
  4385. closecallback: function () { }
  4386. }, { "style": { "height": "36px" } }).form; //创建窗体
  4387. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4388. break;
  4389. }
  4390. case "studyDetailStudio":
  4391. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4392. setTimeout(() => {
  4393. U.MD.U.L.login();
  4394. }, 2000);
  4395. } else {
  4396. _formdiv = new U.UF.UI.form(
  4397. "工作详情",
  4398. $$("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 }), {
  4399. "id": "studyDetailStudio",
  4400. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4401. "onresize": function () { }
  4402. }, {
  4403. closecallback: function () { }
  4404. }, { "style": { "height": "36px" } }).form; //创建窗体
  4405. _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); } }
  4406. break;
  4407. }
  4408. case "studyDetailS5":
  4409. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4410. setTimeout(() => {
  4411. U.MD.U.L.login();
  4412. }, 2000);
  4413. } else {
  4414. _formdiv = new U.UF.UI.form(
  4415. "项目详情",
  4416. $$("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 }), {
  4417. "id": "studyDetailS",
  4418. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4419. "onresize": function () { }
  4420. }, {
  4421. closecallback: function () { }
  4422. }, { "style": { "height": "36px" } }).form; //创建窗体
  4423. _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); } }
  4424. break;
  4425. }
  4426. case "studyDetailGM":
  4427. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4428. setTimeout(() => {
  4429. U.MD.U.L.login();
  4430. }, 2000);
  4431. } else {
  4432. _formdiv = new U.UF.UI.form(
  4433. "课程详情",
  4434. $$("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 }), {
  4435. "id": "studyDetail",
  4436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4437. "onresize": function () { }
  4438. }, {
  4439. closecallback: function () { }
  4440. }, { "style": { "height": "36px" } }).form; //创建窗体
  4441. _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); } }
  4442. break;
  4443. }
  4444. case "hanUrl":
  4445. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4446. setTimeout(() => {
  4447. U.MD.U.L.login();
  4448. }, 2000);
  4449. } else {
  4450. _formdiv = new U.UF.UI.form(
  4451. "汉字宫",
  4452. $$("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" }), {
  4453. "id": "hanUrl",
  4454. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4455. "onresize": function () { }
  4456. }, {
  4457. closecallback: function () { }
  4458. }, { "style": { "height": "36px" } }).form; //创建窗体
  4459. _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); } }
  4460. break;
  4461. }
  4462. case "index":
  4463. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4464. setTimeout(() => {
  4465. U.MD.U.L.login();
  4466. }, 2000);
  4467. } else {
  4468. _formdiv = new U.UF.UI.form(
  4469. "课程中心",
  4470. $$("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 }), {
  4471. "id": "study",
  4472. "style": { "width": "100%", "height": "100%", "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/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4478. break;
  4479. }
  4480. case "dataClass":
  4481. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4482. setTimeout(() => {
  4483. U.MD.U.L.login();
  4484. }, 2000);
  4485. } else {
  4486. _formdiv = new U.UF.UI.form(
  4487. "数据报告",
  4488. $$("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 }), {
  4489. "id": "dataClass",
  4490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4491. "onresize": function () { }
  4492. }, {
  4493. closecallback: function () { }
  4494. }, { "style": { "height": "36px" } }).form; //创建窗体
  4495. _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); } }
  4496. break;
  4497. }
  4498. case "opencCscl":
  4499. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4500. setTimeout(() => {
  4501. U.MD.U.L.login();
  4502. }, 2000);
  4503. } else {
  4504. _formdiv = new U.UF.UI.form(
  4505. "协同建构",
  4506. $$("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 }), {
  4507. "id": "futureClass",
  4508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4509. "onresize": function () { }
  4510. }, {
  4511. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4512. }, { "style": { "height": "36px" } }).form; //创建窗体
  4513. _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); } }
  4514. break;
  4515. }
  4516. case "openCourseUpdate":
  4517. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4518. setTimeout(() => {
  4519. U.MD.U.L.login();
  4520. }, 2000);
  4521. } else {
  4522. _formdiv = new U.UF.UI.form(
  4523. "课程管理",
  4524. $$("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 }), {
  4525. "id": "openCourseUpdate",
  4526. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4527. "onresize": function () { }
  4528. }, {
  4529. closecallback: function () { }
  4530. }, { "style": { "height": "36px" } }).form; //创建窗体
  4531. break;
  4532. }
  4533. case "openNewCourseUpdate":
  4534. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4535. setTimeout(() => {
  4536. U.MD.U.L.login();
  4537. }, 2000);
  4538. } else {
  4539. _formdiv = new U.UF.UI.form(
  4540. "课程管理",
  4541. $$("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 }), {
  4542. "id": "openCourseUpdate",
  4543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4544. "onresize": function () { }
  4545. }, {
  4546. closecallback: function () { }
  4547. }, { "style": { "height": "36px" } }).form; //创建窗体
  4548. break;
  4549. }
  4550. case "openCourseEUpdate":
  4551. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4552. setTimeout(() => {
  4553. U.MD.U.L.login();
  4554. }, 2000);
  4555. } else {
  4556. _formdiv = new U.UF.UI.form(
  4557. "课程管理",
  4558. $$("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 }), {
  4559. "id": "openCourseUpdate",
  4560. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4561. "onresize": function () { }
  4562. }, {
  4563. closecallback: function () { }
  4564. }, { "style": { "height": "36px" } }).form; //创建窗体
  4565. break;
  4566. }
  4567. case "openCourseAiUpdate":
  4568. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4569. setTimeout(() => {
  4570. U.MD.U.L.login();
  4571. }, 2000);
  4572. } else {
  4573. _formdiv = new U.UF.UI.form(
  4574. "课程管理",
  4575. $$("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 }), {
  4576. "id": "openCourseUpdate",
  4577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4578. "onresize": function () { }
  4579. }, {
  4580. closecallback: function () { }
  4581. }, { "style": { "height": "36px" } }).form; //创建窗体
  4582. break;
  4583. }
  4584. case "openCourseNewUpdate":
  4585. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4586. setTimeout(() => {
  4587. U.MD.U.L.login();
  4588. }, 2000);
  4589. } else {
  4590. _formdiv = new U.UF.UI.form(
  4591. "课程管理",
  4592. $$("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 }), {
  4593. "id": "openCourseUpdate",
  4594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4595. "onresize": function () { }
  4596. }, {
  4597. closecallback: function () { }
  4598. }, { "style": { "height": "36px" } }).form; //创建窗体
  4599. break;
  4600. }
  4601. case "inviteLoginSz":
  4602. _formdiv = new U.UF.UI.form(
  4603. "随机码登录",
  4604. $$("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 }), {
  4605. "id": "loginSz",
  4606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4607. "onresize": function () { }
  4608. }, {
  4609. closecallback: function () { }
  4610. }, { "style": { "height": "36px" } }).form; //创建窗体
  4611. break;
  4612. case "loginSz":
  4613. _formdiv = new U.UF.UI.form(
  4614. "教师登录",
  4615. $$("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" }), {
  4616. "id": "loginSz",
  4617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4618. "onresize": function () { }
  4619. }, {
  4620. closecallback: function () { }
  4621. }, { "style": { "height": "36px" } }).form; //创建窗体
  4622. break;
  4623. case "teacher":
  4624. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4625. setTimeout(() => {
  4626. U.MD.U.L.login();
  4627. }, 2000);
  4628. } else {
  4629. _formdiv = new U.UF.UI.form(
  4630. "教师管理",
  4631. $$("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 }), {
  4632. "id": "teacher",
  4633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4634. "onresize": function () { }
  4635. }, {
  4636. closecallback: function () { }
  4637. }, { "style": { "height": "36px" } }).form; //创建窗体
  4638. break;
  4639. }
  4640. case "dataBoardSZArea":
  4641. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4642. setTimeout(() => {
  4643. U.MD.U.L.login();
  4644. }, 2000);
  4645. } else {
  4646. _formdiv = new U.UF.UI.form(
  4647. "综合数据看板",
  4648. $$("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 }), {
  4649. "id": "dataBoardSZArea",
  4650. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4651. "onresize": function () { }
  4652. }, {
  4653. closecallback: function () { }
  4654. }, { "style": { "height": "36px" } }).form; //创建窗体
  4655. break;
  4656. }
  4657. case "dataBoardSZCity":
  4658. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4659. setTimeout(() => {
  4660. U.MD.U.L.login();
  4661. }, 2000);
  4662. } else {
  4663. _formdiv = new U.UF.UI.form(
  4664. "综合数据看板",
  4665. $$("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 }), {
  4666. "id": "dataBoardSZCity",
  4667. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4668. "onresize": function () { }
  4669. }, {
  4670. closecallback: function () { }
  4671. }, { "style": { "height": "36px" } }).form; //创建窗体
  4672. break;
  4673. }
  4674. case "classroom_observation_board":
  4675. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4676. setTimeout(() => {
  4677. U.MD.U.L.login();
  4678. }, 2000);
  4679. } else {
  4680. _formdiv = new U.UF.UI.form(
  4681. "课堂观察",
  4682. $$("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 }), {
  4683. "id": "classroom_observation_board",
  4684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4685. "onresize": function () { }
  4686. }, {
  4687. closecallback: function () { }
  4688. }, { "style": { "height": "36px" } }).form; //创建窗体
  4689. break;
  4690. }
  4691. case "classroom_observation_ob_comment":
  4692. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. _formdiv = new U.UF.UI.form(
  4698. "课堂审核",
  4699. $$("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 }), {
  4700. "id": "classroom_observation_ob_comment",
  4701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4702. "onresize": function () { }
  4703. }, {
  4704. closecallback: function () { }
  4705. }, { "style": { "height": "36px" } }).form; //创建窗体
  4706. break;
  4707. }
  4708. }
  4709. }
  4710. U.MD.D.I.openApplication = function (str, obj, info) {
  4711. obj = obj || {};
  4712. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4713. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4714. _userinfo = US.userInfo, //登录用户信息
  4715. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4716. _oid = obj.organizeid || _userinfo.organizeid,
  4717. _type = US.userInfo.type,
  4718. _org = US.userInfo.org,
  4719. _role = US.userInfo.role,
  4720. _classId = US.userInfo.classid,
  4721. _TscreenType = 1
  4722. _screenType = 2,
  4723. _SscreenType = 3;
  4724. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4725. return;
  4726. }
  4727. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4728. switch (str) {
  4729. case "studnetProject": //好友打开
  4730. _formdiv = new U.UF.UI.form(
  4731. "我的项目",
  4732. $$("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 }), {
  4733. "id": "studnetProject",
  4734. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4735. "onresize": function () { }
  4736. }, {
  4737. closecallback: function () { }
  4738. }, { "style": { "height": "36px" } }).form; //创建窗体
  4739. _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); } }
  4740. break;
  4741. case "studentEvaluate": //好友打开
  4742. _formdiv = new U.UF.UI.form(
  4743. "我的评价",
  4744. $$("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 }), {
  4745. "id": "studentEvaluate",
  4746. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4752. break;
  4753. case "my":
  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/#/data?userid=" + _userid + "&org=" + _org }), {
  4757. "id": "my",
  4758. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4764. break;
  4765. case "program":
  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": "https://x.cocorobo.cn" }), {
  4769. "id": "program",
  4770. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4776. break;
  4777. case "library":
  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/#/library?userid=" + _userid + "&org=" + _org }), {
  4781. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4788. break;
  4789. case "whiteboard":
  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://beta.iwb.cocorobo.cn/" }), {
  4793. "id": "whiteboard",
  4794. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4800. break;
  4801. case "investigation":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  4805. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4812. break;
  4813. case "note":
  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/#/note?userid=" + _userid + "&org=" + _org }), {
  4817. "id": "note",
  4818. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4824. break;
  4825. // case "score":
  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": US.Config.bpbl + "" }), {
  4829. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  4836. // break;
  4837. case "mind":
  4838. _formdiv = new U.UF.UI.form(
  4839. "思维导图",
  4840. $$("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"
  4841. "id": "mind",
  4842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4843. "onresize": function () { }
  4844. }, {
  4845. closecallback: function () { }
  4846. }, { "style": { "height": "36px" } }).form; //创建窗体
  4847. _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); } }
  4848. break;
  4849. case "doc":
  4850. // U.MD.D.I.isRoom();
  4851. _formdiv = new U.UF.UI.form(
  4852. "协同文档",
  4853. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4854. "id": "doc",
  4855. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4856. "onresize": function () { }
  4857. }, {
  4858. closecallback: function () { }
  4859. }, { "style": { "height": "36px" } }).form; //创建窗体
  4860. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4861. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4862. // })
  4863. _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); } }
  4864. break;
  4865. case "studentStudy":
  4866. _formdiv = new U.UF.UI.form(
  4867. "课程中心",
  4868. $$("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
  4869. "id": "studentStudy",
  4870. "style": { "width": "100%", "height": "100%", "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/study.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 "mindNetwork": //好友打开
  4890. _formdiv = new U.UF.UI.form(
  4891. "思维网格",
  4892. $$("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 }), {
  4893. "id": "mindNetwork",
  4894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4895. "onresize": function () { }
  4896. }, {
  4897. closecallback: function () { }
  4898. }, { "style": { "height": "36px" } }).form; //创建窗体
  4899. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4900. break;
  4901. case "studentClassRoom": //好友打开
  4902. _formdiv = new U.UF.UI.form(
  4903. "实时课堂",
  4904. $$("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 }), {
  4905. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4912. setTimeout(() => {
  4913. U.UF.F.windowZooming(_formdiv)
  4914. }, 0);
  4915. break;
  4916. }
  4917. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4918. switch (str) {
  4919. case "studnetProject": //好友打开
  4920. _formdiv = new U.UF.UI.form(
  4921. "我的项目",
  4922. $$("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 }), {
  4923. "id": "studnetProject",
  4924. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4925. "onresize": function () { }
  4926. }, {
  4927. closecallback: function () { }
  4928. }, { "style": { "height": "36px" } }).form; //创建窗体
  4929. _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); } }
  4930. break;
  4931. case "studentEvaluate": //好友打开
  4932. _formdiv = new U.UF.UI.form(
  4933. "我的评价",
  4934. $$("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 }), {
  4935. "id": "studentEvaluate",
  4936. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4937. "onresize": function () { }
  4938. }, {
  4939. closecallback: function () { }
  4940. }, { "style": { "height": "36px" } }).form; //创建窗体
  4941. _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); } }
  4942. break;
  4943. case "my":
  4944. _formdiv = new U.UF.UI.form(
  4945. "我的资料",
  4946. $$("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 }), {
  4947. "id": "my",
  4948. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4949. "onresize": function () { }
  4950. }, {
  4951. closecallback: function () { }
  4952. }, { "style": { "height": "36px" } }).form; //创建窗体
  4953. _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); } }
  4954. break;
  4955. case "program":
  4956. _formdiv = new U.UF.UI.form(
  4957. "编程平台",
  4958. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4959. "id": "program",
  4960. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4961. "onresize": function () { }
  4962. }, {
  4963. closecallback: function () { }
  4964. }, { "style": { "height": "36px" } }).form; //创建窗体
  4965. _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); } }
  4966. break;
  4967. case "library":
  4968. _formdiv = new U.UF.UI.form(
  4969. "素材库",
  4970. $$("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 }), {
  4971. "id": "library",
  4972. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4973. "onresize": function () { }
  4974. }, {
  4975. closecallback: function () { }
  4976. }, { "style": { "height": "36px" } }).form; //创建窗体
  4977. _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); } }
  4978. break;
  4979. case "whiteboard":
  4980. _formdiv = new U.UF.UI.form(
  4981. "电子白板",
  4982. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4983. "id": "whiteboard",
  4984. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4985. "onresize": function () { }
  4986. }, {
  4987. closecallback: function () { }
  4988. }, { "style": { "height": "36px" } }).form; //创建窗体
  4989. _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); } }
  4990. break;
  4991. case "investigation":
  4992. _formdiv = new U.UF.UI.form(
  4993. "问卷调查",
  4994. $$("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 }), {
  4995. "id": "investigation",
  4996. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4997. "onresize": function () { }
  4998. }, {
  4999. closecallback: function () { }
  5000. }, { "style": { "height": "36px" } }).form; //创建窗体
  5001. _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); } }
  5002. break;
  5003. case "note":
  5004. _formdiv = new U.UF.UI.form(
  5005. "便签分类",
  5006. $$("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 }), {
  5007. "id": "note",
  5008. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. _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); } }
  5014. break;
  5015. // case "score":
  5016. // _formdiv = new U.UF.UI.form(
  5017. // "量规评分",
  5018. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5019. // "id": "score",
  5020. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5021. // "onresize": function() {}
  5022. // }, {
  5023. // closecallback: function() {}
  5024. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5025. // _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); } }
  5026. // break;
  5027. case "mind":
  5028. _formdiv = new U.UF.UI.form(
  5029. "思维导图",
  5030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5031. "id": "mind",
  5032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5033. "onresize": function () { }
  5034. }, {
  5035. closecallback: function () { }
  5036. }, { "style": { "height": "36px" } }).form; //创建窗体
  5037. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5038. break;
  5039. case "doc":
  5040. // U.MD.D.I.isRoom();
  5041. _formdiv = new U.UF.UI.form(
  5042. "协同文档",
  5043. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5044. "id": "doc",
  5045. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5046. "onresize": function () { }
  5047. }, {
  5048. closecallback: function () { }
  5049. }, { "style": { "height": "36px" } }).form; //创建窗体
  5050. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5051. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5052. })
  5053. _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); } }
  5054. break;
  5055. case "train": //好友打开
  5056. _formdiv = new U.UF.UI.form(
  5057. "训练平台",
  5058. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5059. "id": "train",
  5060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5061. "onresize": function () { }
  5062. }, {
  5063. closecallback: function () { }
  5064. }, { "style": { "height": "36px" } }).form; //创建窗体
  5065. _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); } }
  5066. break;
  5067. case "studentStudy":
  5068. _formdiv = new U.UF.UI.form(
  5069. "课程中心",
  5070. $$("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
  5071. "id": "studentStudy",
  5072. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5073. "onresize": function () { }
  5074. }, {
  5075. closecallback: function () { }
  5076. }, { "style": { "height": "36px" } }).form; //创建窗体
  5077. _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); } }
  5078. break;
  5079. case "mindNetwork": //好友打开
  5080. _formdiv = new U.UF.UI.form(
  5081. "思维网格",
  5082. $$("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 }), {
  5083. "id": "mindNetwork",
  5084. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5085. "onresize": function () { }
  5086. }, {
  5087. closecallback: function () { }
  5088. }, { "style": { "height": "36px" } }).form; //创建窗体
  5089. _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); } }
  5090. break;
  5091. case "studentClassRoom": //好友打开
  5092. _formdiv = new U.UF.UI.form(
  5093. "实时课堂",
  5094. $$("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 }), {
  5095. "id": "studentClassRoom",
  5096. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5097. "onresize": function () { }
  5098. }, {
  5099. closecallback: function () { }
  5100. }, { "style": { "height": "36px" } }).form; //创建窗体
  5101. _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); } }
  5102. setTimeout(() => {
  5103. U.UF.F.windowZooming(_formdiv)
  5104. }, 0);
  5105. break;
  5106. }
  5107. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5108. //选择应用处理
  5109. switch (str) {
  5110. case "project": //好友打开
  5111. _formdiv = new U.UF.UI.form(
  5112. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5113. $$("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 }), {
  5114. "id": "project",
  5115. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5116. "onresize": function () { }
  5117. }, {
  5118. closecallback: function () { }
  5119. }, { "style": { "height": "36px" } }).form; //创建窗体
  5120. _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); } }
  5121. break;
  5122. case "student":
  5123. _formdiv = new U.UF.UI.form(
  5124. "学生管理",
  5125. $$("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 }), {
  5126. "id": "student",
  5127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5128. "onresize": function () { }
  5129. }, {
  5130. closecallback: function () { }
  5131. }, { "style": { "height": "36px" } }).form; //创建窗体
  5132. _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); } }
  5133. break;
  5134. case "evaluate":
  5135. _formdiv = new U.UF.UI.form(
  5136. "学生评价",
  5137. $$("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 }), {
  5138. "id": "evaluate",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. case "sys":
  5147. _formdiv = new U.UF.UI.form(
  5148. "目标管理",
  5149. $$("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 }), {
  5150. "id": "sys",
  5151. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5152. "onresize": function () { }
  5153. }, {
  5154. closecallback: function () { }
  5155. }, { "style": { "height": "36px" } }).form; //创建窗体
  5156. _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); } }
  5157. break;
  5158. case "courseDesign":
  5159. _formdiv = new U.UF.UI.form(
  5160. "项目设计",
  5161. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5162. "id": "courseDesign",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. _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); } }
  5169. break;
  5170. case "program":
  5171. _formdiv = new U.UF.UI.form(
  5172. "编程平台",
  5173. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5174. "id": "program",
  5175. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. case "class":
  5183. _formdiv = new U.UF.UI.form(
  5184. "班级管理",
  5185. $$("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 }), {
  5186. "id": "class",
  5187. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5188. "onresize": function () { }
  5189. }, {
  5190. closecallback: function () { }
  5191. }, { "style": { "height": "36px" } }).form; //创建窗体
  5192. _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); } }
  5193. break;
  5194. case "Grade":
  5195. _formdiv = new U.UF.UI.form(
  5196. "年级管理",
  5197. $$("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 }), {
  5198. "id": "Grade",
  5199. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5200. "onresize": function () { }
  5201. }, {
  5202. closecallback: function () { }
  5203. }, { "style": { "height": "36px" } }).form; //创建窗体
  5204. _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); } }
  5205. break;
  5206. case "teacherOffice":
  5207. _formdiv = new U.UF.UI.form(
  5208. "教研室",
  5209. $$("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 }), {
  5210. "id": "teacherOffice",
  5211. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. case "my":
  5219. _formdiv = new U.UF.UI.form(
  5220. "我的资料",
  5221. $$("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 }), {
  5222. "id": "my",
  5223. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5224. "onresize": function () { }
  5225. }, {
  5226. closecallback: function () { }
  5227. }, { "style": { "height": "36px" } }).form; //创建窗体
  5228. _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); } }
  5229. break;
  5230. case "notice":
  5231. _formdiv = new U.UF.UI.form(
  5232. "通知公告",
  5233. $$("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 }), {
  5234. "id": "notice",
  5235. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5236. "onresize": function () { }
  5237. }, {
  5238. closecallback: function () { }
  5239. }, { "style": { "height": "36px" } }).form; //创建窗体
  5240. _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); } }
  5241. break;
  5242. case "library":
  5243. _formdiv = new U.UF.UI.form(
  5244. "素材库",
  5245. $$("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 }), {
  5246. "id": "library",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. case "whiteboard":
  5255. _formdiv = new U.UF.UI.form(
  5256. "电子白板",
  5257. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5258. "id": "whiteboard",
  5259. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5260. "onresize": function () { }
  5261. }, {
  5262. closecallback: function () { }
  5263. }, { "style": { "height": "36px" } }).form; //创建窗体
  5264. _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); } }
  5265. break;
  5266. case "investigation":
  5267. _formdiv = new U.UF.UI.form(
  5268. "问卷调查",
  5269. $$("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 }), {
  5270. "id": "investigation",
  5271. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5272. "onresize": function () { }
  5273. }, {
  5274. closecallback: function () { }
  5275. }, { "style": { "height": "36px" } }).form; //创建窗体
  5276. _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); } }
  5277. break;
  5278. case "note":
  5279. _formdiv = new U.UF.UI.form(
  5280. "便签分类",
  5281. $$("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 }), {
  5282. "id": "note",
  5283. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. // case "score":
  5291. // _formdiv = new U.UF.UI.form(
  5292. // "量规评分",
  5293. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5294. // "id": "score",
  5295. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5296. // "onresize": function() {}
  5297. // }, {
  5298. // closecallback: function() {}
  5299. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5300. // _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); } }
  5301. // break;
  5302. case "mind":
  5303. _formdiv = new U.UF.UI.form(
  5304. "思维导图",
  5305. $$("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"
  5306. "id": "mind",
  5307. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _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); } }
  5313. break;
  5314. case "doc":
  5315. // U.MD.D.I.isRoom();
  5316. _formdiv = new U.UF.UI.form(
  5317. "协同文档",
  5318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5319. "id": "doc",
  5320. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5326. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5327. })
  5328. _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); } }
  5329. break;
  5330. case "study":
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程中心",
  5333. $$("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
  5334. "id": "study",
  5335. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. _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); } }
  5341. break;
  5342. case "mindNetwork": //好友打开
  5343. _formdiv = new U.UF.UI.form(
  5344. "思维网格",
  5345. $$("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 }), {
  5346. "id": "mindNetwork",
  5347. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5348. "onresize": function () { }
  5349. }, {
  5350. closecallback: function () { }
  5351. }, { "style": { "height": "36px" } }).form; //创建窗体
  5352. _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); } }
  5353. break;
  5354. case "train": //好友打开
  5355. _formdiv = new U.UF.UI.form(
  5356. "训练平台",
  5357. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5358. "id": "mindNetwork",
  5359. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5360. "onresize": function () { }
  5361. }, {
  5362. closecallback: function () { }
  5363. }, { "style": { "height": "36px" } }).form; //创建窗体
  5364. _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); } }
  5365. break;
  5366. case "teacherClassRoom": //好友打开
  5367. _formdiv = new U.UF.UI.form(
  5368. "实时课堂",
  5369. $$("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 }), {
  5370. "id": "teacherClassRoom",
  5371. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5372. "onresize": function () { }
  5373. }, {
  5374. closecallback: function () { }
  5375. }, { "style": { "height": "36px" } }).form; //创建窗体
  5376. _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); } }
  5377. setTimeout(() => {
  5378. U.UF.F.windowZooming(_formdiv)
  5379. }, 0);
  5380. break;
  5381. }
  5382. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5383. switch (str) {
  5384. case "project": //好友打开
  5385. _formdiv = new U.UF.UI.form(
  5386. "课程管理",
  5387. $$("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 }), {
  5388. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5395. break;
  5396. case "evaluate":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5400. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5407. break;
  5408. case "notice":
  5409. _formdiv = new U.UF.UI.form(
  5410. "通知公告",
  5411. $$("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 }), {
  5412. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5419. break;
  5420. case "stuLibrary":
  5421. _formdiv = new U.UF.UI.form(
  5422. "学习资料",
  5423. $$("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 }), {
  5424. "id": "stuLibrary",
  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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5431. break;
  5432. case "program":
  5433. _formdiv = new U.UF.UI.form(
  5434. "编程平台",
  5435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5436. "id": "program",
  5437. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5443. break;
  5444. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  5448. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5455. break;
  5456. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  5460. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5467. break;
  5468. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5472. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5479. break;
  5480. case "doc":
  5481. // U.MD.D.I.isRoom();
  5482. _formdiv = new U.UF.UI.form(
  5483. "协同文档",
  5484. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5485. "id": "doc",
  5486. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5487. "onresize": function () { }
  5488. }, {
  5489. closecallback: function () { }
  5490. }, { "style": { "height": "36px" } }).form; //创建窗体
  5491. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5492. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5493. })
  5494. _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); } }
  5495. break;
  5496. case "study":
  5497. _formdiv = new U.UF.UI.form(
  5498. "课程中心",
  5499. $$("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
  5500. "id": "study",
  5501. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5502. "onresize": function () { }
  5503. }, {
  5504. closecallback: function () { }
  5505. }, { "style": { "height": "36px" } }).form; //创建窗体
  5506. _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); } }
  5507. break;
  5508. case "mindNetwork": //好友打开
  5509. _formdiv = new U.UF.UI.form(
  5510. "思维网格",
  5511. $$("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 }), {
  5512. "id": "mindNetwork",
  5513. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5514. "onresize": function () { }
  5515. }, {
  5516. closecallback: function () { }
  5517. }, { "style": { "height": "36px" } }).form; //创建窗体
  5518. _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); } }
  5519. break;
  5520. case "train": //好友打开
  5521. _formdiv = new U.UF.UI.form(
  5522. "训练平台",
  5523. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5524. "id": "train",
  5525. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5526. "onresize": function () { }
  5527. }, {
  5528. closecallback: function () { }
  5529. }, { "style": { "height": "36px" } }).form; //创建窗体
  5530. _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); } }
  5531. break;
  5532. case "sys":
  5533. _formdiv = new U.UF.UI.form(
  5534. "目标管理",
  5535. $$("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 }), {
  5536. "id": "sys",
  5537. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5538. "onresize": function () { }
  5539. }, {
  5540. closecallback: function () { }
  5541. }, { "style": { "height": "36px" } }).form; //创建窗体
  5542. _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); } }
  5543. break;
  5544. case "courseDesign":
  5545. _formdiv = new U.UF.UI.form(
  5546. "项目设计",
  5547. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5548. "id": "courseDesign",
  5549. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5550. "onresize": function () { }
  5551. }, {
  5552. closecallback: function () { }
  5553. }, { "style": { "height": "36px" } }).form; //创建窗体
  5554. _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); } }
  5555. break;
  5556. }
  5557. } else if (!_type) {
  5558. switch (str) {
  5559. case "my":
  5560. _formdiv = new U.UF.UI.form(
  5561. "我的资料",
  5562. $$("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 }), {
  5563. "id": "my",
  5564. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5565. "onresize": function () { }
  5566. }, {
  5567. closecallback: function () { }
  5568. }, { "style": { "height": "36px" } }).form; //创建窗体
  5569. _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); } }
  5570. break;
  5571. }
  5572. }
  5573. switch (str) {
  5574. // AIprogram2 AI体验 aihub.cocorobo.cn
  5575. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5576. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5577. case "formulaEdi": //公式编辑
  5578. _formdiv = new U.UF.UI.form(
  5579. "公式编辑",
  5580. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5581. "id": "formulaEdi",
  5582. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "molStr": //分子结构
  5590. _formdiv = new U.UF.UI.form(
  5591. "分子结构",
  5592. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5593. "id": "molStr",
  5594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "timeAxis": //时间轴
  5602. _formdiv = new U.UF.UI.form(
  5603. "时间轴",
  5604. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5605. "id": "timeAxis",
  5606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5612. break;
  5613. case "AIprogram2": //AI体验
  5614. _formdiv = new U.UF.UI.form(
  5615. "AI体验",
  5616. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5617. "id": "AIprogram2",
  5618. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5624. break;
  5625. case "Pythonprogram": //python编程
  5626. _formdiv = new U.UF.UI.form(
  5627. "Python编程",
  5628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5629. "id": "Pythonprogram",
  5630. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5636. break;
  5637. case "AIprogram": //ai编程
  5638. _formdiv = new U.UF.UI.form(
  5639. "AI编程平台",
  5640. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5641. "id": "AIprogram",
  5642. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5648. break;
  5649. case "CocoPi": //CocoPi
  5650. _formdiv = new U.UF.UI.form(
  5651. "CocoPi",
  5652. $$("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" }), {
  5653. "id": "CocoPi",
  5654. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5655. "onresize": function () { }
  5656. }, {
  5657. closecallback: function () { }
  5658. }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5660. break;
  5661. case "Wood": //Wood
  5662. _formdiv = new U.UF.UI.form(
  5663. "海龟编程",
  5664. $$("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/" }), {
  5665. "id": "Wood",
  5666. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5672. break;
  5673. case "car": //模拟驾驶
  5674. _formdiv = new U.UF.UI.form(
  5675. "模拟驾驶",
  5676. $$("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/" }), {
  5677. "id": "car",
  5678. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5684. break;
  5685. case "lineSearch": //路径搜索
  5686. _formdiv = new U.UF.UI.form(
  5687. "路径搜索",
  5688. $$("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/" }), {
  5689. "id": "lineSearch",
  5690. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5691. "onresize": function () { }
  5692. }, {
  5693. closecallback: function () { }
  5694. }, { "style": { "height": "36px" } }).form; //创建窗体
  5695. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5696. break;
  5697. case "deepLearning": //深度学习
  5698. _formdiv = new U.UF.UI.form(
  5699. "深度学习",
  5700. $$("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/#" }), {
  5701. "id": "deepLearning",
  5702. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5708. break;
  5709. case "allHistory": //深度学习
  5710. _formdiv = new U.UF.UI.form(
  5711. "全历史",
  5712. $$("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/" }), {
  5713. "id": "allHistory",
  5714. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5715. "onresize": function () { }
  5716. }, {
  5717. closecallback: function () { }
  5718. }, { "style": { "height": "36px" } }).form; //创建窗体
  5719. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5720. break;
  5721. case "chatPDF": //ai编程
  5722. _formdiv = new U.UF.UI.form(
  5723. "chatPDF",
  5724. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5725. "id": "chatPDF",
  5726. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5727. "onresize": function () { }
  5728. }, {
  5729. closecallback: function () { }
  5730. }, { "style": { "height": "36px" } }).form; //创建窗体
  5731. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5732. break;
  5733. case "resources": //国家教育
  5734. _formdiv = new U.UF.UI.form(
  5735. "国家教育",
  5736. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5737. "id": "resources",
  5738. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5739. "onresize": function () { }
  5740. }, {
  5741. closecallback: function () { }
  5742. }, { "style": { "height": "36px" } }).form; //创建窗体
  5743. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5744. break;
  5745. case "codeEdit": //源码编辑
  5746. _formdiv = new U.UF.UI.form(
  5747. "源码编辑",
  5748. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5749. "id": "codeEdit",
  5750. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5751. "onresize": function () { }
  5752. }, {
  5753. closecallback: function () { }
  5754. }, { "style": { "height": "36px" } }).form; //创建窗体
  5755. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5756. break; //
  5757. case "MindMap": //MindMap
  5758. _formdiv = new U.UF.UI.form(
  5759. "MindMap",
  5760. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5761. "id": "MindMap",
  5762. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5768. break;
  5769. case "netWorkPanel": //netWorkPanel
  5770. _formdiv = new U.UF.UI.form(
  5771. "netWorkPanel",
  5772. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5773. "id": "netWorkPanel",
  5774. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. _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); } }
  5780. break;
  5781. case "GeoGebra": //GeoGebra
  5782. _formdiv = new U.UF.UI.form(
  5783. "GeoGebra",
  5784. $$("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" }), {
  5785. "id": "GeoGebra",
  5786. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. _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); } }
  5792. break;
  5793. case "translation": //翻译
  5794. _formdiv = new U.UF.UI.form(
  5795. "翻译",
  5796. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5797. "id": "translation",
  5798. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5799. "onresize": function () { }
  5800. }, {
  5801. closecallback: function () { }
  5802. }, { "style": { "height": "36px" } }).form; //创建窗体
  5803. _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); } }
  5804. break;
  5805. case "mohe": //魔盒
  5806. _formdiv = new U.UF.UI.form(
  5807. "魔盒识字",
  5808. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5809. "id": "mohe",
  5810. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5811. "onresize": function () { }
  5812. }, {
  5813. closecallback: function () { }
  5814. }, { "style": { "height": "36px" } }).form; //创建窗体
  5815. _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); } }
  5816. break;
  5817. case "24game": //24点
  5818. _formdiv = new U.UF.UI.form(
  5819. "24点",
  5820. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5821. "id": "24game",
  5822. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. case "case":
  5830. _formdiv = new U.UF.UI.form(
  5831. "课程进展",
  5832. $$("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 }), {
  5833. "id": "case",
  5834. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5835. "onresize": function () { }
  5836. }, {
  5837. closecallback: function () { }
  5838. }, { "style": { "height": "36px" } }).form; //创建窗体
  5839. _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); } }
  5840. break;
  5841. case "snf":
  5842. _formdiv = new U.UF.UI.form(
  5843. "赛诺梵",
  5844. $$("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" }), {
  5845. "id": "snf",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. _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); } }
  5852. break;
  5853. case "hanFamily":
  5854. _formdiv = new U.UF.UI.form(
  5855. "汉字家族",
  5856. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5857. "id": "hanFamily",
  5858. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5859. "onresize": function () { }
  5860. }, {
  5861. closecallback: function () { }
  5862. }, { "style": { "height": "36px" } }).form; //创建窗体
  5863. _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); } }
  5864. break;
  5865. case "hanClassics":
  5866. _formdiv = new U.UF.UI.form(
  5867. "国学经典",
  5868. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5869. "id": "hanClassics",
  5870. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5871. "onresize": function () { }
  5872. }, {
  5873. closecallback: function () { }
  5874. }, { "style": { "height": "36px" } }).form; //创建窗体
  5875. _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); } }
  5876. break;
  5877. case "hanTraining":
  5878. _formdiv = new U.UF.UI.form(
  5879. "笔画训练",
  5880. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5881. "id": "hanTraining",
  5882. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5883. "onresize": function () { }
  5884. }, {
  5885. closecallback: function () { }
  5886. }, { "style": { "height": "36px" } }).form; //创建窗体
  5887. _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); } }
  5888. break;
  5889. case "hanClass":
  5890. _formdiv = new U.UF.UI.form(
  5891. "书法课堂",
  5892. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5893. "id": "hanClass",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. _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); } }
  5900. break;
  5901. case "han":
  5902. _formdiv = new U.UF.UI.form(
  5903. "汉字宫",
  5904. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5905. "id": "han",
  5906. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5907. "onresize": function () { }
  5908. }, {
  5909. closecallback: function () { }
  5910. }, { "style": { "height": "36px" } }).form; //创建窗体
  5911. _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); } }
  5912. break;
  5913. case "projectGM": //课程管理
  5914. _formdiv = new U.UF.UI.form(
  5915. "课程管理",
  5916. $$("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 }), {
  5917. "id": "projectGM",
  5918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5919. "onresize": function () { }
  5920. }, {
  5921. closecallback: function () { }
  5922. }, { "style": { "height": "36px" } }).form; //创建窗体
  5923. _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); } }
  5924. break;
  5925. case "studyGM": //课程中心
  5926. _formdiv = new U.UF.UI.form(
  5927. "课程中心",
  5928. $$("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
  5929. "id": "study",
  5930. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5931. "onresize": function () { }
  5932. }, {
  5933. closecallback: function () { }
  5934. }, { "style": { "height": "36px" } }).form; //创建窗体
  5935. _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); } }
  5936. break;
  5937. // studentGM
  5938. case "studentGM": //学生管理
  5939. _formdiv = new U.UF.UI.form(
  5940. "学生管理",
  5941. $$("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 }), {
  5942. "id": "studentGM",
  5943. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5944. "onresize": function () { }
  5945. }, {
  5946. closecallback: function () { }
  5947. }, { "style": { "height": "36px" } }).form; //创建窗体
  5948. _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); } }
  5949. break;
  5950. case "evaluateGM": //学生评价
  5951. _formdiv = new U.UF.UI.form(
  5952. "学生评价",
  5953. $$("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 }), {
  5954. "id": "evaluateGM",
  5955. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5956. "onresize": function () { }
  5957. }, {
  5958. closecallback: function () { }
  5959. }, { "style": { "height": "36px" } }).form; //创建窗体
  5960. _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); } }
  5961. break;
  5962. // classGM
  5963. case "classGM": //班级管理
  5964. _formdiv = new U.UF.UI.form(
  5965. "班级管理",
  5966. $$("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 }), {
  5967. "id": "classGM",
  5968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5969. "onresize": function () { }
  5970. }, {
  5971. closecallback: function () { }
  5972. }, { "style": { "height": "36px" } }).form; //创建窗体
  5973. _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); } }
  5974. break;
  5975. // dataGM
  5976. case "dataGM":
  5977. _formdiv = new U.UF.UI.form(
  5978. "我的资料",
  5979. $$("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 }), {
  5980. "id": "dataGM",
  5981. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _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); } }
  5987. break;
  5988. // caseGM
  5989. case "caseGM": //课程进展
  5990. _formdiv = new U.UF.UI.form(
  5991. "课程进展",
  5992. $$("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 }), {
  5993. "id": "caseGM",
  5994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. // meterialGM
  6002. case "meterialGM": //素材库
  6003. _formdiv = new U.UF.UI.form(
  6004. "素材库",
  6005. $$("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 }), {
  6006. "id": "meterialGM",
  6007. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6008. "onresize": function () { }
  6009. }, {
  6010. closecallback: function () { }
  6011. }, { "style": { "height": "36px" } }).form; //创建窗体
  6012. _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); } }
  6013. break;
  6014. // evaluateSGM
  6015. case "evaluateSGM": //我的评价
  6016. _formdiv = new U.UF.UI.form(
  6017. "我的评价",
  6018. $$("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 }), {
  6019. "id": "evaluateSGM",
  6020. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6021. "onresize": function () { }
  6022. }, {
  6023. closecallback: function () { }
  6024. }, { "style": { "height": "36px" } }).form; //创建窗体
  6025. _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); } }
  6026. break;
  6027. case "jupyter": //jupyter
  6028. _formdiv = new U.UF.UI.form(
  6029. "jupyter",
  6030. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6031. "id": "jupyter",
  6032. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6033. "onresize": function () { }
  6034. }, {
  6035. closecallback: function () { }
  6036. }, { "style": { "height": "36px" } }).form; //创建窗体
  6037. _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); } }
  6038. break;
  6039. case "number": //数字实验室
  6040. _formdiv = new U.UF.UI.form(
  6041. "数字实验室",
  6042. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6043. "id": "number",
  6044. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6045. "onresize": function () { }
  6046. }, {
  6047. closecallback: function () { }
  6048. }, { "style": { "height": "36px" } }).form; //创建窗体
  6049. _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); } }
  6050. break;
  6051. case "studentCourse": //项目管理 学生
  6052. _formdiv = new U.UF.UI.form(
  6053. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6054. $$("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 }), {
  6055. "id": "studentCourse",
  6056. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6057. "onresize": function () { }
  6058. }, {
  6059. closecallback: function () { }
  6060. }, { "style": { "height": "36px" } }).form; //创建窗体
  6061. _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); } }
  6062. break;
  6063. case "studentCourseS": //项目管理 老师
  6064. _formdiv = new U.UF.UI.form(
  6065. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6066. $$("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 }), {
  6067. "id": "studentCourseS",
  6068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6069. "onresize": function () { }
  6070. }, {
  6071. closecallback: function () { }
  6072. }, { "style": { "height": "36px" } }).form; //创建窗体
  6073. _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); } }
  6074. break;
  6075. case "studentIndex": //项目中心
  6076. _formdiv = new U.UF.UI.form(
  6077. "项目中心",
  6078. $$("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 }), {
  6079. "id": "studentIndex",
  6080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6081. "onresize": function () { }
  6082. }, {
  6083. closecallback: function () { }
  6084. }, { "style": { "height": "36px" } }).form; //创建窗体
  6085. _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); } }
  6086. break;
  6087. case "CaseDesignS":
  6088. _formdiv = new U.UF.UI.form(
  6089. "项目进展",
  6090. $$("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 }), {
  6091. "id": "case",
  6092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. _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); } }
  6098. break;
  6099. case "tcStudent": //腾讯学生管理
  6100. _formdiv = new U.UF.UI.form(
  6101. "学生管理",
  6102. $$("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 }), {
  6103. "id": "tcStudent",
  6104. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6105. "onresize": function () { }
  6106. }, {
  6107. closecallback: function () { }
  6108. }, { "style": { "height": "36px" } }).form; //创建窗体
  6109. _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); } }
  6110. break;
  6111. case "tcSchool": //腾讯学校管理
  6112. _formdiv = new U.UF.UI.form(
  6113. "学校管理",
  6114. $$("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 }), {
  6115. "id": "tcSchool",
  6116. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6117. "onresize": function () { }
  6118. }, {
  6119. closecallback: function () { }
  6120. }, { "style": { "height": "36px" } }).form; //创建窗体
  6121. _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); } }
  6122. break;
  6123. case "tcTeacher": //腾讯学校管理
  6124. _formdiv = new U.UF.UI.form(
  6125. "教师管理",
  6126. $$("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 }), {
  6127. "id": "tcTeacher",
  6128. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6129. "onresize": function () { }
  6130. }, {
  6131. closecallback: function () { }
  6132. }, { "style": { "height": "36px" } }).form; //创建窗体
  6133. _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); } }
  6134. break;
  6135. case "tcData": //腾讯我的资料
  6136. _formdiv = new U.UF.UI.form(
  6137. "我的资料",
  6138. $$("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 }), {
  6139. "id": "tcData",
  6140. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6141. "onresize": function () { }
  6142. }, {
  6143. closecallback: function () { }
  6144. }, { "style": { "height": "36px" } }).form; //创建窗体
  6145. _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); } }
  6146. break;
  6147. case "tcNotice": //腾讯消息通知
  6148. _formdiv = new U.UF.UI.form(
  6149. "消息通知",
  6150. $$("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 }), {
  6151. "id": "tcNotice",
  6152. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6153. "onresize": function () { }
  6154. }, {
  6155. closecallback: function () { }
  6156. }, { "style": { "height": "36px" } }).form; //创建窗体
  6157. _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); } }
  6158. break;
  6159. case "myReport": //好友打开
  6160. _formdiv = new U.UF.UI.form(
  6161. "我的评价",
  6162. $$("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 }), {
  6163. "id": "myReport",
  6164. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6165. "onresize": function () { }
  6166. }, {
  6167. closecallback: function () { }
  6168. }, { "style": { "height": "36px" } }).form; //创建窗体
  6169. _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); } }
  6170. break;
  6171. case "learnAna": //好友打开
  6172. _formdiv = new U.UF.UI.form(
  6173. "学习分析",
  6174. $$("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 }), {
  6175. "id": "learnAna",
  6176. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6177. "onresize": function () { }
  6178. }, {
  6179. closecallback: function () { }
  6180. }, { "style": { "height": "36px" } }).form; //创建窗体
  6181. _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); } }
  6182. break;
  6183. case "AIChat": //AI共创
  6184. _formdiv = new U.UF.UI.form(
  6185. "AI共创",
  6186. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6187. "id": "AIChat",
  6188. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6189. "onresize": function () { }
  6190. }, {
  6191. istop: true,
  6192. closecallback: function () { $("#aichat_icon").remove(); },
  6193. narrowcallback: function () {
  6194. if (!$("#aichat_icon")[0]) {
  6195. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6196. }
  6197. },
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _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); } }
  6200. break;
  6201. case "ainew": //AI共创
  6202. _formdiv = new U.UF.UI.form(
  6203. "AI协同",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6205. "id": "ainew",
  6206. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _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); } }
  6212. break;
  6213. case "gpt4": //gpt4
  6214. _formdiv = new U.UF.UI.form(
  6215. "AI助手",
  6216. $$("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 }), {
  6217. "id": "gpt4",
  6218. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _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); } }
  6224. break;
  6225. case "aigpt": //gpt4
  6226. _formdiv = new U.UF.UI.form(
  6227. "AI助手+",
  6228. $$("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 }), {
  6229. "id": "aigpt",
  6230. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () {
  6234. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6235. }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6239. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6240. })
  6241. break;
  6242. case "aiKnowledge": //aiKnowledge
  6243. _formdiv = new U.UF.UI.form(
  6244. "知识建构",
  6245. $$("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 }), {
  6246. "id": "aiKnowledge",
  6247. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6248. "onresize": function () { }
  6249. }, {
  6250. closecallback: function () { }
  6251. }, { "style": { "height": "36px" } }).form; //创建窗体
  6252. _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); } }
  6253. break;
  6254. case "futureClass": //AI共创
  6255. _formdiv = new U.UF.UI.form(
  6256. "协同建构",
  6257. $$("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
  6258. "id": "synergyCourse",
  6259. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6260. "onresize": function () { }
  6261. }, {
  6262. closecallback: function () {
  6263. $("iframe", _formdiv)[0].contentWindow.loginout();
  6264. }
  6265. }, { "style": { "height": "36px" } }).form; //创建窗体
  6266. _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); } }
  6267. break;
  6268. case "aiagent": //ai agent
  6269. _formdiv = new U.UF.UI.form(
  6270. "AI Agent",
  6271. $$("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" }), {
  6272. "id": "AIAgent",
  6273. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6274. "onresize": function () { }
  6275. }, {
  6276. closecallback: function () { }
  6277. }, { "style": { "height": "36px" } }).form; //创建窗体
  6278. _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); } }
  6279. break;
  6280. case "dataBoard": //数据看板
  6281. _formdiv = new U.UF.UI.form(
  6282. "数据看板",
  6283. $$("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 }), {
  6284. "id": "dataBoard",
  6285. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6286. "onresize": function () { }
  6287. }, {
  6288. closecallback: function () { }
  6289. }, { "style": { "height": "36px" } }).form; //创建窗体
  6290. _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); } }
  6291. break;
  6292. case "dataBoardSies": //数据融合
  6293. _formdiv = new U.UF.UI.form(
  6294. "数据融合",
  6295. $$("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 }), {
  6296. "id": "dataBoardSies",
  6297. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6298. "onresize": function () { }
  6299. }, {
  6300. closecallback: function () { }
  6301. }, { "style": { "height": "36px" } }).form; //创建窗体
  6302. _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); } }
  6303. break;
  6304. case "dataBoardNew": //数据看板
  6305. _formdiv = new U.UF.UI.form(
  6306. "综合看板",
  6307. $$("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 }), {
  6308. "id": "dataBoardNew",
  6309. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6310. "onresize": function () { }
  6311. }, {
  6312. closecallback: function () { }
  6313. }, { "style": { "height": "36px" } }).form; //创建窗体
  6314. _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); } }
  6315. break;
  6316. case "dataBoardTest": //数据看板
  6317. _formdiv = new U.UF.UI.form(
  6318. "评测看板",
  6319. $$("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 }), {
  6320. "id": "dataBoardTest",
  6321. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6322. "onresize": function () { }
  6323. }, {
  6324. closecallback: function () { }
  6325. }, { "style": { "height": "36px" } }).form; //创建窗体
  6326. _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); } }
  6327. break;
  6328. case "AIAnalyse": //AI共创
  6329. _formdiv = new U.UF.UI.form(
  6330. "AI分析",
  6331. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6332. "id": "AIAnalyse",
  6333. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6334. "onresize": function () { }
  6335. }, {
  6336. closecallback: function () { }
  6337. }, { "style": { "height": "36px" } }).form; //创建窗体
  6338. _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); } }
  6339. break;
  6340. case "studioCourse": //AI共创
  6341. _formdiv = new U.UF.UI.form(
  6342. "工作管理",
  6343. $$("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 }), {
  6344. "id": "studioCourse",
  6345. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6346. "onresize": function () { }
  6347. }, {
  6348. closecallback: function () { }
  6349. }, { "style": { "height": "36px" } }).form; //创建窗体
  6350. _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); } }
  6351. break;
  6352. case "studioIndex": //AI共创
  6353. _formdiv = new U.UF.UI.form(
  6354. "工作中心",
  6355. $$("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 }), {
  6356. "id": "studioIndex",
  6357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6358. "onresize": function () { }
  6359. }, {
  6360. closecallback: function () { }
  6361. }, { "style": { "height": "36px" } }).form; //创建窗体
  6362. _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); } }
  6363. break;
  6364. case "source":
  6365. _formdiv = new U.UF.UI.form(
  6366. "教学资源",
  6367. $$("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 }), {
  6368. "id": "source",
  6369. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6370. "onresize": function () { }
  6371. }, {
  6372. closecallback: function () { }
  6373. }, { "style": { "height": "36px" } }).form; //创建窗体
  6374. _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); } }
  6375. break;
  6376. case "testTeacher":
  6377. _formdiv = new U.UF.UI.form(
  6378. "教师管理",
  6379. $$("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 }), {
  6380. "id": "testTeacher",
  6381. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6382. "onresize": function () { }
  6383. }, {
  6384. closecallback: function () { }
  6385. }, { "style": { "height": "36px" } }).form; //创建窗体
  6386. _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); } }
  6387. break;
  6388. case "testStudent":
  6389. _formdiv = new U.UF.UI.form(
  6390. "教师中心",
  6391. $$("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 }), {
  6392. "id": "testStudent",
  6393. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6394. "onresize": function () { }
  6395. }, {
  6396. closecallback: function () { }
  6397. }, { "style": { "height": "36px" } }).form; //创建窗体
  6398. _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); } }
  6399. break;
  6400. case "testTeacherSies":
  6401. _formdiv = new U.UF.UI.form(
  6402. "教师管理",
  6403. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6404. "id": "testTeacherSies",
  6405. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6406. "onresize": function () { }
  6407. }, {
  6408. closecallback: function () { }
  6409. }, { "style": { "height": "36px" } }).form; //创建窗体
  6410. _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); } }
  6411. break;
  6412. case "testStudentSies":
  6413. _formdiv = new U.UF.UI.form(
  6414. "教师中心",
  6415. $$("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 }), {
  6416. "id": "testStudentSies",
  6417. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6418. "onresize": function () { }
  6419. }, {
  6420. closecallback: function () { }
  6421. }, { "style": { "height": "36px" } }).form; //创建窗体
  6422. _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); } }
  6423. break;
  6424. case "ytpbl": //消息通知
  6425. _formdiv = new U.UF.UI.form(
  6426. "案例征集",
  6427. $$("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 }), {
  6428. "id": "ytpbl",
  6429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _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); } }
  6435. // 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");
  6436. break;
  6437. case "aiCourseResource": //人工智能窗体
  6438. _formdiv = new U.UF.UI.form(
  6439. false,
  6440. $$("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 }), {
  6441. "id": "aiCourseResource",
  6442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6443. "onresize": function () { },
  6444. "isdrag": false,
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //创建窗体
  6448. _taskbar = ''
  6449. break;
  6450. case "szdjgCocooroboX": //图形化编程
  6451. _formdiv = new U.UF.UI.form(
  6452. "图形化编程",
  6453. $$("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" }), {
  6454. "id": "szdjgCocooroboX",
  6455. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //创建窗体
  6460. _taskbar = ''
  6461. break;
  6462. case "szdjgPython": //python编程
  6463. _formdiv = new U.UF.UI.form(
  6464. "Python编程",
  6465. $$("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" }), {
  6466. "id": "szdjgPython",
  6467. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //创建窗体
  6472. _taskbar = ''
  6473. break;
  6474. case "Record":
  6475. _formdiv = new U.UF.UI.form(
  6476. "观察记录",
  6477. $$("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 }), {
  6478. "id": "Record",
  6479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6480. "onresize": function () { }
  6481. }, {
  6482. closecallback: function () { }
  6483. }, { "style": { "height": "36px" } }).form; //创建窗体
  6484. _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); } }
  6485. break;
  6486. case "aigptCourse":
  6487. _formdiv = new U.UF.UI.form(
  6488. "AI智能体",
  6489. $$("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' }), {
  6490. "id": "aigptCourse",
  6491. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6492. "onresize": function () { }
  6493. }, {
  6494. closecallback: function () { }
  6495. }, { "style": { "height": "36px" } }).form; //创建窗体
  6496. _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); } }
  6497. break;
  6498. case "classroomObservation":
  6499. _formdiv = new U.UF.UI.form(
  6500. "课堂观察",
  6501. $$("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 }), {
  6502. "id": "classroomObservation",
  6503. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6504. "onresize": function () { }
  6505. }, {
  6506. closecallback: function () { }
  6507. }, { "style": { "height": "36px" } }).form; //创建窗体
  6508. _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); } }
  6509. break;
  6510. case "pblCourse":
  6511. _formdiv = new U.UF.UI.form(
  6512. "学生PBL",
  6513. $$("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 }), {
  6514. "id": "pblCourse",
  6515. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6516. "onresize": function () { }
  6517. }, {
  6518. closecallback: function () { }
  6519. }, { "style": { "height": "36px" } }).form; //创建窗体
  6520. _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); } }
  6521. break;
  6522. }
  6523. //U.MD.D.I.openClick(str);
  6524. //如果有任务栏信息
  6525. if (_taskbar) {
  6526. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6527. }
  6528. }
  6529. // U.MD.D.I.openClick = function(str){
  6530. // var click = '';
  6531. // switch(str){
  6532. // case 'friend':
  6533. // click = '我的好友';
  6534. // break;
  6535. // case 'domain':
  6536. // click = '域名管理';
  6537. // break;
  6538. // case 'disk':
  6539. // click = '我的云盘';
  6540. // break;
  6541. // case 'word':
  6542. // click = 'Word';
  6543. // break;
  6544. // case 'excel':
  6545. // click = 'Execl';
  6546. // break;
  6547. // case 'txt':
  6548. // click = '文本文件';
  6549. // break;
  6550. // case 'lookupFriend':
  6551. // click = '查找好友';
  6552. // break;
  6553. // case 'ftp':
  6554. // click = 'FTP';
  6555. // break;
  6556. // case 'group':
  6557. // click = '群组';
  6558. // break;
  6559. // case 'set':
  6560. // click = '我的设置';
  6561. // break;
  6562. // case 'systemSet':
  6563. // click = '系统设置';
  6564. // break;
  6565. // case 'boomYun':
  6566. // click = '互联办公';
  6567. // break;
  6568. // case 'xz':
  6569. // click = '云端下载';
  6570. // break;
  6571. // case 'client':
  6572. // click = '有思浏览器';
  6573. // break;
  6574. // case 'backEndProgramming':
  6575. // click = '在线后台编程';
  6576. // break;
  6577. // case 'frontEndProgramming':
  6578. // click = '在线前端编程';
  6579. // break;
  6580. // default: break;
  6581. // }
  6582. // if(U.MD.D.I.Ip && click){
  6583. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6584. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6585. // })
  6586. // }
  6587. // }
  6588. /**
  6589. *函数作用:ajax简易函数,使用post格式
  6590. *@param url {data} 后台地址
  6591. *@param data {data} 参数json
  6592. *@param fn {data} 回调函数
  6593. *
  6594. */
  6595. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6596. // var xhr = new XMLHttpRequest();
  6597. // xhr.open("GET",url,true);
  6598. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6599. // xhr.onreadystatechange = function(){
  6600. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6601. // fn.call(this,xhr.responseText);
  6602. // }
  6603. // };
  6604. // xhr.send();
  6605. // }
  6606. /*判断是否是内网IP*/
  6607. // U.MD.D.I.isInnerIPFn = function(str){
  6608. // var curPageUrl = str;
  6609. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6610. // curPageUrl =curPageUrl.replace(reg1,'');
  6611. // // console.log('curPageUrl-1 '+curPageUrl);
  6612. // var reg2 = /\:+/g;//替换冒号为一点
  6613. // curPageUrl =curPageUrl.replace(reg2,'.');
  6614. // // console.log('curPageUrl-2 '+curPageUrl);
  6615. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6616. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6617. // if(curPageUrl[2] != '16'){
  6618. // return ipAddress;
  6619. // }else{
  6620. // return false;
  6621. // }
  6622. // }
  6623. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6624. // //compatibility for firefox and chrome
  6625. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6626. // var pc = new myPeerConnection({
  6627. // iceServers: []
  6628. // }),
  6629. // noop = function() {},
  6630. // localIPs = {},
  6631. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6632. // key;
  6633. // function iterateIP(ip) {
  6634. // if (!localIPs[ip]) onNewIP(ip);
  6635. // localIPs[ip] = true;
  6636. // }
  6637. // //create a bogus data channel
  6638. // pc.createDataChannel("");
  6639. // // create offer and set local description
  6640. // pc.createOffer().then(function(sdp) {
  6641. // sdp.sdp.split('\n').forEach(function(line) {
  6642. // if (line.indexOf('candidate') < 0) return;
  6643. // line.match(ipRegex).forEach(iterateIP);
  6644. // });
  6645. // pc.setLocalDescription(sdp, noop, noop);
  6646. // }).catch(function(reason) {
  6647. // // An error occurred, so handle the failure to connect
  6648. // });
  6649. // //sten for candidate events
  6650. // pc.onicecandidate = function(ice) {
  6651. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6652. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6653. // };
  6654. // }
  6655. // U.MD.D.I.getUserIpBool = function(callback){
  6656. // U.MD.D.I.getUserIP(function(ip){
  6657. // alert("Got IP! :" + ip);
  6658. // });
  6659. //}
  6660. //#endregion
  6661. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6662. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6663. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6664. _userinfo = US.userInfo, //登录用户信息
  6665. _userid = US.userInfo.userid //登录用户id
  6666. let _iframe;
  6667. let _cid = cid,
  6668. _stage = stage,
  6669. _task = task,
  6670. _tool = tool;
  6671. var _jie = $$("div", {
  6672. "style": {
  6673. "position": "absolute",
  6674. "bottom": "50px",
  6675. "right": "50px",
  6676. "zIndex": "9999",
  6677. "backgroundColor": "#2268bc",
  6678. "color": "#fff",
  6679. "padding": "12px 20px",
  6680. "cursor": "pointer",
  6681. "borderRadius": "4px",
  6682. },
  6683. "innerHTML": "提交作业"
  6684. })
  6685. let aTool = ''
  6686. let _loading = document.createElement('div')
  6687. _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;"
  6688. // _loading.id = "";
  6689. let _lchild = document.createElement('div')
  6690. let _limg = document.createElement('img')
  6691. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6692. _limg.style = "width: 26px;margin-right: 10px;"
  6693. _lchild.appendChild(_limg)
  6694. let _lspan = document.createElement('span')
  6695. _lspan.innerHTML = "上传中..."
  6696. _lchild.appendChild(_lspan)
  6697. _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%);"
  6698. _loading.appendChild(_lchild)
  6699. var _box = $$('div', {
  6700. "style": {
  6701. "position": "relative",
  6702. "width": "100%",
  6703. "height": "100%",
  6704. },
  6705. })
  6706. _box.appendChild(_loading)
  6707. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6708. switch (str) {
  6709. case "whiteboard":
  6710. aTool = 1;
  6711. _iframe = $$("iframe", {
  6712. "frameborder": "no",
  6713. "border": "0",
  6714. "scrolling ": "no",
  6715. "style": {
  6716. "cssText": "border:0;width:100%;height:100%"
  6717. },
  6718. "src": "https://beta.iwb.cocorobo.cn/"
  6719. })
  6720. _box.appendChild(_iframe);
  6721. _box.appendChild(_jie);
  6722. _formdiv = new U.UF.UI.form(
  6723. "电子白板",
  6724. _box, {
  6725. "id": "whiteboard" + cid + stage + task + tool,
  6726. "style": {
  6727. "width": "90%",
  6728. "height": "90%",
  6729. "overflow": 'hidden'
  6730. },
  6731. "onresize": function () { }
  6732. }, {
  6733. closecallback: function () { }
  6734. }, {
  6735. "style": {
  6736. "height": "36px"
  6737. }
  6738. }).form; //创建窗体
  6739. _taskbar = {
  6740. "id": str + _formdiv.id,
  6741. "style": {
  6742. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6743. },
  6744. "name": "电子白板",
  6745. "forms": _formdiv,
  6746. "click": function () {
  6747. U.MD.D.I.openApplication(str, obj, info);
  6748. }
  6749. }
  6750. break;
  6751. case "mind":
  6752. aTool = 3;
  6753. _iframe = $$("iframe", {
  6754. "frameborder": "no",
  6755. "border": "0",
  6756. "scrolling ": "no",
  6757. "style": {
  6758. "cssText": "border:0;width:100%;height:100%"
  6759. },
  6760. "src": "/kityminder-editor/dist/index.html"
  6761. })
  6762. _box.appendChild(_iframe);
  6763. _box.appendChild(_jie);
  6764. _formdiv = new U.UF.UI.form(
  6765. "思维导图",
  6766. _box, { //"/jsmind/example/demo.html"
  6767. "id": "mind" + cid + stage + task + tool,
  6768. "style": {
  6769. "width": "90%",
  6770. "height": "90%",
  6771. "overflow": 'hidden'
  6772. },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, {
  6777. "style": {
  6778. "height": "36px"
  6779. }
  6780. }).form; //创建窗体
  6781. _taskbar = {
  6782. "id": str + _formdiv.id,
  6783. "style": {
  6784. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6785. },
  6786. "name": "思维导图",
  6787. "forms": _formdiv,
  6788. "click": function () {
  6789. U.MD.D.I.openApplication(str, obj, info);
  6790. }
  6791. }
  6792. break;
  6793. case "MindMap":
  6794. aTool = 3;
  6795. _iframe = $$("iframe", {
  6796. "frameborder": "no",
  6797. "border": "0",
  6798. "scrolling ": "no",
  6799. "style": {
  6800. "cssText": "border:0;width:100%;height:100%"
  6801. },
  6802. "src": "//cloud.cocorobo.cn/mind/"
  6803. })
  6804. _box.appendChild(_iframe);
  6805. _box.appendChild(_jie);
  6806. _formdiv = new U.UF.UI.form(
  6807. "思维导图",
  6808. _box, { //"/jsmind/example/demo.html"
  6809. "id": "mind" + cid + stage + task + tool,
  6810. "style": {
  6811. "width": "90%",
  6812. "height": "90%",
  6813. "overflow": 'hidden'
  6814. },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, {
  6819. "style": {
  6820. "height": "36px"
  6821. }
  6822. }).form; //创建窗体
  6823. _taskbar = {
  6824. "id": str + _formdiv.id,
  6825. "style": {
  6826. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6827. },
  6828. "name": "思维导图",
  6829. "forms": _formdiv,
  6830. "click": function () {
  6831. U.MD.D.I.openApplication(str, obj, info);
  6832. }
  6833. }
  6834. break;
  6835. case "doc":
  6836. aTool = 6;
  6837. _iframe = $$("iframe", {
  6838. "frameborder": "no",
  6839. "border": "0",
  6840. "scrolling ": "no",
  6841. "style": {
  6842. "cssText": "border:0;width:100%;height:100%"
  6843. },
  6844. "src": "/Office/Word/WordEditArea.htm"
  6845. })
  6846. _box.appendChild(_iframe);
  6847. _box.appendChild(_jie);
  6848. _formdiv = new U.UF.UI.form(
  6849. "协同文档",
  6850. _box, {
  6851. "id": "doc" + cid + stage + task + tool,
  6852. "style": {
  6853. "width": "90%",
  6854. "height": "90%",
  6855. "overflow": 'hidden'
  6856. },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, {
  6861. "style": {
  6862. "height": "36px"
  6863. }
  6864. }).form; //创建窗体
  6865. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6866. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6867. })
  6868. _taskbar = {
  6869. "id": str + _formdiv.id,
  6870. "style": {
  6871. "backgroundImage": "url(/img/icon/doc.png)"
  6872. },
  6873. "name": "协同文档",
  6874. "forms": _formdiv,
  6875. "click": function () {
  6876. U.MD.D.I.openApplication(str, obj, info);
  6877. }
  6878. }
  6879. break;
  6880. case "mindNetwork": //好友打开
  6881. aTool = 7;
  6882. _iframe = $$("iframe", {
  6883. "webkitallowfullscreen": "",
  6884. "mozallowfullscreen": "",
  6885. "allowfullscreen": "",
  6886. "frameborder": "no",
  6887. "border": "0",
  6888. "scrolling ": "no",
  6889. "style": {
  6890. "cssText": "border:0; width:100%; height:100%;"
  6891. },
  6892. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6893. })
  6894. _box.appendChild(_iframe);
  6895. _box.appendChild(_jie);
  6896. _formdiv = new U.UF.UI.form(
  6897. "思维网格",
  6898. _box, {
  6899. "id": "mindNetwork" + cid + stage + task + tool,
  6900. "style": {
  6901. "width": "90%",
  6902. "height": "90%",
  6903. "overflow": 'hidden'
  6904. },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, {
  6909. "style": {
  6910. "height": "36px"
  6911. }
  6912. }).form; //创建窗体
  6913. _taskbar = {
  6914. "id": str + _formdiv.id,
  6915. "style": {
  6916. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6917. },
  6918. "name": "思维网格",
  6919. "forms": _formdiv,
  6920. "click": function () {
  6921. U.MD.D.I.openApplication(str, obj, info);
  6922. }
  6923. }
  6924. break;
  6925. case "courseDesign":
  6926. _iframe = $$("iframe", {
  6927. "webkitallowfullscreen": "",
  6928. "mozallowfullscreen": "",
  6929. "allowfullscreen": "",
  6930. "frameborder": "no",
  6931. "border": "0",
  6932. "scrolling ": "no",
  6933. "style": {
  6934. "cssText": "border:0; width:100%; height:100%;"
  6935. },
  6936. "src": "/course-design-vue"
  6937. })
  6938. _box.appendChild(_iframe);
  6939. _box.appendChild(_jie);
  6940. _formdiv = new U.UF.UI.form(
  6941. "项目设计",
  6942. _box, {
  6943. "id": "courseDesign" + cid + stage + task + tool,
  6944. "style": {
  6945. "width": "90%",
  6946. "height": "90%",
  6947. "overflow": 'hidden'
  6948. },
  6949. "onresize": function () { }
  6950. }, {
  6951. closecallback: function () { }
  6952. }, {
  6953. "style": {
  6954. "height": "36px"
  6955. }
  6956. }).form; //创建窗体
  6957. _taskbar = {
  6958. "id": str + _formdiv.id,
  6959. "style": {
  6960. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6961. },
  6962. "name": "项目设计",
  6963. "forms": _formdiv,
  6964. "click": function () {
  6965. U.MD.D.I.openApplication(str, obj, info);
  6966. }
  6967. }
  6968. break;
  6969. }
  6970. const script1 = document.createElement("script");
  6971. script1.type = "text/javascript";
  6972. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6973. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6974. const script2 = document.createElement("script");
  6975. script2.type = "text/javascript";
  6976. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6977. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6978. const script3 = document.createElement("script");
  6979. script3.type = "text/javascript";
  6980. script3.charset = "UTF-8";
  6981. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6982. const script4 = document.createElement("script");
  6983. script4.type = "text/javascript";
  6984. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6985. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6986. if (_iframe) {
  6987. if (str == 'doc') {
  6988. _iframe = _formdiv.querySelector('iframe')
  6989. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6990. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6991. _iframe.contentWindow.document.body.appendChild(script1);
  6992. _iframe.contentWindow.document.body.appendChild(script2);
  6993. // _iframe.contentWindow.document.body.appendChild(script3);
  6994. _iframe.contentWindow.document.body.appendChild(script4);
  6995. })
  6996. if (onloadListener) {
  6997. _iframe.contentDocument.location.reload()
  6998. } else {
  6999. _iframe.contentDocument.location.reload()
  7000. }
  7001. } else if (str == 'courseDesign') {
  7002. U.UF.DL.iframeLoad(_iframe, function () {
  7003. // _iframe.contentWindow.U.MD.O.W.load();
  7004. // _iframe.contentWindow.document.body.appendChild(script1);
  7005. _iframe.contentWindow.document.body.appendChild(script2);
  7006. _iframe.contentWindow.document.body.appendChild(script4);
  7007. })
  7008. } else if (str == 'mind') {
  7009. _iframe = _formdiv.querySelector('iframe')
  7010. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7011. //
  7012. _iframe.contentWindow.document.body.appendChild(script1);
  7013. _iframe.contentWindow.document.body.appendChild(script2);
  7014. _iframe.contentWindow.document.body.appendChild(script4);
  7015. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7016. })
  7017. if (onloadListener) {
  7018. _iframe.contentDocument.location.reload()
  7019. } else {
  7020. _iframe.contentDocument.location.reload()
  7021. }
  7022. } else if (str == 'whiteboard') {
  7023. _iframe = _formdiv.querySelector('iframe')
  7024. let onloadListener = _iframe.onload = () => {
  7025. _iframe.contentWindow.document.body.appendChild(script1);
  7026. _iframe.contentWindow.document.body.appendChild(script2);
  7027. _iframe.contentWindow.document.body.appendChild(script4);
  7028. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7029. };
  7030. // if (onloadListener) {
  7031. // try {
  7032. // _iframe.src += "?cocorobo="+new Date().getTime()
  7033. // _iframe.contentWindow.document.location.reload()
  7034. // } catch (error) {
  7035. // }
  7036. // } else {
  7037. // _iframe.contentDocument.location.reload()
  7038. // }
  7039. } else {
  7040. _iframe.onload = () => {
  7041. _iframe.contentWindow.document.body.appendChild(script1);
  7042. _iframe.contentWindow.document.body.appendChild(script2);
  7043. // _iframe.contentWindow.document.body.appendChild(script3);
  7044. _iframe.contentWindow.document.body.appendChild(script4);
  7045. };
  7046. }
  7047. _jie.onclick = async () => {
  7048. let text = ''
  7049. if (aTool == 1) {
  7050. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7051. } else if (aTool == 6) {
  7052. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7053. } else if (aTool == 3) {
  7054. text = await U.MD.D.I.getEditorContent(_iframe);
  7055. }
  7056. _loading.style.display = 'flex'
  7057. console.log(_loading);
  7058. var _ajs = _iframe.contentWindow.document.createElement("script");
  7059. _ajs.type = "text/javascript";
  7060. _ajs.innerHTML =
  7061. // 'console.log(' + _loading + ');\n' +
  7062. 'var _js = document.createElement("script");\n' +
  7063. '_js.type="text/javascript";\n' +
  7064. '_js.charset="UTF-8";\n' +
  7065. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7066. "_js.onload = function(){\n" +
  7067. ' var a = document.getElementsByTagName("img")\n' +
  7068. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7069. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7070. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7071. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7072. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7073. "beforeUpload_shishi(file," +
  7074. "'" +
  7075. _userid +
  7076. "'" +
  7077. ", " +
  7078. "'" +
  7079. _cid +
  7080. "'" +
  7081. ", " +
  7082. "'" +
  7083. _stage +
  7084. "'" +
  7085. ", " +
  7086. "'" +
  7087. _task +
  7088. "'" +
  7089. ", " +
  7090. "'" +
  7091. _tool +
  7092. "'" +
  7093. ", " +
  7094. "'" +
  7095. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7096. "'" +
  7097. ", " +
  7098. "'" +
  7099. aTool +
  7100. "'" +
  7101. ", " +
  7102. "`" +
  7103. text +
  7104. "`" +
  7105. ")\n" +
  7106. " });\n" +
  7107. "}\n" +
  7108. "document.head.appendChild(_js);\n";
  7109. _iframe.contentWindow.document.head.appendChild(_ajs);
  7110. }
  7111. }
  7112. //U.MD.D.I.openClick(str);
  7113. //如果有任务栏信息
  7114. // if (_taskbar) {
  7115. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7116. // }
  7117. }
  7118. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7119. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7120. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7121. _userinfo = US.userInfo, //登录用户信息
  7122. _userid = US.userInfo.userid //登录用户id
  7123. let _iframe;
  7124. let _cid = cid,
  7125. _stage = stage,
  7126. _task = task,
  7127. _tool = tool;
  7128. var _jie = $$("div", {
  7129. "style": {
  7130. "position": "absolute",
  7131. "bottom": "50px",
  7132. "right": "50px",
  7133. "zIndex": "9999",
  7134. "backgroundColor": "#2268bc",
  7135. "color": "#fff",
  7136. "padding": "12px 20px",
  7137. "cursor": "pointer",
  7138. "borderRadius": "4px",
  7139. },
  7140. "innerHTML": "提交作业"
  7141. })
  7142. let aTool = ''
  7143. let _loading = document.createElement('div')
  7144. _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;"
  7145. // _loading.id = "";
  7146. let _lchild = document.createElement('div')
  7147. let _limg = document.createElement('img')
  7148. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7149. _limg.style = "width: 26px;margin-right: 10px;"
  7150. _lchild.appendChild(_limg)
  7151. let _lspan = document.createElement('span')
  7152. _lspan.innerHTML = "上传中..."
  7153. _lchild.appendChild(_lspan)
  7154. _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%);"
  7155. _loading.appendChild(_lchild)
  7156. let _box = $$('div', {
  7157. "style": {
  7158. "position": "relative",
  7159. "width": "100%",
  7160. "height": "100%",
  7161. },
  7162. })
  7163. _box.appendChild(_loading)
  7164. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7165. switch (str) {
  7166. case "whiteboard":
  7167. aTool = 1;
  7168. _iframe = $$("iframe", {
  7169. "frameborder": "no",
  7170. "border": "0",
  7171. "scrolling ": "no",
  7172. "style": {
  7173. "cssText": "border:0;width:100%;height:100%"
  7174. },
  7175. "src": "https://beta.iwb.cocorobo.cn/"
  7176. })
  7177. _box.appendChild(_iframe);
  7178. _box.appendChild(_jie);
  7179. _formdiv = new U.UF.UI.form(
  7180. "电子白板",
  7181. _box, {
  7182. "id": "whiteboard" + cid + stage + task + tool,
  7183. "style": {
  7184. "width": "90%",
  7185. "height": "90%",
  7186. "overflow": 'hidden'
  7187. },
  7188. "onresize": function () { }
  7189. }, {
  7190. closecallback: function () { }
  7191. }, {
  7192. "style": {
  7193. "height": "36px"
  7194. }
  7195. }).form; //创建窗体
  7196. _taskbar = {
  7197. "id": str + _formdiv.id,
  7198. "style": {
  7199. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7200. },
  7201. "name": "电子白板",
  7202. "forms": _formdiv,
  7203. "click": function () {
  7204. U.MD.D.I.openApplication(str, obj, info);
  7205. }
  7206. }
  7207. break;
  7208. case "mind":
  7209. aTool = 3;
  7210. _iframe = $$("iframe", {
  7211. "frameborder": "no",
  7212. "border": "0",
  7213. "scrolling ": "no",
  7214. "style": {
  7215. "cssText": "border:0;width:100%;height:100%"
  7216. },
  7217. "src": "/kityminder-editor/dist/index.html"
  7218. })
  7219. _box.appendChild(_iframe);
  7220. _box.appendChild(_jie);
  7221. _formdiv = new U.UF.UI.form(
  7222. "思维导图",
  7223. _box, { //"/jsmind/example/demo.html"
  7224. "id": "mind" + cid + stage + task + tool,
  7225. "style": {
  7226. "width": "90%",
  7227. "height": "90%",
  7228. "overflow": 'hidden'
  7229. },
  7230. "onresize": function () { }
  7231. }, {
  7232. closecallback: function () { }
  7233. }, {
  7234. "style": {
  7235. "height": "36px"
  7236. }
  7237. }).form; //创建窗体
  7238. _taskbar = {
  7239. "id": str + _formdiv.id,
  7240. "style": {
  7241. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7242. },
  7243. "name": "思维导图",
  7244. "forms": _formdiv,
  7245. "click": function () {
  7246. U.MD.D.I.openApplication(str, obj, info);
  7247. }
  7248. }
  7249. break;
  7250. case "MindMap":
  7251. aTool = 3;
  7252. _iframe = $$("iframe", {
  7253. "frameborder": "no",
  7254. "border": "0",
  7255. "scrolling ": "no",
  7256. "style": {
  7257. "cssText": "border:0;width:100%;height:100%"
  7258. },
  7259. "src": "//cloud.cocorobo.cn/mind/"
  7260. })
  7261. _box.appendChild(_iframe);
  7262. _box.appendChild(_jie);
  7263. _formdiv = new U.UF.UI.form(
  7264. "思维导图",
  7265. _box, { //"/jsmind/example/demo.html"
  7266. "id": "mind" + cid + stage + task + tool,
  7267. "style": {
  7268. "width": "90%",
  7269. "height": "90%",
  7270. "overflow": 'hidden'
  7271. },
  7272. "onresize": function () { }
  7273. }, {
  7274. closecallback: function () { }
  7275. }, {
  7276. "style": {
  7277. "height": "36px"
  7278. }
  7279. }).form; //创建窗体
  7280. _taskbar = {
  7281. "id": str + _formdiv.id,
  7282. "style": {
  7283. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7284. },
  7285. "name": "思维导图",
  7286. "forms": _formdiv,
  7287. "click": function () {
  7288. U.MD.D.I.openApplication(str, obj, info);
  7289. }
  7290. }
  7291. break;
  7292. case "doc":
  7293. aTool = 6;
  7294. _iframe = $$("iframe", {
  7295. "frameborder": "no",
  7296. "border": "0",
  7297. "scrolling ": "no",
  7298. "style": {
  7299. "cssText": "border:0;width:100%;height:100%"
  7300. },
  7301. "src": "/Office/Word/WordEditArea.htm"
  7302. })
  7303. _box.appendChild(_iframe);
  7304. _box.appendChild(_jie);
  7305. _formdiv = new U.UF.UI.form(
  7306. "协同文档",
  7307. _box, {
  7308. "id": "doc" + cid + stage + task + tool,
  7309. "style": {
  7310. "width": "90%",
  7311. "height": "90%",
  7312. "overflow": 'hidden'
  7313. },
  7314. "onresize": function () { }
  7315. }, {
  7316. closecallback: function () { }
  7317. }, {
  7318. "style": {
  7319. "height": "36px"
  7320. }
  7321. }).form; //创建窗体
  7322. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7323. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7324. })
  7325. _taskbar = {
  7326. "id": str + _formdiv.id,
  7327. "style": {
  7328. "backgroundImage": "url(/img/icon/doc.png)"
  7329. },
  7330. "name": "协同文档",
  7331. "forms": _formdiv,
  7332. "click": function () {
  7333. U.MD.D.I.openApplication(str, obj, info);
  7334. }
  7335. }
  7336. break;
  7337. case "mindNetwork": //好友打开
  7338. aTool = 7;
  7339. _iframe = $$("iframe", {
  7340. "webkitallowfullscreen": "",
  7341. "mozallowfullscreen": "",
  7342. "allowfullscreen": "",
  7343. "frameborder": "no",
  7344. "border": "0",
  7345. "scrolling ": "no",
  7346. "style": {
  7347. "cssText": "border:0; width:100%; height:100%;"
  7348. },
  7349. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7350. })
  7351. _box.appendChild(_iframe);
  7352. _box.appendChild(_jie);
  7353. _formdiv = new U.UF.UI.form(
  7354. "思维网格",
  7355. _box, {
  7356. "id": "mindNetwork" + cid + stage + task + tool,
  7357. "style": {
  7358. "width": "90%",
  7359. "height": "90%",
  7360. "overflow": 'hidden'
  7361. },
  7362. "onresize": function () { }
  7363. }, {
  7364. closecallback: function () { }
  7365. }, {
  7366. "style": {
  7367. "height": "36px"
  7368. }
  7369. }).form; //创建窗体
  7370. _taskbar = {
  7371. "id": str + _formdiv.id,
  7372. "style": {
  7373. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7374. },
  7375. "name": "思维网格",
  7376. "forms": _formdiv,
  7377. "click": function () {
  7378. U.MD.D.I.openApplication(str, obj, info);
  7379. }
  7380. }
  7381. break;
  7382. case "courseDesign":
  7383. _iframe = $$("iframe", {
  7384. "webkitallowfullscreen": "",
  7385. "mozallowfullscreen": "",
  7386. "allowfullscreen": "",
  7387. "frameborder": "no",
  7388. "border": "0",
  7389. "scrolling ": "no",
  7390. "style": {
  7391. "cssText": "border:0; width:100%; height:100%;"
  7392. },
  7393. "src": "/course-design-vue"
  7394. })
  7395. _box.appendChild(_iframe);
  7396. _box.appendChild(_jie);
  7397. _formdiv = new U.UF.UI.form(
  7398. "项目设计",
  7399. _box, {
  7400. "id": "courseDesign" + cid + stage + task + tool,
  7401. "style": {
  7402. "width": "90%",
  7403. "height": "90%",
  7404. "overflow": 'hidden'
  7405. },
  7406. "onresize": function () { }
  7407. }, {
  7408. closecallback: function () { }
  7409. }, {
  7410. "style": {
  7411. "height": "36px"
  7412. }
  7413. }).form; //创建窗体
  7414. _taskbar = {
  7415. "id": str + _formdiv.id,
  7416. "style": {
  7417. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7418. },
  7419. "name": "项目设计",
  7420. "forms": _formdiv,
  7421. "click": function () {
  7422. U.MD.D.I.openApplication(str, obj, info);
  7423. }
  7424. }
  7425. break;
  7426. }
  7427. const script1 = document.createElement("script");
  7428. script1.type = "text/javascript";
  7429. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7430. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7431. const script2 = document.createElement("script");
  7432. script2.type = "text/javascript";
  7433. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7434. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7435. const script3 = document.createElement("script");
  7436. script3.type = "text/javascript";
  7437. script3.charset = "UTF-8";
  7438. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7439. const script4 = document.createElement("script");
  7440. script4.type = "text/javascript";
  7441. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7442. script4.src = window.origin + "/js/Common/jietu2E.js";
  7443. if (_iframe) {
  7444. if (str == 'doc') {
  7445. _iframe = _formdiv.querySelector('iframe')
  7446. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7447. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7448. _iframe.contentWindow.document.body.appendChild(script1);
  7449. _iframe.contentWindow.document.body.appendChild(script2);
  7450. // _iframe.contentWindow.document.body.appendChild(script3);
  7451. _iframe.contentWindow.document.body.appendChild(script4);
  7452. })
  7453. if (onloadListener) {
  7454. _iframe.contentDocument.location.reload()
  7455. } else {
  7456. _iframe.contentDocument.location.reload()
  7457. }
  7458. } else if (str == 'courseDesign') {
  7459. U.UF.DL.iframeLoad(_iframe, function () {
  7460. // _iframe.contentWindow.U.MD.O.W.load();
  7461. // _iframe.contentWindow.document.body.appendChild(script1);
  7462. _iframe.contentWindow.document.body.appendChild(script2);
  7463. _iframe.contentWindow.document.body.appendChild(script4);
  7464. })
  7465. } else if (str == 'mind') {
  7466. _iframe = _formdiv.querySelector('iframe')
  7467. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7468. //
  7469. _iframe.contentWindow.document.body.appendChild(script1);
  7470. _iframe.contentWindow.document.body.appendChild(script2);
  7471. _iframe.contentWindow.document.body.appendChild(script4);
  7472. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7473. })
  7474. if (onloadListener) {
  7475. _iframe.contentDocument.location.reload()
  7476. } else {
  7477. _iframe.contentDocument.location.reload()
  7478. }
  7479. } else if (str == 'whiteboard') {
  7480. _iframe = _formdiv.querySelector('iframe')
  7481. let onloadListener = _iframe.onload = () => {
  7482. _iframe.contentWindow.document.body.appendChild(script1);
  7483. _iframe.contentWindow.document.body.appendChild(script2);
  7484. _iframe.contentWindow.document.body.appendChild(script4);
  7485. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7486. };
  7487. // if (onloadListener) {
  7488. // try {
  7489. // _iframe.src += "?cocorobo="+new Date().getTime()
  7490. // _iframe.contentWindow.document.location.reload()
  7491. // } catch (error) {
  7492. // }
  7493. // } else {
  7494. // _iframe.contentDocument.location.reload()
  7495. // }
  7496. } else {
  7497. _iframe.onload = () => {
  7498. _iframe.contentWindow.document.body.appendChild(script1);
  7499. _iframe.contentWindow.document.body.appendChild(script2);
  7500. // _iframe.contentWindow.document.body.appendChild(script3);
  7501. _iframe.contentWindow.document.body.appendChild(script4);
  7502. };
  7503. }
  7504. _jie.onclick = async () => {
  7505. let text = ''
  7506. if (aTool == 1) {
  7507. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7508. } else if (aTool == 6) {
  7509. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7510. } else if (aTool == 3) {
  7511. text = await U.MD.D.I.getEditorContent(_iframe);
  7512. }
  7513. _loading.style.display = 'flex'
  7514. console.log(_loading);
  7515. var _ajs = _iframe.contentWindow.document.createElement("script");
  7516. _ajs.type = "text/javascript";
  7517. _ajs.innerHTML =
  7518. // 'console.log(' + _loading + ');\n' +
  7519. 'var _js = document.createElement("script");\n' +
  7520. '_js.type="text/javascript";\n' +
  7521. '_js.charset="UTF-8";\n' +
  7522. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7523. "_js.onload = function(){\n" +
  7524. ' var a = document.getElementsByTagName("img")\n' +
  7525. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7526. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7527. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7528. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7529. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7530. "beforeUpload_shishi(file," +
  7531. "'" +
  7532. _userid +
  7533. "'" +
  7534. ", " +
  7535. "'" +
  7536. _cid +
  7537. "'" +
  7538. ", " +
  7539. "'" +
  7540. _stage +
  7541. "'" +
  7542. ", " +
  7543. "'" +
  7544. _task +
  7545. "'" +
  7546. ", " +
  7547. "'" +
  7548. _tool +
  7549. "'" +
  7550. ", " +
  7551. "'" +
  7552. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7553. "'" +
  7554. ", " +
  7555. "'" +
  7556. aTool +
  7557. "'" +
  7558. ", " +
  7559. "`" +
  7560. text +
  7561. "`" +
  7562. ")\n" +
  7563. " });\n" +
  7564. "}\n" +
  7565. "document.head.appendChild(_js);\n";
  7566. _iframe.contentWindow.document.head.appendChild(_ajs);
  7567. }
  7568. }
  7569. //U.MD.D.I.openClick(str);
  7570. //如果有任务栏信息
  7571. // if (_taskbar) {
  7572. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7573. // }
  7574. }
  7575. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7576. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7577. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7578. _userid = student.userid, //登录用户id
  7579. _username = student.student //用户名字
  7580. let _iframe;
  7581. let _cid = cid,
  7582. _stage = stage,
  7583. _task = task,
  7584. _tool = tool;
  7585. var _jie = $$("div", {
  7586. "style": {
  7587. "position": "absolute",
  7588. "bottom": "50px",
  7589. "right": "50px",
  7590. "zIndex": "9999",
  7591. "backgroundColor": "#2268bc",
  7592. "color": "#fff",
  7593. "padding": "12px 20px",
  7594. "cursor": "pointer",
  7595. "borderRadius": "4px",
  7596. },
  7597. "innerHTML": "提交作业"
  7598. })
  7599. let aTool = ''
  7600. let _loading = document.createElement('div')
  7601. _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;"
  7602. // _loading.id = "";
  7603. let _lchild = document.createElement('div')
  7604. let _limg = document.createElement('img')
  7605. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7606. _limg.style = "width: 26px;margin-right: 10px;"
  7607. _lchild.appendChild(_limg)
  7608. let _lspan = document.createElement('span')
  7609. _lspan.innerHTML = "上传中..."
  7610. _lchild.appendChild(_lspan)
  7611. _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%);"
  7612. _loading.appendChild(_lchild)
  7613. var _box = $$('div', {
  7614. "style": {
  7615. "position": "relative",
  7616. "width": "100%",
  7617. "height": "100%",
  7618. },
  7619. })
  7620. _box.appendChild(_loading)
  7621. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7622. switch (str) {
  7623. case "whiteboard":
  7624. aTool = 1;
  7625. _iframe = $$("iframe", {
  7626. "frameborder": "no",
  7627. "border": "0",
  7628. "scrolling ": "no",
  7629. "style": {
  7630. "cssText": "border:0;width:100%;height:100%"
  7631. },
  7632. "src": "https://beta.iwb.cocorobo.cn/"
  7633. })
  7634. _box.appendChild(_iframe);
  7635. _box.appendChild(_jie);
  7636. _formdiv = new U.UF.UI.form(
  7637. "电子白板-" + _username,
  7638. _box, {
  7639. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7640. "style": {
  7641. "width": "90%",
  7642. "height": "90%",
  7643. "overflow": 'hidden'
  7644. },
  7645. "onresize": function () { }
  7646. }, {
  7647. closecallback: function () { }
  7648. }, {
  7649. "style": {
  7650. "height": "36px"
  7651. }
  7652. }).form; //创建窗体
  7653. _taskbar = {
  7654. "id": str + _formdiv.id,
  7655. "style": {
  7656. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7657. },
  7658. "name": "电子白板",
  7659. "forms": _formdiv,
  7660. "click": function () {
  7661. U.MD.D.I.openApplication(str, obj, info);
  7662. }
  7663. }
  7664. break;
  7665. case "mind":
  7666. aTool = 3;
  7667. _iframe = $$("iframe", {
  7668. "frameborder": "no",
  7669. "border": "0",
  7670. "scrolling ": "no",
  7671. "style": {
  7672. "cssText": "border:0;width:100%;height:100%"
  7673. },
  7674. "src": "/kityminder-editor/dist/index.html"
  7675. })
  7676. _box.appendChild(_iframe);
  7677. _box.appendChild(_jie);
  7678. _formdiv = new U.UF.UI.form(
  7679. "思维导图-" + _username,
  7680. _box, { //"/jsmind/example/demo.html"
  7681. "id": "mind" + cid + stage + task + tool + _userid,
  7682. "style": {
  7683. "width": "90%",
  7684. "height": "90%",
  7685. "overflow": 'hidden'
  7686. },
  7687. "onresize": function () { }
  7688. }, {
  7689. closecallback: function () { }
  7690. }, {
  7691. "style": {
  7692. "height": "36px"
  7693. }
  7694. }).form; //创建窗体
  7695. _taskbar = {
  7696. "id": str + _formdiv.id,
  7697. "style": {
  7698. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7699. },
  7700. "name": "思维导图",
  7701. "forms": _formdiv,
  7702. "click": function () {
  7703. U.MD.D.I.openApplication(str, obj, info);
  7704. }
  7705. }
  7706. break;
  7707. case "MindMap":
  7708. aTool = 3;
  7709. _iframe = $$("iframe", {
  7710. "frameborder": "no",
  7711. "border": "0",
  7712. "scrolling ": "no",
  7713. "style": {
  7714. "cssText": "border:0;width:100%;height:100%"
  7715. },
  7716. "src": "//cloud.cocorobo.cn/mind/"
  7717. })
  7718. _box.appendChild(_iframe);
  7719. _box.appendChild(_jie);
  7720. _formdiv = new U.UF.UI.form(
  7721. "思维导图-" + _username,
  7722. _box, { //"/jsmind/example/demo.html"
  7723. "id": "mind" + cid + stage + task + tool + _userid,
  7724. "style": {
  7725. "width": "90%",
  7726. "height": "90%",
  7727. "overflow": 'hidden'
  7728. },
  7729. "onresize": function () { }
  7730. }, {
  7731. closecallback: function () { }
  7732. }, {
  7733. "style": {
  7734. "height": "36px"
  7735. }
  7736. }).form; //创建窗体
  7737. _taskbar = {
  7738. "id": str + _formdiv.id,
  7739. "style": {
  7740. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7741. },
  7742. "name": "思维导图",
  7743. "forms": _formdiv,
  7744. "click": function () {
  7745. U.MD.D.I.openApplication(str, obj, info);
  7746. }
  7747. }
  7748. break;
  7749. case "doc":
  7750. aTool = 6;
  7751. _iframe = $$("iframe", {
  7752. "frameborder": "no",
  7753. "border": "0",
  7754. "scrolling ": "no",
  7755. "style": {
  7756. "cssText": "border:0;width:100%;height:100%"
  7757. },
  7758. "src": "/Office/Word/WordEditArea.htm"
  7759. })
  7760. _box.appendChild(_iframe);
  7761. _box.appendChild(_jie);
  7762. _formdiv = new U.UF.UI.form(
  7763. "协同文档-" + _username,
  7764. _box, {
  7765. "id": "doc" + cid + stage + task + tool + _userid,
  7766. "style": {
  7767. "width": "90%",
  7768. "height": "90%",
  7769. "overflow": 'hidden'
  7770. },
  7771. "onresize": function () { }
  7772. }, {
  7773. closecallback: function () { }
  7774. }, {
  7775. "style": {
  7776. "height": "36px"
  7777. }
  7778. }).form; //创建窗体
  7779. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7780. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7781. })
  7782. _taskbar = {
  7783. "id": str + _formdiv.id,
  7784. "style": {
  7785. "backgroundImage": "url(/img/icon/doc.png)"
  7786. },
  7787. "name": "协同文档",
  7788. "forms": _formdiv,
  7789. "click": function () {
  7790. U.MD.D.I.openApplication(str, obj, info);
  7791. }
  7792. }
  7793. break;
  7794. case "mindNetwork": //好友打开
  7795. aTool = 7;
  7796. _iframe = $$("iframe", {
  7797. "webkitallowfullscreen": "",
  7798. "mozallowfullscreen": "",
  7799. "allowfullscreen": "",
  7800. "frameborder": "no",
  7801. "border": "0",
  7802. "scrolling ": "no",
  7803. "style": {
  7804. "cssText": "border:0; width:100%; height:100%;"
  7805. },
  7806. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7807. })
  7808. _box.appendChild(_iframe);
  7809. _box.appendChild(_jie);
  7810. _formdiv = new U.UF.UI.form(
  7811. "思维网格-" + _username,
  7812. _box, {
  7813. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7814. "style": {
  7815. "width": "90%",
  7816. "height": "90%",
  7817. "overflow": 'hidden'
  7818. },
  7819. "onresize": function () { }
  7820. }, {
  7821. closecallback: function () { }
  7822. }, {
  7823. "style": {
  7824. "height": "36px"
  7825. }
  7826. }).form; //创建窗体
  7827. _taskbar = {
  7828. "id": str + _formdiv.id,
  7829. "style": {
  7830. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7831. },
  7832. "name": "思维网格",
  7833. "forms": _formdiv,
  7834. "click": function () {
  7835. U.MD.D.I.openApplication(str, obj, info);
  7836. }
  7837. }
  7838. break;
  7839. case "courseDesign":
  7840. _iframe = $$("iframe", {
  7841. "webkitallowfullscreen": "",
  7842. "mozallowfullscreen": "",
  7843. "allowfullscreen": "",
  7844. "frameborder": "no",
  7845. "border": "0",
  7846. "scrolling ": "no",
  7847. "style": {
  7848. "cssText": "border:0; width:100%; height:100%;"
  7849. },
  7850. "src": "/course-design-vue"
  7851. })
  7852. _box.appendChild(_iframe);
  7853. _box.appendChild(_jie);
  7854. _formdiv = new U.UF.UI.form(
  7855. "项目设计-" + _username,
  7856. _box, {
  7857. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7858. "style": {
  7859. "width": "90%",
  7860. "height": "90%",
  7861. "overflow": 'hidden'
  7862. },
  7863. "onresize": function () { }
  7864. }, {
  7865. closecallback: function () { }
  7866. }, {
  7867. "style": {
  7868. "height": "36px"
  7869. }
  7870. }).form; //创建窗体
  7871. _taskbar = {
  7872. "id": str + _formdiv.id,
  7873. "style": {
  7874. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7875. },
  7876. "name": "项目设计",
  7877. "forms": _formdiv,
  7878. "click": function () {
  7879. U.MD.D.I.openApplication(str, obj, info);
  7880. }
  7881. }
  7882. break;
  7883. }
  7884. const script1 = document.createElement("script");
  7885. script1.type = "text/javascript";
  7886. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7887. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7888. const script2 = document.createElement("script");
  7889. script2.type = "text/javascript";
  7890. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7891. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7892. const script3 = document.createElement("script");
  7893. script3.type = "text/javascript";
  7894. script3.charset = "UTF-8";
  7895. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7896. const script4 = document.createElement("script");
  7897. script4.type = "text/javascript";
  7898. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7899. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7900. if (_iframe) {
  7901. if (str == 'doc') {
  7902. _iframe = _formdiv.querySelector('iframe')
  7903. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7904. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7905. _iframe.contentWindow.document.body.appendChild(script1);
  7906. _iframe.contentWindow.document.body.appendChild(script2);
  7907. // _iframe.contentWindow.document.body.appendChild(script3);
  7908. _iframe.contentWindow.document.body.appendChild(script4);
  7909. })
  7910. if (onloadListener) {
  7911. _iframe.contentDocument.location.reload()
  7912. } else {
  7913. _iframe.contentDocument.location.reload()
  7914. }
  7915. } else if (str == 'courseDesign') {
  7916. U.UF.DL.iframeLoad(_iframe, function () {
  7917. // _iframe.contentWindow.U.MD.O.W.load();
  7918. // _iframe.contentWindow.document.body.appendChild(script1);
  7919. _iframe.contentWindow.document.body.appendChild(script2);
  7920. _iframe.contentWindow.document.body.appendChild(script4);
  7921. })
  7922. } else if (str == 'mind') {
  7923. _iframe = _formdiv.querySelector('iframe')
  7924. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7925. //
  7926. _iframe.contentWindow.document.body.appendChild(script1);
  7927. _iframe.contentWindow.document.body.appendChild(script2);
  7928. _iframe.contentWindow.document.body.appendChild(script4);
  7929. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7930. })
  7931. if (onloadListener) {
  7932. _iframe.contentDocument.location.reload()
  7933. } else {
  7934. _iframe.contentDocument.location.reload()
  7935. }
  7936. } else if (str == 'whiteboard') {
  7937. _iframe = _formdiv.querySelector('iframe')
  7938. let onloadListener = _iframe.onload = () => {
  7939. _iframe.contentWindow.document.body.appendChild(script1);
  7940. _iframe.contentWindow.document.body.appendChild(script2);
  7941. _iframe.contentWindow.document.body.appendChild(script4);
  7942. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7943. };
  7944. // if (onloadListener) {
  7945. // try {
  7946. // _iframe.src += "?cocorobo="+new Date().getTime()
  7947. // _iframe.contentWindow.document.location.reload()
  7948. // } catch (error) {
  7949. // }
  7950. // } else {
  7951. // _iframe.contentDocument.location.reload()
  7952. // }
  7953. } else {
  7954. _iframe.onload = () => {
  7955. _iframe.contentWindow.document.body.appendChild(script1);
  7956. _iframe.contentWindow.document.body.appendChild(script2);
  7957. // _iframe.contentWindow.document.body.appendChild(script3);
  7958. _iframe.contentWindow.document.body.appendChild(script4);
  7959. };
  7960. }
  7961. _jie.onclick = async () => {
  7962. let text = ''
  7963. if (aTool == 1) {
  7964. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7965. } else if (aTool == 6) {
  7966. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7967. } else if (aTool == 3) {
  7968. text = await U.MD.D.I.getEditorContent(_iframe);
  7969. }
  7970. _loading.style.display = 'flex'
  7971. console.log(_loading);
  7972. var _ajs = _iframe.contentWindow.document.createElement("script");
  7973. _ajs.type = "text/javascript";
  7974. _ajs.innerHTML =
  7975. // 'console.log(' + _loading + ');\n' +
  7976. 'var _js = document.createElement("script");\n' +
  7977. '_js.type="text/javascript";\n' +
  7978. '_js.charset="UTF-8";\n' +
  7979. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7980. "_js.onload = function(){\n" +
  7981. ' var a = document.getElementsByTagName("img")\n' +
  7982. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7983. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7984. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7985. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7986. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7987. "beforeUpload_shishi(file," +
  7988. "'" +
  7989. _userid +
  7990. "'" +
  7991. ", " +
  7992. "'" +
  7993. _cid +
  7994. "'" +
  7995. ", " +
  7996. "'" +
  7997. _stage +
  7998. "'" +
  7999. ", " +
  8000. "'" +
  8001. _task +
  8002. "'" +
  8003. ", " +
  8004. "'" +
  8005. _tool +
  8006. "'" +
  8007. ", " +
  8008. "'" +
  8009. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8010. "'" +
  8011. ", " +
  8012. "'" +
  8013. aTool +
  8014. "'" +
  8015. ", " +
  8016. "`" +
  8017. text +
  8018. "`" +
  8019. ")\n" +
  8020. " });\n" +
  8021. "}\n" +
  8022. "document.head.appendChild(_js);\n";
  8023. _iframe.contentWindow.document.head.appendChild(_ajs);
  8024. }
  8025. }
  8026. }
  8027. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8028. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8029. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8030. _userid = student.userid, //登录用户id
  8031. _username = student.student //用户名字
  8032. let _iframe;
  8033. let _cid = cid,
  8034. _stage = stage,
  8035. _task = task,
  8036. _tool = tool;
  8037. var _jie = $$("div", {
  8038. "style": {
  8039. "position": "absolute",
  8040. "bottom": "50px",
  8041. "right": "50px",
  8042. "zIndex": "9999",
  8043. "backgroundColor": "#2268bc",
  8044. "color": "#fff",
  8045. "padding": "12px 20px",
  8046. "cursor": "pointer",
  8047. "borderRadius": "4px",
  8048. },
  8049. "innerHTML": "提交作业"
  8050. })
  8051. let aTool = ''
  8052. let _loading = document.createElement('div')
  8053. _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;"
  8054. // _loading.id = "";
  8055. let _lchild = document.createElement('div')
  8056. let _limg = document.createElement('img')
  8057. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8058. _limg.style = "width: 26px;margin-right: 10px;"
  8059. _lchild.appendChild(_limg)
  8060. let _lspan = document.createElement('span')
  8061. _lspan.innerHTML = "上传中..."
  8062. _lchild.appendChild(_lspan)
  8063. _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%);"
  8064. _loading.appendChild(_lchild)
  8065. var _box = $$('div', {
  8066. "style": {
  8067. "position": "relative",
  8068. "width": "100%",
  8069. "height": "100%",
  8070. },
  8071. })
  8072. _box.appendChild(_loading)
  8073. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8074. switch (str) {
  8075. case "whiteboard":
  8076. aTool = 1;
  8077. _iframe = $$("iframe", {
  8078. "frameborder": "no",
  8079. "border": "0",
  8080. "scrolling ": "no",
  8081. "style": {
  8082. "cssText": "border:0;width:100%;height:100%"
  8083. },
  8084. "src": "https://beta.iwb.cocorobo.cn/"
  8085. })
  8086. _box.appendChild(_iframe);
  8087. _box.appendChild(_jie);
  8088. _formdiv = new U.UF.UI.form(
  8089. "电子白板-" + _username,
  8090. _box, {
  8091. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8092. "style": {
  8093. "width": "90%",
  8094. "height": "90%",
  8095. "overflow": 'hidden'
  8096. },
  8097. "onresize": function () { }
  8098. }, {
  8099. closecallback: function () { }
  8100. }, {
  8101. "style": {
  8102. "height": "36px"
  8103. }
  8104. }).form; //创建窗体
  8105. _taskbar = {
  8106. "id": str + _formdiv.id,
  8107. "style": {
  8108. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8109. },
  8110. "name": "电子白板",
  8111. "forms": _formdiv,
  8112. "click": function () {
  8113. U.MD.D.I.openApplication(str, obj, info);
  8114. }
  8115. }
  8116. break;
  8117. case "mind":
  8118. aTool = 3;
  8119. _iframe = $$("iframe", {
  8120. "frameborder": "no",
  8121. "border": "0",
  8122. "scrolling ": "no",
  8123. "style": {
  8124. "cssText": "border:0;width:100%;height:100%"
  8125. },
  8126. "src": "/kityminder-editor/dist/index.html"
  8127. })
  8128. _box.appendChild(_iframe);
  8129. _box.appendChild(_jie);
  8130. _formdiv = new U.UF.UI.form(
  8131. "思维导图-" + _username,
  8132. _box, { //"/jsmind/example/demo.html"
  8133. "id": "mind" + cid + stage + task + tool + _userid,
  8134. "style": {
  8135. "width": "90%",
  8136. "height": "90%",
  8137. "overflow": 'hidden'
  8138. },
  8139. "onresize": function () { }
  8140. }, {
  8141. closecallback: function () { }
  8142. }, {
  8143. "style": {
  8144. "height": "36px"
  8145. }
  8146. }).form; //创建窗体
  8147. _taskbar = {
  8148. "id": str + _formdiv.id,
  8149. "style": {
  8150. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8151. },
  8152. "name": "思维导图",
  8153. "forms": _formdiv,
  8154. "click": function () {
  8155. U.MD.D.I.openApplication(str, obj, info);
  8156. }
  8157. }
  8158. break;
  8159. case "MindMap":
  8160. aTool = 3;
  8161. _iframe = $$("iframe", {
  8162. "frameborder": "no",
  8163. "border": "0",
  8164. "scrolling ": "no",
  8165. "style": {
  8166. "cssText": "border:0;width:100%;height:100%"
  8167. },
  8168. "src": "//cloud.cocorobo.cn/mind/"
  8169. })
  8170. _box.appendChild(_iframe);
  8171. _box.appendChild(_jie);
  8172. _formdiv = new U.UF.UI.form(
  8173. "思维导图-" + _username,
  8174. _box, { //"/jsmind/example/demo.html"
  8175. "id": "mind" + cid + stage + task + tool + _userid,
  8176. "style": {
  8177. "width": "90%",
  8178. "height": "90%",
  8179. "overflow": 'hidden'
  8180. },
  8181. "onresize": function () { }
  8182. }, {
  8183. closecallback: function () { }
  8184. }, {
  8185. "style": {
  8186. "height": "36px"
  8187. }
  8188. }).form; //创建窗体
  8189. _taskbar = {
  8190. "id": str + _formdiv.id,
  8191. "style": {
  8192. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8193. },
  8194. "name": "思维导图",
  8195. "forms": _formdiv,
  8196. "click": function () {
  8197. U.MD.D.I.openApplication(str, obj, info);
  8198. }
  8199. }
  8200. break;
  8201. case "doc":
  8202. aTool = 6;
  8203. _iframe = $$("iframe", {
  8204. "frameborder": "no",
  8205. "border": "0",
  8206. "scrolling ": "no",
  8207. "style": {
  8208. "cssText": "border:0;width:100%;height:100%"
  8209. },
  8210. "src": "/Office/Word/WordEditArea.htm"
  8211. })
  8212. _box.appendChild(_iframe);
  8213. _box.appendChild(_jie);
  8214. _formdiv = new U.UF.UI.form(
  8215. "协同文档-" + _username,
  8216. _box, {
  8217. "id": "doc" + cid + stage + task + tool + _userid,
  8218. "style": {
  8219. "width": "90%",
  8220. "height": "90%",
  8221. "overflow": 'hidden'
  8222. },
  8223. "onresize": function () { }
  8224. }, {
  8225. closecallback: function () { }
  8226. }, {
  8227. "style": {
  8228. "height": "36px"
  8229. }
  8230. }).form; //创建窗体
  8231. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8232. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8233. })
  8234. _taskbar = {
  8235. "id": str + _formdiv.id,
  8236. "style": {
  8237. "backgroundImage": "url(/img/icon/doc.png)"
  8238. },
  8239. "name": "协同文档",
  8240. "forms": _formdiv,
  8241. "click": function () {
  8242. U.MD.D.I.openApplication(str, obj, info);
  8243. }
  8244. }
  8245. break;
  8246. case "mindNetwork": //好友打开
  8247. aTool = 7;
  8248. _iframe = $$("iframe", {
  8249. "webkitallowfullscreen": "",
  8250. "mozallowfullscreen": "",
  8251. "allowfullscreen": "",
  8252. "frameborder": "no",
  8253. "border": "0",
  8254. "scrolling ": "no",
  8255. "style": {
  8256. "cssText": "border:0; width:100%; height:100%;"
  8257. },
  8258. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8259. })
  8260. _box.appendChild(_iframe);
  8261. _box.appendChild(_jie);
  8262. _formdiv = new U.UF.UI.form(
  8263. "思维网格-" + _username,
  8264. _box, {
  8265. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8266. "style": {
  8267. "width": "90%",
  8268. "height": "90%",
  8269. "overflow": 'hidden'
  8270. },
  8271. "onresize": function () { }
  8272. }, {
  8273. closecallback: function () { }
  8274. }, {
  8275. "style": {
  8276. "height": "36px"
  8277. }
  8278. }).form; //创建窗体
  8279. _taskbar = {
  8280. "id": str + _formdiv.id,
  8281. "style": {
  8282. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8283. },
  8284. "name": "思维网格",
  8285. "forms": _formdiv,
  8286. "click": function () {
  8287. U.MD.D.I.openApplication(str, obj, info);
  8288. }
  8289. }
  8290. break;
  8291. case "courseDesign":
  8292. _iframe = $$("iframe", {
  8293. "webkitallowfullscreen": "",
  8294. "mozallowfullscreen": "",
  8295. "allowfullscreen": "",
  8296. "frameborder": "no",
  8297. "border": "0",
  8298. "scrolling ": "no",
  8299. "style": {
  8300. "cssText": "border:0; width:100%; height:100%;"
  8301. },
  8302. "src": "/course-design-vue"
  8303. })
  8304. _box.appendChild(_iframe);
  8305. _box.appendChild(_jie);
  8306. _formdiv = new U.UF.UI.form(
  8307. "项目设计-" + _username,
  8308. _box, {
  8309. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8310. "style": {
  8311. "width": "90%",
  8312. "height": "90%",
  8313. "overflow": 'hidden'
  8314. },
  8315. "onresize": function () { }
  8316. }, {
  8317. closecallback: function () { }
  8318. }, {
  8319. "style": {
  8320. "height": "36px"
  8321. }
  8322. }).form; //创建窗体
  8323. _taskbar = {
  8324. "id": str + _formdiv.id,
  8325. "style": {
  8326. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8327. },
  8328. "name": "项目设计",
  8329. "forms": _formdiv,
  8330. "click": function () {
  8331. U.MD.D.I.openApplication(str, obj, info);
  8332. }
  8333. }
  8334. break;
  8335. }
  8336. const script1 = document.createElement("script");
  8337. script1.type = "text/javascript";
  8338. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8339. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8340. const script2 = document.createElement("script");
  8341. script2.type = "text/javascript";
  8342. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8343. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8344. const script3 = document.createElement("script");
  8345. script3.type = "text/javascript";
  8346. script3.charset = "UTF-8";
  8347. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8348. const script4 = document.createElement("script");
  8349. script4.type = "text/javascript";
  8350. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8351. script4.src = window.origin + "/js/Common/jietu2E.js";
  8352. if (_iframe) {
  8353. if (str == 'doc') {
  8354. _iframe = _formdiv.querySelector('iframe')
  8355. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8356. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8357. _iframe.contentWindow.document.body.appendChild(script1);
  8358. _iframe.contentWindow.document.body.appendChild(script2);
  8359. // _iframe.contentWindow.document.body.appendChild(script3);
  8360. _iframe.contentWindow.document.body.appendChild(script4);
  8361. })
  8362. if (onloadListener) {
  8363. _iframe.contentDocument.location.reload()
  8364. } else {
  8365. _iframe.contentDocument.location.reload()
  8366. }
  8367. } else if (str == 'courseDesign') {
  8368. U.UF.DL.iframeLoad(_iframe, function () {
  8369. // _iframe.contentWindow.U.MD.O.W.load();
  8370. // _iframe.contentWindow.document.body.appendChild(script1);
  8371. _iframe.contentWindow.document.body.appendChild(script2);
  8372. _iframe.contentWindow.document.body.appendChild(script4);
  8373. })
  8374. } else if (str == 'mind') {
  8375. _iframe = _formdiv.querySelector('iframe')
  8376. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8377. //
  8378. _iframe.contentWindow.document.body.appendChild(script1);
  8379. _iframe.contentWindow.document.body.appendChild(script2);
  8380. _iframe.contentWindow.document.body.appendChild(script4);
  8381. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8382. })
  8383. if (onloadListener) {
  8384. _iframe.contentDocument.location.reload()
  8385. } else {
  8386. _iframe.contentDocument.location.reload()
  8387. }
  8388. } else if (str == 'whiteboard') {
  8389. _iframe = _formdiv.querySelector('iframe')
  8390. let onloadListener = _iframe.onload = () => {
  8391. _iframe.contentWindow.document.body.appendChild(script1);
  8392. _iframe.contentWindow.document.body.appendChild(script2);
  8393. _iframe.contentWindow.document.body.appendChild(script4);
  8394. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8395. };
  8396. // if (onloadListener) {
  8397. // try {
  8398. // _iframe.src += "?cocorobo="+new Date().getTime()
  8399. // _iframe.contentWindow.document.location.reload()
  8400. // } catch (error) {
  8401. // }
  8402. // } else {
  8403. // _iframe.contentDocument.location.reload()
  8404. // }
  8405. } else {
  8406. _iframe.onload = () => {
  8407. _iframe.contentWindow.document.body.appendChild(script1);
  8408. _iframe.contentWindow.document.body.appendChild(script2);
  8409. // _iframe.contentWindow.document.body.appendChild(script3);
  8410. _iframe.contentWindow.document.body.appendChild(script4);
  8411. };
  8412. }
  8413. _jie.onclick = async () => {
  8414. let text = ''
  8415. if (aTool == 1) {
  8416. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8417. } else if (aTool == 6) {
  8418. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8419. } else if (aTool == 3) {
  8420. text = await U.MD.D.I.getEditorContent(_iframe);
  8421. }
  8422. _loading.style.display = 'flex'
  8423. console.log(_loading);
  8424. var _ajs = _iframe.contentWindow.document.createElement("script");
  8425. _ajs.type = "text/javascript";
  8426. _ajs.innerHTML =
  8427. // 'console.log(' + _loading + ');\n' +
  8428. 'var _js = document.createElement("script");\n' +
  8429. '_js.type="text/javascript";\n' +
  8430. '_js.charset="UTF-8";\n' +
  8431. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8432. "_js.onload = function(){\n" +
  8433. ' var a = document.getElementsByTagName("img")\n' +
  8434. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8435. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8436. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8437. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8438. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8439. "beforeUpload_shishi(file," +
  8440. "'" +
  8441. _userid +
  8442. "'" +
  8443. ", " +
  8444. "'" +
  8445. _cid +
  8446. "'" +
  8447. ", " +
  8448. "'" +
  8449. _stage +
  8450. "'" +
  8451. ", " +
  8452. "'" +
  8453. _task +
  8454. "'" +
  8455. ", " +
  8456. "'" +
  8457. _tool +
  8458. "'" +
  8459. ", " +
  8460. "'" +
  8461. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8462. "'" +
  8463. ", " +
  8464. "'" +
  8465. aTool +
  8466. "'" +
  8467. ", " +
  8468. "`" +
  8469. text +
  8470. "`" +
  8471. ")\n" +
  8472. " });\n" +
  8473. "}\n" +
  8474. "document.head.appendChild(_js);\n";
  8475. _iframe.contentWindow.document.head.appendChild(_ajs);
  8476. }
  8477. }
  8478. }
  8479. U.MD.D.I.getEditorContent = function (iframe) {
  8480. return new Promise((resolve, reject) => {
  8481. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8482. console.log(content);
  8483. resolve(content)
  8484. });
  8485. });
  8486. }
  8487. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8488. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8489. // if (res.value[0].length > 0) {
  8490. // // resolve(res.value[0][0].text);
  8491. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8492. // $(fileInput).val('');
  8493. // });
  8494. // }
  8495. // }, [], { "type": "GET", "withCredentials": true });
  8496. var xmlhttp;
  8497. var Mac, Sn, DeviceId
  8498. if (window.XMLHttpRequest) {
  8499. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8500. xmlhttp = new XMLHttpRequest();
  8501. } else {
  8502. // IE6, IE5 浏览器执行代码
  8503. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8504. }
  8505. xmlhttp.onreadystatechange = function () {
  8506. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8507. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8508. // resolve(res.value[0][0].text);
  8509. if (type == '2') {
  8510. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8511. } else if (type == '3') {
  8512. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8513. }
  8514. } else {
  8515. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8516. }
  8517. }
  8518. }
  8519. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8520. xmlhttp.send();
  8521. }
  8522. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8523. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8524. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8525. _userinfo = US.userInfo, //登录用户信息
  8526. _userid = US.userInfo.userid //登录用户id
  8527. let _iframe;
  8528. let _cid = cid,
  8529. _stage = stage,
  8530. _task = task,
  8531. _tool = tool;
  8532. var _jie = $$("div", {
  8533. "style": {
  8534. "position": "absolute",
  8535. "bottom": "50px",
  8536. "right": "50px",
  8537. "zIndex": "9999",
  8538. "backgroundColor": "#2268bc",
  8539. "color": "#fff",
  8540. "padding": "12px 20px",
  8541. "cursor": "pointer",
  8542. "borderRadius": "4px",
  8543. },
  8544. "innerHTML": "确认并提交"
  8545. })
  8546. let aTool = ''
  8547. let _loading = document.createElement('div')
  8548. _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;"
  8549. // _loading.id = "";
  8550. let _lchild = document.createElement('div')
  8551. let _limg = document.createElement('img')
  8552. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8553. _limg.style = "width: 26px;margin-right: 10px;"
  8554. _lchild.appendChild(_limg)
  8555. let _lspan = document.createElement('span')
  8556. _lspan.innerHTML = "上传中..."
  8557. _lchild.appendChild(_lspan)
  8558. _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%);"
  8559. _loading.appendChild(_lchild)
  8560. var _box = $$('div', {
  8561. "style": {
  8562. "position": "relative",
  8563. "width": "100%",
  8564. "height": "100%",
  8565. },
  8566. })
  8567. _box.appendChild(_loading)
  8568. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8569. switch (str) {
  8570. case "whiteboard":
  8571. aTool = 1;
  8572. _iframe = $$("iframe", {
  8573. "frameborder": "no",
  8574. "border": "0",
  8575. "scrolling ": "no",
  8576. "style": {
  8577. "cssText": "border:0;width:100%;height:100%"
  8578. },
  8579. "src": "https://beta.iwb.cocorobo.cn/"
  8580. })
  8581. _box.appendChild(_iframe);
  8582. _box.appendChild(_jie);
  8583. _formdiv = new U.UF.UI.form(
  8584. "电子白板",
  8585. _box, {
  8586. "id": "whiteboards" + cid + stage + task + tool,
  8587. "style": {
  8588. "width": "90%",
  8589. "height": "90%",
  8590. "overflow": 'hidden'
  8591. },
  8592. "onresize": function () { }
  8593. }, {
  8594. closecallback: function () { }
  8595. }, {
  8596. "style": {
  8597. "height": "36px"
  8598. }
  8599. }).form; //创建窗体
  8600. _taskbar = {
  8601. "id": str + _formdiv.id,
  8602. "style": {
  8603. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8604. },
  8605. "name": "电子白板",
  8606. "forms": _formdiv,
  8607. "click": function () {
  8608. U.MD.D.I.openApplication(str, obj, info);
  8609. }
  8610. }
  8611. break;
  8612. case "mind":
  8613. aTool = 3;
  8614. _iframe = $$("iframe", {
  8615. "frameborder": "no",
  8616. "border": "0",
  8617. "scrolling ": "no",
  8618. "style": {
  8619. "cssText": "border:0;width:100%;height:100%"
  8620. },
  8621. "src": "/kityminder-editor/dist/index.html"
  8622. });
  8623. _box.appendChild(_iframe);
  8624. _box.appendChild(_jie);
  8625. _formdiv = new U.UF.UI.form(
  8626. "思维导图",
  8627. _box, { //"/jsmind/example/demo.html"
  8628. "id": "minds" + cid + stage + task + tool,
  8629. "style": {
  8630. "width": "90%",
  8631. "height": "90%",
  8632. "overflow": 'hidden'
  8633. },
  8634. "onresize": function () { }
  8635. }, {
  8636. closecallback: function () { }
  8637. }, {
  8638. "style": {
  8639. "height": "36px"
  8640. }
  8641. }).form; //创建窗体
  8642. _taskbar = {
  8643. "id": str + _formdiv.id,
  8644. "style": {
  8645. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8646. },
  8647. "name": "思维导图",
  8648. "forms": _formdiv,
  8649. "click": function () {
  8650. U.MD.D.I.openApplication(str, obj, info);
  8651. }
  8652. }
  8653. break;
  8654. case "doc":
  8655. aTool = 6;
  8656. _iframe = $$("iframe", {
  8657. "frameborder": "no",
  8658. "border": "0",
  8659. "scrolling ": "no",
  8660. "style": {
  8661. "cssText": "border:0;width:100%;height:100%"
  8662. },
  8663. "src": "/Office/Word/WordEditArea.htm"
  8664. })
  8665. _box.appendChild(_iframe);
  8666. _box.appendChild(_jie);
  8667. _formdiv = new U.UF.UI.form(
  8668. "协同文档",
  8669. _box, {
  8670. "id": "docs" + cid + stage + task + tool,
  8671. "style": {
  8672. "width": "90%",
  8673. "height": "90%",
  8674. "overflow": 'hidden'
  8675. },
  8676. "onresize": function () { }
  8677. }, {
  8678. closecallback: function () { }
  8679. }, {
  8680. "style": {
  8681. "height": "36px"
  8682. }
  8683. }).form; //创建窗体
  8684. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8685. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8686. })
  8687. _taskbar = {
  8688. "id": str + _formdiv.id,
  8689. "style": {
  8690. "backgroundImage": "url(/img/icon/doc.png)"
  8691. },
  8692. "name": "协同文档",
  8693. "forms": _formdiv,
  8694. "click": function () {
  8695. U.MD.D.I.openApplication(str, obj, info);
  8696. }
  8697. }
  8698. break;
  8699. }
  8700. const script1 = document.createElement("script");
  8701. script1.type = "text/javascript";
  8702. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8703. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8704. const script2 = document.createElement("script");
  8705. script2.type = "text/javascript";
  8706. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8707. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8708. const script3 = document.createElement("script");
  8709. script3.type = "text/javascript";
  8710. script3.charset = "UTF-8";
  8711. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8712. const script4 = document.createElement("script");
  8713. script4.type = "text/javascript";
  8714. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8715. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8716. if (_iframe) {
  8717. if (str == 'doc') {
  8718. _iframe = _formdiv.querySelector('iframe')
  8719. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8720. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8721. _iframe.contentWindow.document.body.appendChild(script1);
  8722. _iframe.contentWindow.document.body.appendChild(script2);
  8723. // _iframe.contentWindow.document.body.appendChild(script3);
  8724. _iframe.contentWindow.document.body.appendChild(script4);
  8725. })
  8726. if (onloadListener) {
  8727. _iframe.contentDocument.location.reload()
  8728. } else {
  8729. _iframe.contentDocument.location.reload()
  8730. }
  8731. } else if (str == 'mind') {
  8732. _iframe = _formdiv.querySelector('iframe')
  8733. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8734. _iframe.contentWindow.document.body.appendChild(script1);
  8735. _iframe.contentWindow.document.body.appendChild(script2);
  8736. _iframe.contentWindow.document.body.appendChild(script4);
  8737. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8738. })
  8739. if (onloadListener) {
  8740. _iframe.contentDocument.location.reload()
  8741. } else {
  8742. _iframe.contentDocument.location.reload()
  8743. }
  8744. } else {
  8745. _iframe.onload = () => {
  8746. _iframe.contentWindow.document.body.appendChild(script1);
  8747. _iframe.contentWindow.document.body.appendChild(script2);
  8748. // _iframe.contentWindow.document.body.appendChild(script3);
  8749. _iframe.contentWindow.document.body.appendChild(script4);
  8750. };
  8751. }
  8752. _jie.onclick = async () => {
  8753. let text = ''
  8754. if (aTool == 6) {
  8755. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8756. } else if (aTool == 3) {
  8757. text = await U.MD.D.I.getEditorContent(_iframe);
  8758. }
  8759. _loading.style.display = 'flex'
  8760. console.log(_loading);
  8761. var _ajs = _iframe.contentWindow.document.createElement("script");
  8762. _ajs.type = "text/javascript";
  8763. _ajs.innerHTML =
  8764. // 'console.log(' + _loading + ');\n' +
  8765. 'var _js = document.createElement("script");\n' +
  8766. '_js.type="text/javascript";\n' +
  8767. '_js.charset="UTF-8";\n' +
  8768. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8769. "_js.onload = function(){\n" +
  8770. ' var a = document.getElementsByTagName("img")\n' +
  8771. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8772. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8773. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8774. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8775. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8776. "beforeUpload_shishi(file," +
  8777. "'" +
  8778. _userid +
  8779. "'" +
  8780. ", " +
  8781. "'" +
  8782. _cid +
  8783. "'" +
  8784. ", " +
  8785. "'" +
  8786. _stage +
  8787. "'" +
  8788. ", " +
  8789. "'" +
  8790. _task +
  8791. "'" +
  8792. ", " +
  8793. "'" +
  8794. _tool +
  8795. "'" +
  8796. ", " +
  8797. "'" +
  8798. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8799. "'" +
  8800. ", " +
  8801. "'" +
  8802. aTool +
  8803. "'" +
  8804. ", " +
  8805. "`" +
  8806. text +
  8807. "`" +
  8808. ")\n" +
  8809. " });\n" +
  8810. "}\n" +
  8811. "document.head.appendChild(_js);\n";
  8812. _iframe.contentWindow.document.head.appendChild(_ajs);
  8813. }
  8814. }
  8815. //U.MD.D.I.openClick(str);
  8816. //如果有任务栏信息
  8817. // if (_taskbar) {
  8818. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8819. // }
  8820. }
  8821. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8822. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8823. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8824. _userinfo = US.userInfo, //登录用户信息
  8825. _userid = US.userInfo.userid //登录用户id
  8826. let _iframe;
  8827. let _cid = cid,
  8828. _stage = stage,
  8829. _task = task,
  8830. _tool = tool;
  8831. var _jie = $$("div", {
  8832. "style": {
  8833. "position": "absolute",
  8834. "bottom": "50px",
  8835. "right": "50px",
  8836. "zIndex": "9999",
  8837. "backgroundColor": "#2268bc",
  8838. "color": "#fff",
  8839. "padding": "12px 20px",
  8840. "cursor": "pointer",
  8841. "borderRadius": "4px",
  8842. },
  8843. "innerHTML": "确认并提交"
  8844. })
  8845. let aTool = ''
  8846. let _loading = document.createElement('div')
  8847. _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;"
  8848. // _loading.id = "";
  8849. let _lchild = document.createElement('div')
  8850. let _limg = document.createElement('img')
  8851. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8852. _limg.style = "width: 26px;margin-right: 10px;"
  8853. _lchild.appendChild(_limg)
  8854. let _lspan = document.createElement('span')
  8855. _lspan.innerHTML = "上传中..."
  8856. _lchild.appendChild(_lspan)
  8857. _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%);"
  8858. _loading.appendChild(_lchild)
  8859. var _box = $$('div', {
  8860. "style": {
  8861. "position": "relative",
  8862. "width": "100%",
  8863. "height": "100%",
  8864. },
  8865. })
  8866. _box.appendChild(_loading)
  8867. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8868. switch (str) {
  8869. case "whiteboard":
  8870. aTool = 1;
  8871. _iframe = $$("iframe", {
  8872. "frameborder": "no",
  8873. "border": "0",
  8874. "scrolling ": "no",
  8875. "style": {
  8876. "cssText": "border:0;width:100%;height:100%"
  8877. },
  8878. "src": "https://beta.iwb.cocorobo.cn/"
  8879. })
  8880. _box.appendChild(_iframe);
  8881. _box.appendChild(_jie);
  8882. _formdiv = new U.UF.UI.form(
  8883. "电子白板",
  8884. _box, {
  8885. "id": "whiteboards" + cid + stage + task + tool,
  8886. "style": {
  8887. "width": "90%",
  8888. "height": "90%",
  8889. "overflow": 'hidden'
  8890. },
  8891. "onresize": function () { }
  8892. }, {
  8893. closecallback: function () { }
  8894. }, {
  8895. "style": {
  8896. "height": "36px"
  8897. }
  8898. }).form; //创建窗体
  8899. _taskbar = {
  8900. "id": str + _formdiv.id,
  8901. "style": {
  8902. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8903. },
  8904. "name": "电子白板",
  8905. "forms": _formdiv,
  8906. "click": function () {
  8907. U.MD.D.I.openApplication(str, obj, info);
  8908. }
  8909. }
  8910. break;
  8911. case "mind":
  8912. aTool = 3;
  8913. _iframe = $$("iframe", {
  8914. "frameborder": "no",
  8915. "border": "0",
  8916. "scrolling ": "no",
  8917. "style": {
  8918. "cssText": "border:0;width:100%;height:100%"
  8919. },
  8920. "src": "/kityminder-editor/dist/index.html"
  8921. });
  8922. _box.appendChild(_iframe);
  8923. _box.appendChild(_jie);
  8924. _formdiv = new U.UF.UI.form(
  8925. "思维导图",
  8926. _box, { //"/jsmind/example/demo.html"
  8927. "id": "minds" + cid + stage + task + tool,
  8928. "style": {
  8929. "width": "90%",
  8930. "height": "90%",
  8931. "overflow": 'hidden'
  8932. },
  8933. "onresize": function () { }
  8934. }, {
  8935. closecallback: function () { }
  8936. }, {
  8937. "style": {
  8938. "height": "36px"
  8939. }
  8940. }).form; //创建窗体
  8941. _taskbar = {
  8942. "id": str + _formdiv.id,
  8943. "style": {
  8944. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8945. },
  8946. "name": "思维导图",
  8947. "forms": _formdiv,
  8948. "click": function () {
  8949. U.MD.D.I.openApplication(str, obj, info);
  8950. }
  8951. }
  8952. break;
  8953. case "doc":
  8954. aTool = 6;
  8955. _iframe = $$("iframe", {
  8956. "frameborder": "no",
  8957. "border": "0",
  8958. "scrolling ": "no",
  8959. "style": {
  8960. "cssText": "border:0;width:100%;height:100%"
  8961. },
  8962. "src": "/Office/Word/WordEditArea.htm"
  8963. })
  8964. _box.appendChild(_iframe);
  8965. _box.appendChild(_jie);
  8966. _formdiv = new U.UF.UI.form(
  8967. "协同文档",
  8968. _box, {
  8969. "id": "docs" + cid + stage + task + tool,
  8970. "style": {
  8971. "width": "90%",
  8972. "height": "90%",
  8973. "overflow": 'hidden'
  8974. },
  8975. "onresize": function () { }
  8976. }, {
  8977. closecallback: function () { }
  8978. }, {
  8979. "style": {
  8980. "height": "36px"
  8981. }
  8982. }).form; //创建窗体
  8983. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8984. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8985. })
  8986. _taskbar = {
  8987. "id": str + _formdiv.id,
  8988. "style": {
  8989. "backgroundImage": "url(/img/icon/doc.png)"
  8990. },
  8991. "name": "协同文档",
  8992. "forms": _formdiv,
  8993. "click": function () {
  8994. U.MD.D.I.openApplication(str, obj, info);
  8995. }
  8996. }
  8997. break;
  8998. }
  8999. const script1 = document.createElement("script");
  9000. script1.type = "text/javascript";
  9001. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9002. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9003. const script2 = document.createElement("script");
  9004. script2.type = "text/javascript";
  9005. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9006. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9007. const script3 = document.createElement("script");
  9008. script3.type = "text/javascript";
  9009. script3.charset = "UTF-8";
  9010. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9011. const script4 = document.createElement("script");
  9012. script4.type = "text/javascript";
  9013. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9014. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9015. if (_iframe) {
  9016. if (str == 'doc') {
  9017. _iframe = _formdiv.querySelector('iframe')
  9018. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9019. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9020. _iframe.contentWindow.document.body.appendChild(script1);
  9021. _iframe.contentWindow.document.body.appendChild(script2);
  9022. // _iframe.contentWindow.document.body.appendChild(script3);
  9023. _iframe.contentWindow.document.body.appendChild(script4);
  9024. })
  9025. if (onloadListener) {
  9026. _iframe.contentDocument.location.reload()
  9027. } else {
  9028. _iframe.contentDocument.location.reload()
  9029. }
  9030. } else if (str == 'mind') {
  9031. _iframe = _formdiv.querySelector('iframe')
  9032. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9033. _iframe.contentWindow.document.body.appendChild(script1);
  9034. _iframe.contentWindow.document.body.appendChild(script2);
  9035. _iframe.contentWindow.document.body.appendChild(script4);
  9036. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9037. })
  9038. if (onloadListener) {
  9039. _iframe.contentDocument.location.reload()
  9040. } else {
  9041. _iframe.contentDocument.location.reload()
  9042. }
  9043. } else {
  9044. _iframe.onload = () => {
  9045. _iframe.contentWindow.document.body.appendChild(script1);
  9046. _iframe.contentWindow.document.body.appendChild(script2);
  9047. // _iframe.contentWindow.document.body.appendChild(script3);
  9048. _iframe.contentWindow.document.body.appendChild(script4);
  9049. };
  9050. }
  9051. _jie.onclick = async () => {
  9052. let text = ''
  9053. if (aTool == 6) {
  9054. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9055. } else if (aTool == 3) {
  9056. text = await U.MD.D.I.getEditorContent(_iframe);
  9057. }
  9058. _loading.style.display = 'flex'
  9059. console.log(_loading);
  9060. var _ajs = _iframe.contentWindow.document.createElement("script");
  9061. _ajs.type = "text/javascript";
  9062. _ajs.innerHTML =
  9063. // 'console.log(' + _loading + ');\n' +
  9064. 'var _js = document.createElement("script");\n' +
  9065. '_js.type="text/javascript";\n' +
  9066. '_js.charset="UTF-8";\n' +
  9067. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9068. "_js.onload = function(){\n" +
  9069. ' var a = document.getElementsByTagName("img")\n' +
  9070. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9071. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9072. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9073. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9074. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9075. "beforeUpload_shishi(file," +
  9076. "'" +
  9077. _userid +
  9078. "'" +
  9079. ", " +
  9080. "'" +
  9081. _cid +
  9082. "'" +
  9083. ", " +
  9084. "'" +
  9085. _stage +
  9086. "'" +
  9087. ", " +
  9088. "'" +
  9089. _task +
  9090. "'" +
  9091. ", " +
  9092. "'" +
  9093. _tool +
  9094. "'" +
  9095. ", " +
  9096. "'" +
  9097. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9098. "'" +
  9099. ", " +
  9100. "'" +
  9101. aTool +
  9102. "'" +
  9103. ", " +
  9104. "`" +
  9105. text +
  9106. "`" +
  9107. ")\n" +
  9108. " });\n" +
  9109. "}\n" +
  9110. "document.head.appendChild(_js);\n";
  9111. _iframe.contentWindow.document.head.appendChild(_ajs);
  9112. }
  9113. }
  9114. //U.MD.D.I.openClick(str);
  9115. //如果有任务栏信息
  9116. // if (_taskbar) {
  9117. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9118. // }
  9119. }
  9120. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9121. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9122. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9123. _userinfo = US.userInfo, //登录用户信息
  9124. _userid = US.userInfo.userid //登录用户id
  9125. let _iframe;
  9126. let _cid = cid,
  9127. _stage = stage,
  9128. _task = task,
  9129. _tool = tool;
  9130. var _jie = $$("div", {
  9131. "style": {
  9132. "position": "absolute",
  9133. "bottom": "50px",
  9134. "right": "50px",
  9135. "zIndex": "9999",
  9136. "backgroundColor": "#2268bc",
  9137. "color": "#fff",
  9138. "padding": "12px 20px",
  9139. "cursor": "pointer",
  9140. "borderRadius": "4px",
  9141. },
  9142. "innerHTML": "上传模板"
  9143. })
  9144. let aTool = ''
  9145. let _loading = document.createElement('div')
  9146. _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;"
  9147. // _loading.id = "";
  9148. let _lchild = document.createElement('div')
  9149. let _limg = document.createElement('img')
  9150. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9151. _limg.style = "width: 26px;margin-right: 10px;"
  9152. _lchild.appendChild(_limg)
  9153. let _lspan = document.createElement('span')
  9154. _lspan.innerHTML = "上传中..."
  9155. _lchild.appendChild(_lspan)
  9156. _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%);"
  9157. _loading.appendChild(_lchild)
  9158. var _box = $$('div', {
  9159. "style": {
  9160. "position": "relative",
  9161. "width": "100%",
  9162. "height": "100%",
  9163. },
  9164. })
  9165. _box.appendChild(_loading)
  9166. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9167. switch (str) {
  9168. case "whiteboard":
  9169. aTool = 1;
  9170. _iframe = $$("iframe", {
  9171. "frameborder": "no",
  9172. "border": "0",
  9173. "scrolling ": "no",
  9174. "style": {
  9175. "cssText": "border:0;width:100%;height:100%"
  9176. },
  9177. "src": "https://beta.iwb.cocorobo.cn/"
  9178. })
  9179. _box.appendChild(_iframe);
  9180. _box.appendChild(_jie);
  9181. _formdiv = new U.UF.UI.form(
  9182. "电子白板",
  9183. _box, {
  9184. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9185. "style": {
  9186. "width": "90%",
  9187. "height": "90%",
  9188. "overflow": 'hidden'
  9189. },
  9190. "onresize": function () { }
  9191. }, {
  9192. closecallback: function () { }
  9193. }, {
  9194. "style": {
  9195. "height": "36px"
  9196. }
  9197. }).form; //创建窗体
  9198. _taskbar = {
  9199. "id": str + _formdiv.id,
  9200. "style": {
  9201. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9202. },
  9203. "name": "电子白板",
  9204. "forms": _formdiv,
  9205. "click": function () {
  9206. U.MD.D.I.openApplication(str, obj, info);
  9207. }
  9208. }
  9209. break;
  9210. case "mind":
  9211. aTool = 3;
  9212. _iframe = $$("iframe", {
  9213. "frameborder": "no",
  9214. "border": "0",
  9215. "scrolling ": "no",
  9216. "style": {
  9217. "cssText": "border:0;width:100%;height:100%"
  9218. },
  9219. "src": "/kityminder-editor/dist/index.html"
  9220. });
  9221. _box.appendChild(_iframe);
  9222. _box.appendChild(_jie);
  9223. _formdiv = new U.UF.UI.form(
  9224. "思维导图",
  9225. _box, { //"/jsmind/example/demo.html"
  9226. "id": "minds_Yu" + cid + stage + task + tool,
  9227. "style": {
  9228. "width": "90%",
  9229. "height": "90%",
  9230. "overflow": 'hidden'
  9231. },
  9232. "onresize": function () { }
  9233. }, {
  9234. closecallback: function () { }
  9235. }, {
  9236. "style": {
  9237. "height": "36px"
  9238. }
  9239. }).form; //创建窗体
  9240. _taskbar = {
  9241. "id": str + _formdiv.id,
  9242. "style": {
  9243. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9244. },
  9245. "name": "思维导图",
  9246. "forms": _formdiv,
  9247. "click": function () {
  9248. U.MD.D.I.openApplication(str, obj, info);
  9249. }
  9250. }
  9251. break;
  9252. case "doc":
  9253. aTool = 6;
  9254. _iframe = $$("iframe", {
  9255. "frameborder": "no",
  9256. "border": "0",
  9257. "scrolling ": "no",
  9258. "style": {
  9259. "cssText": "border:0;width:100%;height:100%"
  9260. },
  9261. "src": "/Office/Word/WordEditArea.htm"
  9262. })
  9263. _box.appendChild(_iframe);
  9264. _box.appendChild(_jie);
  9265. _formdiv = new U.UF.UI.form(
  9266. "协同文档",
  9267. _box, {
  9268. "id": "docs_Yu" + cid + stage + task + tool,
  9269. "style": {
  9270. "width": "90%",
  9271. "height": "90%",
  9272. "overflow": 'hidden'
  9273. },
  9274. "onresize": function () { }
  9275. }, {
  9276. closecallback: function () { }
  9277. }, {
  9278. "style": {
  9279. "height": "36px"
  9280. }
  9281. }).form; //创建窗体
  9282. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9283. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9284. })
  9285. _taskbar = {
  9286. "id": str + _formdiv.id,
  9287. "style": {
  9288. "backgroundImage": "url(/img/icon/doc.png)"
  9289. },
  9290. "name": "协同文档",
  9291. "forms": _formdiv,
  9292. "click": function () {
  9293. U.MD.D.I.openApplication(str, obj, info);
  9294. }
  9295. }
  9296. break;
  9297. case "CocoPi":
  9298. aTool = 57;
  9299. _iframe = $$("iframe", {
  9300. "allowpaymentrequest": "allowpaymentrequest",
  9301. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9302. "webkitallowfullscreen": "",
  9303. "mozallowfullscreen": "",
  9304. "frameborder": "no",
  9305. "border": "0",
  9306. "scrolling ": "no",
  9307. "style": {
  9308. "cssText": "border:0;width:100%;height:100%"
  9309. },
  9310. "src": "https://pi.cocorobo.cn/"
  9311. })
  9312. _box.appendChild(_iframe);
  9313. _box.appendChild(_jie);
  9314. _formdiv = new U.UF.UI.form(
  9315. "CocoPi",
  9316. _box, {
  9317. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9318. "style": {
  9319. "width": "90%",
  9320. "height": "90%",
  9321. "overflow": 'hidden'
  9322. },
  9323. "onresize": function () { }
  9324. }, {
  9325. closecallback: function () { }
  9326. }, {
  9327. "style": {
  9328. "height": "36px"
  9329. }
  9330. }).form; //创建窗体
  9331. _taskbar = {
  9332. "id": str + _formdiv.id,
  9333. "style": {
  9334. "backgroundImage": "url(/img/icon/cocopi.png)"
  9335. },
  9336. "name": "CocoPi",
  9337. "forms": _formdiv,
  9338. "click": function () {
  9339. U.MD.D.I.openApplication(str, obj, info);
  9340. }
  9341. }
  9342. break;
  9343. }
  9344. if (_iframe) {
  9345. if (str == 'doc') {
  9346. _iframe = _formdiv.querySelector('iframe')
  9347. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9348. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9349. })
  9350. if (onloadListener) {
  9351. _iframe.contentDocument.location.reload()
  9352. } else {
  9353. _iframe.contentDocument.location.reload()
  9354. }
  9355. } else if (str == 'mind') {
  9356. _iframe = _formdiv.querySelector('iframe')
  9357. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9358. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9359. })
  9360. if (onloadListener) {
  9361. _iframe.contentDocument.location.reload()
  9362. } else {
  9363. _iframe.contentDocument.location.reload()
  9364. }
  9365. } else if (str == 'whiteboard') {
  9366. _iframe = _formdiv.querySelector('iframe')
  9367. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9368. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9369. })
  9370. // if (onloadListener) {
  9371. // try {
  9372. // _iframe.src += "?cocorobo="+new Date().getTime()
  9373. // _iframe.contentWindow.document.location.reload()
  9374. // } catch (error) {
  9375. // }
  9376. // } else {
  9377. // _iframe.contentDocument.location.reload()
  9378. // }
  9379. } else if (str == 'CocoPi') {
  9380. _iframe = _formdiv.querySelector('iframe')
  9381. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9382. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9383. })
  9384. if (onloadListener) {
  9385. _iframe.contentDocument.location.reload()
  9386. } else {
  9387. _iframe.contentDocument.location.reload()
  9388. }
  9389. } else {
  9390. _iframe.onload = () => { };
  9391. }
  9392. _jie.onclick = async () => {
  9393. let text = ''
  9394. let type = '2'
  9395. if (aTool == 1) {
  9396. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9397. type = '3'
  9398. } else if (aTool == 6) {
  9399. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9400. type = '1'
  9401. } else if (aTool == 3) {
  9402. text = await U.MD.D.I.getEditorContent(_iframe);
  9403. type = '2'
  9404. } else if (aTool == 57) {
  9405. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9406. type = '4'
  9407. }
  9408. _loading.style.display = 'flex'
  9409. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9410. }
  9411. }
  9412. //U.MD.D.I.openClick(str);
  9413. //如果有任务栏信息
  9414. // if (_taskbar) {
  9415. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9416. // }
  9417. }
  9418. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9419. var xmlhttp;
  9420. var Mac, Sn, DeviceId
  9421. if (window.XMLHttpRequest) {
  9422. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9423. xmlhttp = new XMLHttpRequest();
  9424. } else {
  9425. // IE6, IE5 浏览器执行代码
  9426. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9427. }
  9428. xmlhttp.onreadystatechange = function () {
  9429. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9430. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9431. // resolve(res.value[0][0].text);
  9432. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9433. }
  9434. }
  9435. }
  9436. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9437. xmlhttp.send();
  9438. }
  9439. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9440. var xmlhttp;
  9441. var Mac, Sn, DeviceId
  9442. if (window.XMLHttpRequest) {
  9443. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9444. xmlhttp = new XMLHttpRequest();
  9445. } else {
  9446. // IE6, IE5 浏览器执行代码
  9447. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9448. }
  9449. xmlhttp.onreadystatechange = function () {
  9450. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9451. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9452. // resolve(res.value[0][0].text);
  9453. if (type == '2') {
  9454. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9455. } else if (type == '3') {
  9456. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9457. } else if (type == '4') {
  9458. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9459. }
  9460. } else {
  9461. if (type == '2') {
  9462. iframe.contentWindow.editor.minder.importData('json', '')
  9463. } else if (type == '3') {
  9464. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9465. } else if (type == '4') {
  9466. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9467. }
  9468. }
  9469. }
  9470. }
  9471. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9472. xmlhttp.send();
  9473. }
  9474. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9475. var xmlhttp;
  9476. var Mac, Sn, DeviceId
  9477. if (window.XMLHttpRequest) {
  9478. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9479. xmlhttp = new XMLHttpRequest();
  9480. } else {
  9481. // IE6, IE5 浏览器执行代码
  9482. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9483. }
  9484. xmlhttp.onreadystatechange = function () {
  9485. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9486. if (xmlhttp.response) {
  9487. // resolve(res.value[0][0].text);
  9488. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9489. // $(fileInput).val('');
  9490. // });
  9491. span.innerHTML = '上传成功'
  9492. setTimeout(() => {
  9493. loading.style.display = 'none'
  9494. }, 1000);
  9495. }
  9496. }
  9497. }
  9498. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9499. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9500. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9501. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9502. // 设置请求头,表示请求体的编码格式
  9503. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9504. // 设置请求体,使用url-encoded格式的数据
  9505. }
  9506. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9507. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9508. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9509. _userinfo = US.userInfo, //登录用户信息
  9510. _userid = US.userInfo.userid //登录用户id
  9511. let _iframe;
  9512. let _cid = cid,
  9513. _stage = stage,
  9514. _task = task,
  9515. _tool = tool;
  9516. var _jie = $$("div", {
  9517. "style": {
  9518. "position": "absolute",
  9519. "bottom": "50px",
  9520. "right": "50px",
  9521. "zIndex": "9999",
  9522. "backgroundColor": "#2268bc",
  9523. "color": "#fff",
  9524. "padding": "12px 20px",
  9525. "cursor": "pointer",
  9526. "borderRadius": "4px",
  9527. },
  9528. "innerHTML": "提交作业"
  9529. })
  9530. let aTool = ''
  9531. let _loading = document.createElement('div')
  9532. _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;"
  9533. // _loading.id = "";
  9534. let _lchild = document.createElement('div')
  9535. let _limg = document.createElement('img')
  9536. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9537. _limg.style = "width: 26px;margin-right: 10px;"
  9538. _lchild.appendChild(_limg)
  9539. let _lspan = document.createElement('span')
  9540. _lspan.innerHTML = "上传中..."
  9541. _lchild.appendChild(_lspan)
  9542. _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%);"
  9543. _loading.appendChild(_lchild)
  9544. var _box = $$('div', {
  9545. "style": {
  9546. "position": "relative",
  9547. "width": "100%",
  9548. "height": "100%",
  9549. },
  9550. })
  9551. _box.appendChild(_loading)
  9552. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9553. switch (str) {
  9554. case "CocoPi":
  9555. aTool = 57;
  9556. _iframe = $$("iframe", {
  9557. "allowpaymentrequest": "allowpaymentrequest",
  9558. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9559. "webkitallowfullscreen": "",
  9560. "mozallowfullscreen": "",
  9561. "frameborder": "no",
  9562. "border": "0",
  9563. "scrolling ": "no",
  9564. "style": {
  9565. "cssText": "border:0;width:100%;height:100%"
  9566. },
  9567. "src": "https://pi.cocorobo.cn/"
  9568. })
  9569. _box.appendChild(_iframe);
  9570. _box.appendChild(_jie);
  9571. _formdiv = new U.UF.UI.form(
  9572. "CocoPi",
  9573. _box, {
  9574. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9575. "style": {
  9576. "width": "90%",
  9577. "height": "90%",
  9578. "overflow": 'hidden'
  9579. },
  9580. "onresize": function () { }
  9581. }, {
  9582. closecallback: function () { }
  9583. }, {
  9584. "style": {
  9585. "height": "36px"
  9586. }
  9587. }).form; //创建窗体
  9588. _taskbar = {
  9589. "id": str + _formdiv.id,
  9590. "style": {
  9591. "backgroundImage": "url(/img/icon/cocopi.png)"
  9592. },
  9593. "name": "CocoPi",
  9594. "forms": _formdiv,
  9595. "click": function () {
  9596. U.MD.D.I.openApplication(str, obj, info);
  9597. }
  9598. }
  9599. break;
  9600. }
  9601. if (_iframe) {
  9602. if (str == 'CocoPi') {
  9603. _iframe = _formdiv.querySelector('iframe')
  9604. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9605. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9606. })
  9607. if (onloadListener) {
  9608. _iframe.contentDocument.location.reload()
  9609. } else {
  9610. _iframe.contentDocument.location.reload()
  9611. }
  9612. }
  9613. _jie.onclick = async () => {
  9614. let text = ''
  9615. if (aTool == 57) {
  9616. text = _iframe.contentWindow.getLoadXmlStr()
  9617. }
  9618. _loading.style.display = 'flex'
  9619. console.log(_loading);
  9620. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9621. _loading.style.display = 'none'
  9622. let _div = document.createElement('div')
  9623. _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;"
  9624. let _inner = document.createElement('div')
  9625. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9626. _inner.innerHTML = "上传成功"
  9627. _div.appendChild(_inner)
  9628. _iframe.contentWindow.window.document.body.appendChild(_div)
  9629. _div.onclick = () => {
  9630. _iframe.contentWindow.window.document.body.removeChild(_div)
  9631. }
  9632. setTimeout(() => {
  9633. _iframe.contentWindow.window.document.body.removeChild(_div)
  9634. }, 1000);
  9635. }, [], { "type": "POST", "withCredentials": true });
  9636. }
  9637. }
  9638. }
  9639. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9640. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9641. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9642. _userid = student.userid, //登录用户id
  9643. _username = student.student //用户名字
  9644. let _iframe;
  9645. let _cid = cid,
  9646. _stage = stage,
  9647. _task = task,
  9648. _tool = tool;
  9649. var _jie = $$("div", {
  9650. "style": {
  9651. "position": "absolute",
  9652. "bottom": "50px",
  9653. "right": "50px",
  9654. "zIndex": "9999",
  9655. "backgroundColor": "#2268bc",
  9656. "color": "#fff",
  9657. "padding": "12px 20px",
  9658. "cursor": "pointer",
  9659. "borderRadius": "4px",
  9660. },
  9661. "innerHTML": "提交作业"
  9662. })
  9663. let aTool = ''
  9664. let _loading = document.createElement('div')
  9665. _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;"
  9666. // _loading.id = "";
  9667. let _lchild = document.createElement('div')
  9668. let _limg = document.createElement('img')
  9669. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9670. _limg.style = "width: 26px;margin-right: 10px;"
  9671. _lchild.appendChild(_limg)
  9672. let _lspan = document.createElement('span')
  9673. _lspan.innerHTML = "上传中..."
  9674. _lchild.appendChild(_lspan)
  9675. _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%);"
  9676. _loading.appendChild(_lchild)
  9677. var _box = $$('div', {
  9678. "style": {
  9679. "position": "relative",
  9680. "width": "100%",
  9681. "height": "100%",
  9682. },
  9683. })
  9684. _box.appendChild(_loading)
  9685. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9686. switch (str) {
  9687. case "CocoPi":
  9688. aTool = 57;
  9689. _iframe = $$("iframe", {
  9690. "allowpaymentrequest": "allowpaymentrequest",
  9691. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9692. "webkitallowfullscreen": "",
  9693. "mozallowfullscreen": "",
  9694. "frameborder": "no",
  9695. "border": "0",
  9696. "scrolling ": "no",
  9697. "style": {
  9698. "cssText": "border:0;width:100%;height:100%"
  9699. },
  9700. "src": "https://pi.cocorobo.cn/"
  9701. })
  9702. _box.appendChild(_iframe);
  9703. _box.appendChild(_jie);
  9704. _formdiv = new U.UF.UI.form(
  9705. "CocoPi-" + _username,
  9706. _box, {
  9707. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9708. "style": {
  9709. "width": "90%",
  9710. "height": "90%",
  9711. "overflow": 'hidden'
  9712. },
  9713. "onresize": function () { }
  9714. }, {
  9715. closecallback: function () { }
  9716. }, {
  9717. "style": {
  9718. "height": "36px"
  9719. }
  9720. }).form; //创建窗体
  9721. _taskbar = {
  9722. "id": str + _formdiv.id,
  9723. "style": {
  9724. "backgroundImage": "url(/img/icon/cocopi.png)"
  9725. },
  9726. "name": "CocoPi",
  9727. "forms": _formdiv,
  9728. "click": function () {
  9729. U.MD.D.I.openApplication(str, obj, info);
  9730. }
  9731. }
  9732. break;
  9733. }
  9734. if (_iframe) {
  9735. if (str == 'CocoPi') {
  9736. _iframe = _formdiv.querySelector('iframe')
  9737. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9738. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9739. })
  9740. if (onloadListener) {
  9741. _iframe.contentDocument.location.reload()
  9742. } else {
  9743. _iframe.contentDocument.location.reload()
  9744. }
  9745. }
  9746. _jie.onclick = async () => {
  9747. let text = ''
  9748. if (aTool == 57) {
  9749. text = _iframe.contentWindow.getLoadXmlStr()
  9750. }
  9751. _loading.style.display = 'flex'
  9752. console.log(_loading);
  9753. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9754. _loading.style.display = 'none'
  9755. let _div = document.createElement('div')
  9756. _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;"
  9757. let _inner = document.createElement('div')
  9758. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9759. _inner.innerHTML = "上传成功"
  9760. _div.appendChild(_inner)
  9761. _iframe.contentWindow.window.document.body.appendChild(_div)
  9762. _div.onclick = () => {
  9763. _iframe.contentWindow.window.document.body.removeChild(_div)
  9764. }
  9765. setTimeout(() => {
  9766. _iframe.contentWindow.window.document.body.removeChild(_div)
  9767. }, 1000);
  9768. }, [], { "type": "POST", "withCredentials": true });
  9769. }
  9770. }
  9771. }
  9772. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9773. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9774. if (res.value[0].length > 0) {
  9775. if (atool == 57) {
  9776. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9777. }
  9778. } else {
  9779. if (atool == 57) {
  9780. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9781. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9782. }
  9783. }
  9784. }, [], { "type": "POST", "withCredentials": true });
  9785. }