DeskTop.js 658 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548
  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": "teacher", "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": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  683. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  684. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  685. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  686. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  687. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  688. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  689. ];
  690. //hk
  691. U.MD.D.I.hkStudentDeskIcon = [
  692. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  695. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  696. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  697. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  698. ];
  699. //hk
  700. U.MD.D.I.hkaceteacherDeskIcon = [
  701. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  702. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  705. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  706. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  707. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  708. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  709. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  710. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  711. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  712. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  713. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  714. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  717. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  718. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  719. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  720. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  721. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  722. ];
  723. //hk
  724. U.MD.D.I.hkaceStudentDeskIcon = [
  725. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  726. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  727. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  728. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  729. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  730. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  731. ];
  732. //香海正覺蓮社佛教正覺中學
  733. U.MD.D.I.hkZJLSteacherDeskIcon = [
  734. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  735. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  737. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  738. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  740. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  741. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  742. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  743. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  744. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  745. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  746. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  747. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  748. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  749. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  750. ];
  751. //香海正覺蓮社佛教正覺中學
  752. U.MD.D.I.hkZJLSStudentDeskIcon = [
  753. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  754. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  755. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  756. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  757. ];
  758. //云海
  759. U.MD.D.I.yunhaiTeacherDeskIcon = [
  760. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  761. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  764. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  765. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  766. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  767. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  768. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  769. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  770. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  771. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  772. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  773. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  774. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  775. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  776. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  777. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  778. ];
  779. //福田
  780. U.MD.D.I.heyuanTeacherDeskIcon = [
  781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  783. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  785. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  786. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  787. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  788. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  789. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  790. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  791. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  792. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  793. ];
  794. //福田
  795. U.MD.D.I.heyuanAdminDeskIcon = [
  796. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  797. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  798. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  799. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  800. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  801. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  802. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  803. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  804. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  805. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  806. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  807. ];
  808. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  809. U.MD.D.I.szherTeacherDeskIcon = [
  810. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  811. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  812. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  813. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  814. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  815. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  817. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  818. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  819. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  820. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  821. ];
  822. //dsei
  823. U.MD.D.I.dseiTeacherDeskIcon = [
  824. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  825. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  826. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  827. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  828. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  829. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  830. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  831. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  832. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  833. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  834. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  835. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  836. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  837. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  838. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  839. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  840. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  841. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  842. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  843. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  844. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  845. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  846. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  847. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  848. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  849. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  850. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  851. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  852. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  853. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  854. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  855. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  856. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  857. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  858. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  859. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  860. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  861. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  862. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  863. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  864. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  865. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  866. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  867. ];
  868. //dsei
  869. U.MD.D.I.dseiAdminDeskIcon = [
  870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  872. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  873. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  876. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  877. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  878. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  879. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  881. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  882. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  883. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  884. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  885. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  886. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  887. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  888. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  889. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  890. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  891. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  892. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  893. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  894. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  895. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  896. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  897. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  898. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  899. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  900. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  901. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  902. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  903. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  904. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  905. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  906. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  907. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  908. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  909. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  910. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  911. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  912. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  913. ];
  914. //dsei
  915. U.MD.D.I.dseiStudentDeskIcon = [
  916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  917. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  918. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  919. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  920. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  921. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  922. ];
  923. //未来教育基地
  924. U.MD.D.I.szjkyTeacherDeskIcon = [
  925. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  926. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  927. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  928. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  929. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  930. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  931. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  932. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  933. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  934. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  935. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  936. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  937. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  938. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  939. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  941. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  942. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  943. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  944. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  945. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  946. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  947. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  948. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  949. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  950. ];
  951. //未来教育基地
  952. U.MD.D.I.szjkyAdminDeskIcon = [
  953. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  954. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  955. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  956. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  957. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  958. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  959. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  960. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  961. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  962. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  963. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  964. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  965. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  966. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  967. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  969. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  970. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  971. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  972. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  973. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  974. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  975. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  976. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  977. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  978. ];
  979. //未来教育基地
  980. U.MD.D.I.szjkyStudentDeskIcon = [
  981. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  982. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  983. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  984. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  985. ];
  986. //成华教育局
  987. U.MD.D.I.chjyjTeacherDeskIcon = [
  988. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  989. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  990. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  991. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  992. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  993. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  994. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  995. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  996. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  997. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  998. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  999. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1000. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1001. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1002. ];
  1003. //成华教育局chjyj
  1004. U.MD.D.I.chjyjAdminDeskIcon = [
  1005. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1006. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1007. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1008. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1009. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1010. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1011. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1012. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1013. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1014. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1015. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1016. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1017. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1018. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1019. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1020. ];
  1021. //成华教育局chjyj
  1022. U.MD.D.I.chjyjStudentDeskIcon = [
  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.tpcStudentDeskIcon = [
  1030. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1031. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1032. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1033. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1034. ];
  1035. //tpc
  1036. U.MD.D.I.tpcTeacherDeskIcon = [
  1037. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1038. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1039. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1040. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1041. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1042. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1043. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1044. ];
  1045. //tpc
  1046. U.MD.D.I.tpcAdminDeskIcon = [
  1047. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1048. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1049. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1050. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1051. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1052. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1053. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1054. ];
  1055. //THU-IOE
  1056. U.MD.D.I.thuioeTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1060. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1064. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1065. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1066. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1067. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1068. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1069. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1070. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1071. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1072. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1073. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1074. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1075. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1076. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1077. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1078. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1079. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1080. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1081. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1082. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1083. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1084. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1085. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1086. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1087. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1088. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1089. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1090. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1091. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1092. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1093. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1094. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1095. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1096. ];
  1097. //THU-IOE
  1098. U.MD.D.I.thuioeStudentDeskIcon = [
  1099. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1100. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1101. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1102. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1103. ];
  1104. //jccssyl
  1105. U.MD.D.I.jccssylTeacherDeskIcon = [
  1106. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1107. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1108. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1109. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1110. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1111. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1112. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1113. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1114. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1115. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1116. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1117. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1118. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1119. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1120. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1121. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1122. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1123. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1124. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1125. ];
  1126. //jccssyl
  1127. U.MD.D.I.jccssylStudentDeskIcon = [
  1128. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1129. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1130. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1131. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1132. ];
  1133. //cale
  1134. U.MD.D.I.caleTeacherDeskIcon = [
  1135. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1136. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1137. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1138. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1139. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1140. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1141. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1142. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1143. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1144. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1145. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1146. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1147. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1148. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1149. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1151. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1153. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1154. ];
  1155. //cale
  1156. U.MD.D.I.caleStudentDeskIcon = [
  1157. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1158. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1159. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1160. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1161. ];
  1162. //lqwmsgzs
  1163. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1164. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1165. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1166. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1167. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1168. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1169. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1170. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1171. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1172. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1173. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1174. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1175. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1176. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1177. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1178. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1179. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1180. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1181. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1182. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1183. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1184. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1185. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1186. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1187. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1188. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1189. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1190. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1191. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1192. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1193. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1194. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1195. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1196. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1197. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1198. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1199. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1200. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1201. ];
  1202. //lqwmsgzs
  1203. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1204. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1205. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1206. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1207. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1208. ];
  1209. //盐田区幼儿园
  1210. U.MD.D.I.ytyTeacherDeskIcon = [
  1211. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1212. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1214. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1215. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1216. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1217. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1218. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1219. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1220. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1221. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1222. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1223. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1224. ];
  1225. //盐田区幼儿园
  1226. U.MD.D.I.ytyStudentDeskIcon = [
  1227. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1228. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1229. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1230. ];
  1231. //scnuai
  1232. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1233. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1234. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1235. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1236. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1237. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1240. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1241. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1242. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1243. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1244. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1245. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1246. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1247. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1248. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1249. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1250. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1251. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1252. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1253. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1254. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1255. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1256. ];
  1257. //scnuai
  1258. U.MD.D.I.scnuaiAdminDeskIcon = [
  1259. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1260. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1261. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1262. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1263. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1264. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1265. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1266. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1267. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1268. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1271. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1272. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1273. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1274. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1275. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1276. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1277. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1278. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1279. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1280. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1281. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1282. ];
  1283. //scnuai
  1284. U.MD.D.I.scnuaiStudentDeskIcon = [
  1285. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1289. ];
  1290. //cocobiz
  1291. U.MD.D.I.cocobizteacherDeskIcon = [
  1292. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1293. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1294. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1295. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1296. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1297. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1298. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1299. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1300. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1301. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1302. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1303. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1304. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1305. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1306. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1307. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1308. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1309. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1310. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1311. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1312. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1313. ];
  1314. //cocobiz
  1315. U.MD.D.I.cocobizStudentDeskIcon = [
  1316. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1317. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1318. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1319. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1320. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1321. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1322. ];
  1323. //xxzjky
  1324. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1325. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1326. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1327. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1328. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1329. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1330. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1331. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1332. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1333. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1334. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1335. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1336. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1337. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1338. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1339. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1341. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1342. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1344. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1345. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1346. ];
  1347. //xxzjky
  1348. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1349. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1352. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1353. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1354. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1355. ];
  1356. //nsfx
  1357. U.MD.D.I.nsfxTeacherDeskIcon = [
  1358. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1359. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1360. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1361. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1362. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1363. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1364. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1365. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1366. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1367. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1368. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1369. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1370. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1371. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1372. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1373. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1374. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxStudentDeskIcon = [
  1378. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1379. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1380. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1381. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1382. ];
  1383. //stia
  1384. U.MD.D.I.stiaTeacherDeskIcon = [
  1385. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1386. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1387. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1388. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1394. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1395. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1396. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1397. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1398. ];
  1399. //stia
  1400. U.MD.D.I.stiaStudentDeskIcon = [
  1401. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1404. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1405. ];
  1406. //szdjg
  1407. U.MD.D.I.szdjgTeacherDeskIcon = [
  1408. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1409. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1410. ];
  1411. //szdjg
  1412. U.MD.D.I.szdjgStudentDeskIcon = [
  1413. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1414. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1415. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1416. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1417. ];
  1418. //010607
  1419. U.MD.D.I.x010607TeacherDeskIcon = [
  1420. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1421. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1423. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1424. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1431. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1432. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1433. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1434. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1435. ];
  1436. //010607
  1437. U.MD.D.I.x010607StudentDeskIcon = [
  1438. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1440. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. ];
  1443. //010608
  1444. U.MD.D.I.x010608TeacherDeskIcon = [
  1445. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1446. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1447. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1448. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1449. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1450. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1451. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1452. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1455. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1456. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1457. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1458. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1459. ];
  1460. //010608
  1461. U.MD.D.I.x010608StudentDeskIcon = [
  1462. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1465. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. ];
  1467. //xhly
  1468. U.MD.D.I.xhlyTeacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. ];
  1471. //010608
  1472. U.MD.D.I.xhlyStudentDeskIcon = [
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. ];
  1475. //北师大
  1476. U.MD.D.I.BSDNSteacherDeskIcon = [
  1477. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1478. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1480. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1481. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1482. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1483. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1484. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1485. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1486. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1487. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1488. ];
  1489. //北师大
  1490. U.MD.D.I.BSDNSstudentDeskIcon = [
  1491. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1493. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. ];
  1496. //CUHK_EDU
  1497. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1498. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1499. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1500. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1501. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1502. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1503. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1504. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1505. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1506. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1507. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1508. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1509. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1512. ];
  1513. //CUHK_EDU
  1514. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1515. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1516. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1517. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1518. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1519. ];
  1520. //010503
  1521. U.MD.D.I.x010503TeacherDeskIcon = [
  1522. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1523. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1525. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1526. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1527. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1531. ];
  1532. //010503
  1533. U.MD.D.I.x010503StudentDeskIcon = [
  1534. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1535. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1536. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1537. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1538. ];
  1539. //SPROUT Lab
  1540. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1541. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1542. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1543. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1544. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1545. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1546. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1547. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1548. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1549. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1550. ];
  1551. //SPROUT Lab
  1552. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1553. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1556. ];
  1557. //010204
  1558. U.MD.D.I.x010204TeacherDeskIcon = [
  1559. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1560. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1561. ];
  1562. //010204
  1563. U.MD.D.I.x010204StudentDeskIcon = [
  1564. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1565. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1566. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1567. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //trail
  1570. U.MD.D.I.trailTeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. ];
  1574. //trail
  1575. U.MD.D.I.trailStudentDeskIcon = [
  1576. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. ];
  1581. //010504
  1582. U.MD.D.I.x010504TeacherDeskIcon = [
  1583. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1584. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1586. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1587. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1588. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1589. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1590. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1591. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1593. ];
  1594. //010504
  1595. U.MD.D.I.x010504StudentDeskIcon = [
  1596. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1597. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1600. ];
  1601. //SCNUET
  1602. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1603. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1604. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1608. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1609. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1611. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1612. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1613. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1614. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1615. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1616. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1617. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1623. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1626. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1627. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1628. ];
  1629. //SCNUET
  1630. U.MD.D.I.SCNUETAdminDeskIcon = [
  1631. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1632. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1633. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1634. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1635. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1636. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1637. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1638. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1639. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1640. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1641. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1642. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1643. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1644. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1645. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1648. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1649. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1650. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1651. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1652. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1653. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1654. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1655. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1656. ];
  1657. //SCNUET
  1658. U.MD.D.I.SCNUETStudentDeskIcon = [
  1659. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1660. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1661. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. ];
  1664. //x020201
  1665. U.MD.D.I.x020201TeacherDeskIcon = [
  1666. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1667. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1669. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1670. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1671. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1672. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1673. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1674. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1675. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1676. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1677. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1678. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1679. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1680. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1681. ];
  1682. //x020201
  1683. U.MD.D.I.x020201AdminDeskIcon = [
  1684. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1685. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1686. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1687. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1688. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1689. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1690. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1691. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1692. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1694. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1695. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1696. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1697. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1698. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1699. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1700. ];
  1701. //020201
  1702. U.MD.D.I.x020201StudentDeskIcon = [
  1703. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1704. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1705. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1706. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1707. ];
  1708. //010611
  1709. U.MD.D.I.x010611TeacherDeskIcon = [
  1710. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1711. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1712. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1713. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1714. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1717. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1718. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1719. ];
  1720. //010611
  1721. U.MD.D.I.x010611StudentDeskIcon = [
  1722. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1724. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1725. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1726. ];
  1727. //tianyuan
  1728. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1729. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1730. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1731. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1732. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1733. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1734. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1735. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1738. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1739. ];
  1740. //010611
  1741. U.MD.D.I.tianyuanStudentDeskIcon = [
  1742. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1743. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1744. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1746. ];
  1747. //#region 桌面初始化a
  1748. /**
  1749. * 初始化桌面的起始函数
  1750. *
  1751. */
  1752. U.MD.D.I.init = function () {
  1753. if ($("#U_MD_D_K")[0]) {
  1754. //初始化桌面图标
  1755. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1756. // var clickUrl = ':12588/requestIp.php';
  1757. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1758. // U.MD.D.I.Ip = data;
  1759. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1760. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1761. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1762. // })
  1763. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1764. // })
  1765. }
  1766. }
  1767. /**
  1768. * 模式切换
  1769. *
  1770. */
  1771. U.MD.D.I.ModeCheck = function (type) {
  1772. if (US.Config.type == type) {
  1773. return
  1774. }
  1775. US.Config.type = type
  1776. $('.U_PBL_Check .active')[0].className = ''
  1777. if (type == 1) {
  1778. $('.U_PBL_Check div')[0].className = 'active'
  1779. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1780. } else {
  1781. $('.U_PBL_Check div')[1].className = 'active'
  1782. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1783. }
  1784. //初始化桌面图标
  1785. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1786. if (type == 2) {
  1787. U.MD.D.I.openApplication("project")
  1788. }
  1789. }
  1790. /**
  1791. * 隐藏任务栏
  1792. *
  1793. * @param {element} 桌面元素
  1794. */
  1795. U.MD.D.I.hiddenTaskbar = function (el) {
  1796. //任务栏位置变小
  1797. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1798. //桌面的位置变大
  1799. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1800. }
  1801. /**
  1802. * 隐藏任务栏
  1803. *
  1804. * @param {element} 桌面元素
  1805. */
  1806. U.MD.D.I.hiddenTaskbarout = function (el) {
  1807. //任务栏位置变小
  1808. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1809. //任务栏位置变化
  1810. U.selectEl(el).css({ "bottom": "-60px" });
  1811. //桌面的位置变大
  1812. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1813. }
  1814. }
  1815. /**
  1816. * 初始化打印桌面图标
  1817. *
  1818. * @param {element} 桌面元素
  1819. */
  1820. U.MD.D.I.initDesktopIcons = function (el, type) {
  1821. var i, //用于循环
  1822. _content, //桌面图标元素
  1823. _iconcontent, //桌面图标元素
  1824. _frag = $$("frag"), //定义一个碎片元素
  1825. _type = US.userInfo.type,
  1826. _org = US.userInfo.org,
  1827. _oid = US.userInfo.organizeid,
  1828. _role = US.userInfo.role,
  1829. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1830. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1831. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1832. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1833. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1834. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1835. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1836. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1837. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1838. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1839. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1840. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1841. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1842. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1843. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1844. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1845. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1846. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1847. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1848. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1849. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1850. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1851. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1852. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1853. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1854. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1855. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1856. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1857. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1858. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1859. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1860. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1861. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1862. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1863. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1864. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1865. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1866. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1867. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1868. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1869. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1870. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1871. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1872. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1873. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1874. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1875. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1876. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1877. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1878. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1879. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1880. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1881. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1882. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1883. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1884. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1885. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1886. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1887. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1888. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1889. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1890. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1891. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1892. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1893. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1894. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1895. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1896. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1897. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1898. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1899. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1900. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1901. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1902. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1903. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1904. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1905. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1906. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1907. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1908. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1909. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1910. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1911. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1912. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1913. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1914. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1915. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1916. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1917. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1918. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1919. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1920. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1921. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1922. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1923. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1924. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1925. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1926. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1927. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1928. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1929. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1930. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1931. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1932. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1933. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1934. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1935. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1936. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1937. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1938. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1939. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1940. 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','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1941. 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'];
  1942. //清楚桌面图标
  1943. el.innerHTML = "";
  1944. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1945. _teacherDesktopIconInfo.push(
  1946. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1947. { "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)" } },
  1948. )
  1949. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1950. }
  1951. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1952. _teacherDesktopIconInfo.push(
  1953. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1954. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1955. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1956. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1957. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1958. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1959. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1960. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1961. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1962. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1963. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1964. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1965. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1966. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1967. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1968. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1969. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1970. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. )
  1972. }
  1973. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1974. _teacherDesktopIconInfo.push(
  1975. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1976. )
  1977. }
  1978. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1979. // _teacherDesktopIconInfo.push(
  1980. // )
  1981. // }
  1982. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1983. _teacherDesktopIconInfo.push(
  1984. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1985. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1986. )
  1987. }
  1988. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1989. _teacherDesktopIconInfo.push(
  1990. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1991. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1993. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1994. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1995. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1996. )
  1997. _studentDesktopIconInfo.push(
  1998. )
  1999. }
  2000. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2001. _teacherDesktopIconInfo.push(
  2002. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2003. )
  2004. _studentDesktopIconInfo.push(
  2005. )
  2006. }
  2007. //010606 组织
  2008. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2009. _teacherDesktopIconInfo.push(
  2010. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2011. )
  2012. _studentDesktopIconInfo.push(
  2013. )
  2014. }
  2015. //麒麟二中 和 民新小学
  2016. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2017. _teacherDesktopIconInfo.push(
  2018. )
  2019. }
  2020. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2021. _teacherDesktopIconInfo.push(
  2022. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2023. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2024. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2025. )
  2026. }
  2027. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2028. _hkTeacherDeskIconInfo.push(
  2029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2030. )
  2031. }
  2032. //北师大附中(010601)
  2033. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2034. // _teacherDesktopIconInfo.push(
  2035. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2036. // )
  2037. // _studentDesktopIconInfo.push(
  2038. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2039. // )
  2040. // }
  2041. //樂善堂余近卿中學
  2042. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2043. _teacherDesktopIconInfo.push(
  2044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2045. )
  2046. }
  2047. // Education Artificial Intelligence
  2048. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2049. _teacherDesktopIconInfo.push(
  2050. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2051. )
  2052. }
  2053. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2054. _teacherDesktopIconInfo.push(
  2055. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2056. )
  2057. }
  2058. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2059. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2060. _teacherDesktopIconInfo.push(
  2061. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2062. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2063. )
  2064. }
  2065. //麒麟二中
  2066. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2067. _studentDesktopIconInfo.push(
  2068. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2069. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2070. )
  2071. }
  2072. //万科双语
  2073. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2074. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2075. if (el.Name == '项目管理') {
  2076. el.Name = 'PBL项目'
  2077. }
  2078. return el
  2079. })
  2080. _studentDesktopIconInfo3.push(
  2081. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2082. )
  2083. }
  2084. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2085. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2086. return el.Name != '魔盒识字' && el.Name != '24点'
  2087. })
  2088. }
  2089. 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) {
  2090. _studentDesktopIconInfo.push(
  2091. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2092. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2093. )
  2094. }
  2095. //循环创建桌面图标
  2096. if (type == 1) {
  2097. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2098. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2099. _content = $$("div", {
  2100. className: "U_MD_D_KO",
  2101. "onmousedown": U.UF.C.closure(function (obj) {
  2102. //防止拖动图标即打开了桌面应用
  2103. U.MD.D.click(this, obj);
  2104. }, [_studentDesktopIconInfo[i]]),
  2105. "onclick": U.UF.C.closure(function (obj) {
  2106. //防止拖动图标即打开了桌面应用
  2107. U.MD.D.click(this, obj);
  2108. }, [_studentDesktopIconInfo[i]])
  2109. }, _frag); //
  2110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2113. }
  2114. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2115. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2116. _content = $$("div", {
  2117. className: "U_MD_D_KO",
  2118. "onmousedown": U.UF.C.closure(function (obj) {
  2119. //防止拖动图标即打开了桌面应用
  2120. U.MD.D.click(this, obj);
  2121. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2122. "onclick": U.UF.C.closure(function (obj) {
  2123. //防止拖动图标即打开了桌面应用
  2124. U.MD.D.click(this, obj);
  2125. }, [_hkZJLSStudentDeskIconInfo[i]])
  2126. }, _frag); //
  2127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2130. } //
  2131. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2132. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2133. _content = $$("div", {
  2134. className: "U_MD_D_KO",
  2135. "onmousedown": U.UF.C.closure(function (obj) {
  2136. //防止拖动图标即打开了桌面应用
  2137. U.MD.D.click(this, obj);
  2138. }, [_ytyStudentDeskIconInfo[i]]),
  2139. "onclick": U.UF.C.closure(function (obj) {
  2140. //防止拖动图标即打开了桌面应用
  2141. U.MD.D.click(this, obj);
  2142. }, [_ytyStudentDeskIconInfo[i]])
  2143. }, _frag); //
  2144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2147. } //
  2148. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2149. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2150. _content = $$("div", {
  2151. className: "U_MD_D_KO",
  2152. "onmousedown": U.UF.C.closure(function (obj) {
  2153. //防止拖动图标即打开了桌面应用
  2154. U.MD.D.click(this, obj);
  2155. }, [_jccssylStudentDeskIconInfo[i]]),
  2156. "onclick": U.UF.C.closure(function (obj) {
  2157. //防止拖动图标即打开了桌面应用
  2158. U.MD.D.click(this, obj);
  2159. }, [_jccssylStudentDeskIconInfo[i]])
  2160. }, _frag); //
  2161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2164. }
  2165. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2166. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2167. _content = $$("div", {
  2168. className: "U_MD_D_KO",
  2169. "onmousedown": U.UF.C.closure(function (obj) {
  2170. //防止拖动图标即打开了桌面应用
  2171. U.MD.D.click(this, obj);
  2172. }, [_scnuaiStudentDeskIconInfo[i]]),
  2173. "onclick": U.UF.C.closure(function (obj) {
  2174. //防止拖动图标即打开了桌面应用
  2175. U.MD.D.click(this, obj);
  2176. }, [_scnuaiStudentDeskIconInfo[i]])
  2177. }, _frag); //
  2178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2181. }
  2182. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2183. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2184. _content = $$("div", {
  2185. className: "U_MD_D_KO",
  2186. "onmousedown": U.UF.C.closure(function (obj) {
  2187. //防止拖动图标即打开了桌面应用
  2188. U.MD.D.click(this, obj);
  2189. }, [_caleStudentDeskIconInfo[i]]),
  2190. "onclick": U.UF.C.closure(function (obj) {
  2191. //防止拖动图标即打开了桌面应用
  2192. U.MD.D.click(this, obj);
  2193. }, [_caleStudentDeskIconInfo[i]])
  2194. }, _frag); //
  2195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2198. }
  2199. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2200. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2201. _content = $$("div", {
  2202. className: "U_MD_D_KO",
  2203. "onmousedown": U.UF.C.closure(function (obj) {
  2204. //防止拖动图标即打开了桌面应用
  2205. U.MD.D.click(this, obj);
  2206. }, [_thuioeStudentDeskIconInfo[i]]),
  2207. "onclick": U.UF.C.closure(function (obj) {
  2208. //防止拖动图标即打开了桌面应用
  2209. U.MD.D.click(this, obj);
  2210. }, [_thuioeStudentDeskIconInfo[i]])
  2211. }, _frag); //
  2212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2215. }
  2216. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2217. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2218. _content = $$("div", {
  2219. className: "U_MD_D_KO",
  2220. "onmousedown": U.UF.C.closure(function (obj) {
  2221. //防止拖动图标即打开了桌面应用
  2222. U.MD.D.click(this, obj);
  2223. }, [_tpcStudentDeskIconInfo[i]]),
  2224. "onclick": U.UF.C.closure(function (obj) {
  2225. //防止拖动图标即打开了桌面应用
  2226. U.MD.D.click(this, obj);
  2227. }, [_tpcStudentDeskIconInfo[i]])
  2228. }, _frag); //
  2229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2232. } //
  2233. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2234. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2235. _content = $$("div", {
  2236. className: "U_MD_D_KO",
  2237. "onmousedown": U.UF.C.closure(function (obj) {
  2238. //防止拖动图标即打开了桌面应用
  2239. U.MD.D.click(this, obj);
  2240. }, [_chjyjStudentDeskIconInfo[i]]),
  2241. "onclick": U.UF.C.closure(function (obj) {
  2242. //防止拖动图标即打开了桌面应用
  2243. U.MD.D.click(this, obj);
  2244. }, [_chjyjStudentDeskIconInfo[i]])
  2245. }, _frag); //
  2246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2249. }
  2250. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2251. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2252. _content = $$("div", {
  2253. className: "U_MD_D_KO",
  2254. "onmousedown": U.UF.C.closure(function (obj) {
  2255. //防止拖动图标即打开了桌面应用
  2256. U.MD.D.click(this, obj);
  2257. }, [_szjkyStudentDeskIconInfo[i]]),
  2258. "onclick": U.UF.C.closure(function (obj) {
  2259. //防止拖动图标即打开了桌面应用
  2260. U.MD.D.click(this, obj);
  2261. }, [_szjkyStudentDeskIconInfo[i]])
  2262. }, _frag); //
  2263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2266. }
  2267. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2268. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2269. _content = $$("div", {
  2270. className: "U_MD_D_KO",
  2271. "onmousedown": U.UF.C.closure(function (obj) {
  2272. //防止拖动图标即打开了桌面应用
  2273. U.MD.D.click(this, obj);
  2274. }, [_x020201StudentDeskIconInfo[i]]),
  2275. "onclick": U.UF.C.closure(function (obj) {
  2276. //防止拖动图标即打开了桌面应用
  2277. U.MD.D.click(this, obj);
  2278. }, [_x020201StudentDeskIconInfo[i]])
  2279. }, _frag); //
  2280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2283. }
  2284. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2285. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2286. _content = $$("div", {
  2287. className: "U_MD_D_KO",
  2288. "onmousedown": U.UF.C.closure(function (obj) {
  2289. //防止拖动图标即打开了桌面应用
  2290. U.MD.D.click(this, obj);
  2291. }, [_SCNUETStudentDeskIconInfo[i]]),
  2292. "onclick": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_SCNUETStudentDeskIconInfo[i]])
  2296. }, _frag); //
  2297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2300. }
  2301. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2302. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2303. _content = $$("div", {
  2304. className: "U_MD_D_KO",
  2305. "onmousedown": U.UF.C.closure(function (obj) {
  2306. //防止拖动图标即打开了桌面应用
  2307. U.MD.D.click(this, obj);
  2308. }, [_dseiStudentDeskIconInfo[i]]),
  2309. "onclick": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_dseiStudentDeskIconInfo[i]])
  2313. }, _frag); //
  2314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2317. }
  2318. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2319. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2320. _content = $$("div", {
  2321. className: "U_MD_D_KO",
  2322. "onmousedown": U.UF.C.closure(function (obj) {
  2323. //防止拖动图标即打开了桌面应用
  2324. U.MD.D.click(this, obj);
  2325. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2326. "onclick": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2330. }, _frag); //
  2331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2334. }
  2335. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2336. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2337. _content = $$("div", {
  2338. className: "U_MD_D_KO",
  2339. "onmousedown": U.UF.C.closure(function (obj) {
  2340. //防止拖动图标即打开了桌面应用
  2341. U.MD.D.click(this, obj);
  2342. }, [_nsfxStudentDeskIconInfo[i]]),
  2343. "onclick": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_nsfxStudentDeskIconInfo[i]])
  2347. }, _frag); //
  2348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2351. }
  2352. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2353. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2354. _content = $$("div", {
  2355. className: "U_MD_D_KO",
  2356. "onmousedown": U.UF.C.closure(function (obj) {
  2357. //防止拖动图标即打开了桌面应用
  2358. U.MD.D.click(this, obj);
  2359. }, [_stiaStudentDeskIconInfo[i]]),
  2360. "onclick": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_stiaStudentDeskIconInfo[i]])
  2364. }, _frag); //
  2365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2368. }
  2369. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2370. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2371. _content = $$("div", {
  2372. className: "U_MD_D_KO",
  2373. "onmousedown": U.UF.C.closure(function (obj) {
  2374. //防止拖动图标即打开了桌面应用
  2375. U.MD.D.click(this, obj);
  2376. }, [_szdjgStudentDeskIconInfo[i]]),
  2377. "onclick": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_szdjgStudentDeskIconInfo[i]])
  2381. }, _frag); //
  2382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2385. }
  2386. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2387. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2388. _content = $$("div", {
  2389. className: "U_MD_D_KO",
  2390. "onmousedown": U.UF.C.closure(function (obj) {
  2391. //防止拖动图标即打开了桌面应用
  2392. U.MD.D.click(this, obj);
  2393. }, [_x010607StudentDeskIconInfo[i]]),
  2394. "onclick": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_x010607StudentDeskIconInfo[i]])
  2398. }, _frag); //
  2399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2402. }
  2403. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2404. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2405. _content = $$("div", {
  2406. className: "U_MD_D_KO",
  2407. "onmousedown": U.UF.C.closure(function (obj) {
  2408. //防止拖动图标即打开了桌面应用
  2409. U.MD.D.click(this, obj);
  2410. }, [_xhlyStudentDeskIconInfo[i]]),
  2411. "onclick": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_xhlyStudentDeskIconInfo[i]])
  2415. }, _frag); //
  2416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2419. }
  2420. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2421. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2422. _content = $$("div", {
  2423. className: "U_MD_D_KO",
  2424. "onmousedown": U.UF.C.closure(function (obj) {
  2425. //防止拖动图标即打开了桌面应用
  2426. U.MD.D.click(this, obj);
  2427. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2428. "onclick": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2432. }, _frag); //
  2433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2436. }
  2437. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2438. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2439. _content = $$("div", {
  2440. className: "U_MD_D_KO",
  2441. "onmousedown": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_x010503StudentDeskIconInfo[i]]),
  2445. "onclick": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_x010503StudentDeskIconInfo[i]])
  2449. }, _frag); //
  2450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2453. }
  2454. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2455. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2456. _content = $$("div", {
  2457. className: "U_MD_D_KO",
  2458. "onmousedown": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_x010504StudentDeskIconInfo[i]]),
  2462. "onclick": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x010504StudentDeskIconInfo[i]])
  2466. }, _frag); //
  2467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2470. }
  2471. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2472. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2473. _content = $$("div", {
  2474. className: "U_MD_D_KO",
  2475. "onmousedown": U.UF.C.closure(function (obj) {
  2476. //防止拖动图标即打开了桌面应用
  2477. U.MD.D.click(this, obj);
  2478. }, [_x010204StudentDeskIconInfo[i]]),
  2479. "onclick": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_x010204StudentDeskIconInfo[i]])
  2483. }, _frag); //
  2484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2487. }
  2488. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2489. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2490. _content = $$("div", {
  2491. className: "U_MD_D_KO",
  2492. "onmousedown": U.UF.C.closure(function (obj) {
  2493. //防止拖动图标即打开了桌面应用
  2494. U.MD.D.click(this, obj);
  2495. }, [_trailStudentDeskIconInfo[i]]),
  2496. "onclick": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_trailStudentDeskIconInfo[i]])
  2500. }, _frag); //
  2501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2504. }
  2505. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2506. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2507. _content = $$("div", {
  2508. className: "U_MD_D_KO",
  2509. "onmousedown": U.UF.C.closure(function (obj) {
  2510. //防止拖动图标即打开了桌面应用
  2511. U.MD.D.click(this, obj);
  2512. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2513. "onclick": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2517. }, _frag); //
  2518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2521. }
  2522. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2523. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2524. _content = $$("div", {
  2525. className: "U_MD_D_KO",
  2526. "onmousedown": U.UF.C.closure(function (obj) {
  2527. //防止拖动图标即打开了桌面应用
  2528. U.MD.D.click(this, obj);
  2529. }, [_x010608StudentDeskIconInfo[i]]),
  2530. "onclick": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_x010608StudentDeskIconInfo[i]])
  2534. }, _frag); //
  2535. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2536. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2537. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2538. }
  2539. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2540. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2541. _content = $$("div", {
  2542. className: "U_MD_D_KO",
  2543. "onmousedown": U.UF.C.closure(function (obj) {
  2544. //防止拖动图标即打开了桌面应用
  2545. U.MD.D.click(this, obj);
  2546. }, [_x010611StudentDeskIconInfo[i]]),
  2547. "onclick": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_x010611StudentDeskIconInfo[i]])
  2551. }, _frag); //
  2552. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2553. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2554. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2555. }
  2556. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2557. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2558. _content = $$("div", {
  2559. className: "U_MD_D_KO",
  2560. "onmousedown": U.UF.C.closure(function (obj) {
  2561. //防止拖动图标即打开了桌面应用
  2562. U.MD.D.click(this, obj);
  2563. }, [_tianyuantudentDeskIconInfo[i]]),
  2564. "onclick": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_tianyuantudentDeskIconInfo[i]])
  2568. }, _frag); //
  2569. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2572. }
  2573. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2574. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2575. _content = $$("div", {
  2576. className: "U_MD_D_KO",
  2577. "onmousedown": U.UF.C.closure(function (obj) {
  2578. //防止拖动图标即打开了桌面应用
  2579. U.MD.D.click(this, obj);
  2580. }, [_siesStudentDeskIconInfo[i]]),
  2581. "onclick": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_siesStudentDeskIconInfo[i]])
  2585. }, _frag); //
  2586. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2587. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2588. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2589. }
  2590. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2591. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2592. _content = $$("div", {
  2593. className: "U_MD_D_KO",
  2594. "onmousedown": U.UF.C.closure(function (obj) {
  2595. //防止拖动图标即打开了桌面应用
  2596. U.MD.D.click(this, obj);
  2597. }, [_guzmsStudentDeskIconInfo[i]]),
  2598. "onclick": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_guzmsStudentDeskIconInfo[i]])
  2602. }, _frag); //
  2603. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2604. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2605. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2606. }
  2607. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2608. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2609. _content = $$("div", {
  2610. className: "U_MD_D_KO",
  2611. "onmousedown": U.UF.C.closure(function (obj) {
  2612. //防止拖动图标即打开了桌面应用
  2613. U.MD.D.click(this, obj);
  2614. }, [_hkStudentDeskIconInfo[i]]),
  2615. "onclick": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_hkStudentDeskIconInfo[i]])
  2619. }, _frag); //
  2620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2623. }
  2624. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2625. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_hkaceStudentDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_hkaceStudentDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2642. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2643. _content = $$("div", {
  2644. className: "U_MD_D_KO",
  2645. "onmousedown": U.UF.C.closure(function (obj) {
  2646. //防止拖动图标即打开了桌面应用
  2647. U.MD.D.click(this, obj);
  2648. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2649. "onclick": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_BSDNSstudentDesktopIconInfo[i]])
  2653. }, _frag); //
  2654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2657. }
  2658. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2659. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2660. _content = $$("div", {
  2661. className: "U_MD_D_KO",
  2662. "onmousedown": U.UF.C.closure(function (obj) {
  2663. //防止拖动图标即打开了桌面应用
  2664. U.MD.D.click(this, obj);
  2665. }, [_cocobizStudentDeskIconInfo[i]]),
  2666. "onclick": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_cocobizStudentDeskIconInfo[i]])
  2670. }, _frag); //
  2671. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2672. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2673. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2674. }
  2675. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2676. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2677. _content = $$("div", {
  2678. className: "U_MD_D_KO",
  2679. "onmousedown": U.UF.C.closure(function (obj) {
  2680. //防止拖动图标即打开了桌面应用
  2681. U.MD.D.click(this, obj);
  2682. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2683. "onclick": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_xxzjkyStudentDeskIconInfo[i]])
  2687. }, _frag); //
  2688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2691. }
  2692. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2693. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2694. _content = $$("div", {
  2695. className: "U_MD_D_KO",
  2696. "onmousedown": U.UF.C.closure(function (obj) {
  2697. //防止拖动图标即打开了桌面应用
  2698. U.MD.D.click(this, obj);
  2699. }, [_studentDesktopIconInfo[i]]),
  2700. "onclick": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_studentDesktopIconInfo[i]])
  2704. }, _frag); //
  2705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2708. }
  2709. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2710. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2711. _content = $$("div", {
  2712. className: "U_MD_D_KO",
  2713. "onmousedown": U.UF.C.closure(function (obj) {
  2714. //防止拖动图标即打开了桌面应用
  2715. U.MD.D.click(this, obj);
  2716. }, [_tcStudentDeskIconInfo[i]]),
  2717. "onclick": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_tcStudentDeskIconInfo[i]])
  2721. }, _frag); //
  2722. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2723. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2724. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2725. }
  2726. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2727. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2728. _content = $$("div", {
  2729. className: "U_MD_D_KO",
  2730. "onmousedown": U.UF.C.closure(function (obj) {
  2731. //防止拖动图标即打开了桌面应用
  2732. U.MD.D.click(this, obj);
  2733. }, [_szscStudentDeskIconInfo[i]]),
  2734. "onclick": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_szscStudentDeskIconInfo[i]])
  2738. }, _frag); //
  2739. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2740. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2741. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2742. }
  2743. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2744. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  2751. "onclick": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_studentDesktopIconInfo3[i]])
  2755. }, _frag); //
  2756. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2757. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2758. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2759. }
  2760. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2761. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2762. _content = $$("div", {
  2763. className: "U_MD_D_KO",
  2764. "onmousedown": U.UF.C.closure(function (obj) {
  2765. //防止拖动图标即打开了桌面应用
  2766. U.MD.D.click(this, obj);
  2767. }, [_studentDesktopIconInfo2[i]]),
  2768. "onclick": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_studentDesktopIconInfo2[i]])
  2772. }, _frag); //
  2773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2776. }
  2777. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2778. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2779. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2780. continue
  2781. }
  2782. _content = $$("div", {
  2783. className: "U_MD_D_KO",
  2784. "onmousedown": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_wanketeacherDesktopIconInfo[i]]),
  2788. "onclick": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_wanketeacherDesktopIconInfo[i]])
  2792. }, _frag); //
  2793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2796. }
  2797. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2798. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2799. _content = $$("div", {
  2800. className: "U_MD_D_KO",
  2801. "onmousedown": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_wankeAdminDesktopIconInfo[i]]),
  2805. "onclick": U.UF.C.closure(function (obj) {
  2806. //防止拖动图标即打开了桌面应用
  2807. U.MD.D.click(this, obj);
  2808. }, [_wankeAdminDesktopIconInfo[i]])
  2809. }, _frag); //
  2810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2813. }
  2814. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2815. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2816. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2817. continue
  2818. }
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_scnuaiTeacherDeskIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2835. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2836. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2837. continue
  2838. }
  2839. _content = $$("div", {
  2840. className: "U_MD_D_KO",
  2841. "onmousedown": U.UF.C.closure(function (obj) {
  2842. //防止拖动图标即打开了桌面应用
  2843. U.MD.D.click(this, obj);
  2844. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2845. "onclick": U.UF.C.closure(function (obj) {
  2846. //防止拖动图标即打开了桌面应用
  2847. U.MD.D.click(this, obj);
  2848. }, [_BSDNSteacherDesktopIconInfo[i]])
  2849. }, _frag); //
  2850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2853. }
  2854. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2855. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2856. _content = $$("div", {
  2857. className: "U_MD_D_KO",
  2858. "onmousedown": U.UF.C.closure(function (obj) {
  2859. //防止拖动图标即打开了桌面应用
  2860. U.MD.D.click(this, obj);
  2861. }, [_scnuaiAdminDeskIconInfo[i]]),
  2862. "onclick": U.UF.C.closure(function (obj) {
  2863. //防止拖动图标即打开了桌面应用
  2864. U.MD.D.click(this, obj);
  2865. }, [_scnuaiAdminDeskIconInfo[i]])
  2866. }, _frag); //
  2867. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2868. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2869. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2870. }
  2871. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2872. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2873. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2874. continue
  2875. }
  2876. _content = $$("div", {
  2877. className: "U_MD_D_KO",
  2878. "onmousedown": U.UF.C.closure(function (obj) {
  2879. //防止拖动图标即打开了桌面应用
  2880. U.MD.D.click(this, obj);
  2881. }, [_jccssylTeacherDeskIconInfo[i]]),
  2882. "onclick": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_jccssylTeacherDeskIconInfo[i]])
  2886. }, _frag); //
  2887. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2888. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2889. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2890. }
  2891. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2892. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2893. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2894. continue
  2895. }
  2896. _content = $$("div", {
  2897. className: "U_MD_D_KO",
  2898. "onmousedown": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_caleTeacherDeskIconInfo[i]]),
  2902. "onclick": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_caleTeacherDeskIconInfo[i]])
  2906. }, _frag); //
  2907. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2908. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2909. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2910. }
  2911. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2912. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2913. _content = $$("div", {
  2914. className: "U_MD_D_KO",
  2915. "onmousedown": U.UF.C.closure(function (obj) {
  2916. //防止拖动图标即打开了桌面应用
  2917. U.MD.D.click(this, obj);
  2918. }, [_tpcOrganizerDeskIconInfo[i]]),
  2919. "onclick": U.UF.C.closure(function (obj) {
  2920. //防止拖动图标即打开了桌面应用
  2921. U.MD.D.click(this, obj);
  2922. }, [_tpcOrganizerDeskIconInfo[i]])
  2923. }, _frag); //
  2924. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2925. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2926. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2927. }
  2928. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2929. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2930. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2931. continue
  2932. }
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_tpcTeacherDeskIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_tpcTeacherDeskIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2949. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2950. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2951. continue
  2952. }
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_teacherDesktopIconInfo2[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_teacherDesktopIconInfo2[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2967. }
  2968. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2969. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2970. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2971. continue
  2972. }
  2973. _content = $$("div", {
  2974. className: "U_MD_D_KO",
  2975. "onmousedown": U.UF.C.closure(function (obj) {
  2976. //防止拖动图标即打开了桌面应用
  2977. U.MD.D.click(this, obj);
  2978. }, [_thuioeTeacherDeskIconInfo[i]]),
  2979. "onclick": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_thuioeTeacherDeskIconInfo[i]])
  2983. }, _frag); //
  2984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2987. }
  2988. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2989. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2990. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2991. continue
  2992. }
  2993. _content = $$("div", {
  2994. className: "U_MD_D_KO",
  2995. "onmousedown": U.UF.C.closure(function (obj) {
  2996. //防止拖动图标即打开了桌面应用
  2997. U.MD.D.click(this, obj);
  2998. }, [_lotechTeacherDeskIconInfo[i]]),
  2999. "onclick": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_lotechTeacherDeskIconInfo[i]])
  3003. }, _frag); //
  3004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3007. }//
  3008. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3009. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3010. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3011. continue
  3012. }
  3013. _content = $$("div", {
  3014. className: "U_MD_D_KO",
  3015. "onmousedown": U.UF.C.closure(function (obj) {
  3016. //防止拖动图标即打开了桌面应用
  3017. U.MD.D.click(this, obj);
  3018. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3019. "onclick": U.UF.C.closure(function (obj) {
  3020. //防止拖动图标即打开了桌面应用
  3021. U.MD.D.click(this, obj);
  3022. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3023. }, _frag); //
  3024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3027. }
  3028. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3029. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3030. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3031. continue
  3032. }
  3033. _content = $$("div", {
  3034. className: "U_MD_D_KO",
  3035. "onmousedown": U.UF.C.closure(function (obj) {
  3036. //防止拖动图标即打开了桌面应用
  3037. U.MD.D.click(this, obj);
  3038. }, [_siesTeacherDeskIconInfo[i]]),
  3039. "onclick": U.UF.C.closure(function (obj) {
  3040. //防止拖动图标即打开了桌面应用
  3041. U.MD.D.click(this, obj);
  3042. }, [_siesTeacherDeskIconInfo[i]])
  3043. }, _frag); //
  3044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3047. }
  3048. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3049. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3050. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3051. continue
  3052. }
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_guzmsTeacherDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_guzmsTeacherDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3069. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3070. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3071. continue
  3072. }
  3073. _content = $$("div", {
  3074. className: "U_MD_D_KO",
  3075. "onmousedown": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_longhuaTeacherDeskIconInfo[i]]),
  3079. "onclick": U.UF.C.closure(function (obj) {
  3080. //防止拖动图标即打开了桌面应用
  3081. U.MD.D.click(this, obj);
  3082. }, [_longhuaTeacherDeskIconInfo[i]])
  3083. }, _frag); //
  3084. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3085. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3086. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3087. }
  3088. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3089. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3090. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3091. continue
  3092. }
  3093. _content = $$("div", {
  3094. className: "U_MD_D_KO",
  3095. "onmousedown": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_ytyTeacherDeskIconInfo[i]]),
  3099. "onclick": U.UF.C.closure(function (obj) {
  3100. //防止拖动图标即打开了桌面应用
  3101. U.MD.D.click(this, obj);
  3102. }, [_ytyTeacherDeskIconInfo[i]])
  3103. }, _frag); //
  3104. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3105. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3106. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3107. }
  3108. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3109. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3110. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3111. continue
  3112. }
  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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_yunhaiTeacherDeskIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3127. } //_hkStudentDeskIconInfo
  3128. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3129. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3130. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[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. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3149. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3150. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3151. continue
  3152. }
  3153. _content = $$("div", {
  3154. className: "U_MD_D_KO",
  3155. "onmousedown": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_hkTeacherDeskIconInfo[i]]),
  3159. "onclick": U.UF.C.closure(function (obj) {
  3160. //防止拖动图标即打开了桌面应用
  3161. U.MD.D.click(this, obj);
  3162. }, [_hkTeacherDeskIconInfo[i]])
  3163. }, _frag); //
  3164. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3165. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3166. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3167. }
  3168. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3169. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3170. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3171. continue
  3172. }
  3173. _content = $$("div", {
  3174. className: "U_MD_D_KO",
  3175. "onmousedown": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_hkaceTeacherDeskIconInfo[i]]),
  3179. "onclick": U.UF.C.closure(function (obj) {
  3180. //防止拖动图标即打开了桌面应用
  3181. U.MD.D.click(this, obj);
  3182. }, [_hkaceTeacherDeskIconInfo[i]])
  3183. }, _frag); //
  3184. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3185. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3186. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3187. }
  3188. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3189. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3190. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3191. continue
  3192. }
  3193. _content = $$("div", {
  3194. className: "U_MD_D_KO",
  3195. "onmousedown": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_cocobizTeacherDeskIconInfo[i]]),
  3199. "onclick": U.UF.C.closure(function (obj) {
  3200. //防止拖动图标即打开了桌面应用
  3201. U.MD.D.click(this, obj);
  3202. }, [_cocobizTeacherDeskIconInfo[i]])
  3203. }, _frag); //
  3204. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3205. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3206. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3207. }
  3208. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3209. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3210. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3211. continue
  3212. }
  3213. _content = $$("div", {
  3214. className: "U_MD_D_KO",
  3215. "onmousedown": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3219. "onclick": U.UF.C.closure(function (obj) {
  3220. //防止拖动图标即打开了桌面应用
  3221. U.MD.D.click(this, obj);
  3222. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3223. }, _frag); //
  3224. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3225. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3226. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3227. }
  3228. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3229. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3230. _content = $$("div", {
  3231. className: "U_MD_D_KO",
  3232. "onmousedown": U.UF.C.closure(function (obj) {
  3233. //防止拖动图标即打开了桌面应用
  3234. U.MD.D.click(this, obj);
  3235. }, [_gdjgAdminDeskIconInfo[i]]),
  3236. "onclick": U.UF.C.closure(function (obj) {
  3237. //防止拖动图标即打开了桌面应用
  3238. U.MD.D.click(this, obj);
  3239. }, [_gdjgAdminDeskIconInfo[i]])
  3240. }, _frag); //
  3241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3244. }
  3245. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3246. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3247. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3248. continue
  3249. }
  3250. _content = $$("div", {
  3251. className: "U_MD_D_KO",
  3252. "onmousedown": U.UF.C.closure(function (obj) {
  3253. //防止拖动图标即打开了桌面应用
  3254. U.MD.D.click(this, obj);
  3255. }, [_gdjgTeacherDeskIconInfo[i]]),
  3256. "onclick": U.UF.C.closure(function (obj) {
  3257. //防止拖动图标即打开了桌面应用
  3258. U.MD.D.click(this, obj);
  3259. }, [_gdjgTeacherDeskIconInfo[i]])
  3260. }, _frag); //
  3261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3264. }
  3265. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3266. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3267. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3268. continue
  3269. }
  3270. _content = $$("div", {
  3271. className: "U_MD_D_KO",
  3272. "onmousedown": U.UF.C.closure(function (obj) {
  3273. //防止拖动图标即打开了桌面应用
  3274. U.MD.D.click(this, obj);
  3275. }, [_szherTeacherDeskIconInfo[i]]),
  3276. "onclick": U.UF.C.closure(function (obj) {
  3277. //防止拖动图标即打开了桌面应用
  3278. U.MD.D.click(this, obj);
  3279. }, [_szherTeacherDeskIconInfo[i]])
  3280. }, _frag); //
  3281. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3282. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3283. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3284. }
  3285. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3286. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3287. _content = $$("div", {
  3288. className: "U_MD_D_KO",
  3289. "onmousedown": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_heyuannAdminDeskIconInfo[i]]),
  3293. "onclick": U.UF.C.closure(function (obj) {
  3294. //防止拖动图标即打开了桌面应用
  3295. U.MD.D.click(this, obj);
  3296. }, [_heyuannAdminDeskIconInfo[i]])
  3297. }, _frag); //
  3298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3301. }
  3302. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3303. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3304. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3305. continue
  3306. }
  3307. _content = $$("div", {
  3308. className: "U_MD_D_KO",
  3309. "onmousedown": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_heyuanTeacherDeskIconInfo[i]]),
  3313. "onclick": U.UF.C.closure(function (obj) {
  3314. //防止拖动图标即打开了桌面应用
  3315. U.MD.D.click(this, obj);
  3316. }, [_heyuanTeacherDeskIconInfo[i]])
  3317. }, _frag); //
  3318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3321. } //
  3322. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3323. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  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. }, [_dseiAdminDeskIconInfo[i]]),
  3330. "onclick": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_dseiAdminDeskIconInfo[i]])
  3334. }, _frag); //
  3335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3338. }
  3339. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3340. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3341. if(_role === 0 && _dseiTeacherDeskIconInfo[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. }, [_dseiTeacherDeskIconInfo[i]]),
  3350. "onclick": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_dseiTeacherDeskIconInfo[i]])
  3354. }, _frag); //
  3355. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3356. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3357. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3358. } //
  3359. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3360. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3361. _content = $$("div", {
  3362. className: "U_MD_D_KO",
  3363. "onmousedown": U.UF.C.closure(function (obj) {
  3364. //防止拖动图标即打开了桌面应用
  3365. U.MD.D.click(this, obj);
  3366. }, [_chjyjAdminDeskIconInfo[i]]),
  3367. "onclick": U.UF.C.closure(function (obj) {
  3368. //防止拖动图标即打开了桌面应用
  3369. U.MD.D.click(this, obj);
  3370. }, [_chjyjAdminDeskIconInfo[i]])
  3371. }, _frag); //
  3372. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3373. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3374. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3375. }//
  3376. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3377. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3378. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3379. continue
  3380. }
  3381. _content = $$("div", {
  3382. className: "U_MD_D_KO",
  3383. "onmousedown": U.UF.C.closure(function (obj) {
  3384. //防止拖动图标即打开了桌面应用
  3385. U.MD.D.click(this, obj);
  3386. }, [_chjyjTeacherDeskIconInfo[i]]),
  3387. "onclick": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_chjyjTeacherDeskIconInfo[i]])
  3391. }, _frag); //
  3392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3395. }
  3396. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3397. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3398. _content = $$("div", {
  3399. className: "U_MD_D_KO",
  3400. "onmousedown": U.UF.C.closure(function (obj) {
  3401. //防止拖动图标即打开了桌面应用
  3402. U.MD.D.click(this, obj);
  3403. }, [_szjkyAdminDeskIconInfo[i]]),
  3404. "onclick": U.UF.C.closure(function (obj) {
  3405. //防止拖动图标即打开了桌面应用
  3406. U.MD.D.click(this, obj);
  3407. }, [_szjkyAdminDeskIconInfo[i]])
  3408. }, _frag); //
  3409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3412. }//
  3413. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3414. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3415. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3416. continue
  3417. }
  3418. _content = $$("div", {
  3419. className: "U_MD_D_KO",
  3420. "onmousedown": U.UF.C.closure(function (obj) {
  3421. //防止拖动图标即打开了桌面应用
  3422. U.MD.D.click(this, obj);
  3423. }, [_szjkyTeacherDeskIconInfo[i]]),
  3424. "onclick": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_szjkyTeacherDeskIconInfo[i]])
  3428. }, _frag); //
  3429. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3430. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3431. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3432. }
  3433. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3434. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3435. _content = $$("div", {
  3436. className: "U_MD_D_KO",
  3437. "onmousedown": U.UF.C.closure(function (obj) {
  3438. //防止拖动图标即打开了桌面应用
  3439. U.MD.D.click(this, obj);
  3440. }, [_x020201AdminDeskIconInfo[i]]),
  3441. "onclick": U.UF.C.closure(function (obj) {
  3442. //防止拖动图标即打开了桌面应用
  3443. U.MD.D.click(this, obj);
  3444. }, [_x020201AdminDeskIconInfo[i]])
  3445. }, _frag); //
  3446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3449. }//
  3450. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3451. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3452. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3453. continue
  3454. }
  3455. _content = $$("div", {
  3456. className: "U_MD_D_KO",
  3457. "onmousedown": U.UF.C.closure(function (obj) {
  3458. //防止拖动图标即打开了桌面应用
  3459. U.MD.D.click(this, obj);
  3460. }, [_x020201TeacherDeskIconInfo[i]]),
  3461. "onclick": U.UF.C.closure(function (obj) {
  3462. //防止拖动图标即打开了桌面应用
  3463. U.MD.D.click(this, obj);
  3464. }, [_x020201TeacherDeskIconInfo[i]])
  3465. }, _frag); //
  3466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3469. }
  3470. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3471. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3472. _content = $$("div", {
  3473. className: "U_MD_D_KO",
  3474. "onmousedown": U.UF.C.closure(function (obj) {
  3475. //防止拖动图标即打开了桌面应用
  3476. U.MD.D.click(this, obj);
  3477. }, [_SCNUETAdminDeskIconInfo[i]]),
  3478. "onclick": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_SCNUETAdminDeskIconInfo[i]])
  3482. }, _frag); //
  3483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3486. }//
  3487. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3488. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3489. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3490. continue
  3491. }
  3492. _content = $$("div", {
  3493. className: "U_MD_D_KO",
  3494. "onmousedown": U.UF.C.closure(function (obj) {
  3495. //防止拖动图标即打开了桌面应用
  3496. U.MD.D.click(this, obj);
  3497. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3498. "onclick": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_SCNUETTeacherDeskIconInfo[i]])
  3502. }, _frag); //
  3503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3506. }
  3507. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3508. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_futianAdminDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_futianAdminDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3525. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3526. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3527. continue
  3528. }
  3529. _content = $$("div", {
  3530. className: "U_MD_D_KO",
  3531. "onmousedown": U.UF.C.closure(function (obj) {
  3532. //防止拖动图标即打开了桌面应用
  3533. U.MD.D.click(this, obj);
  3534. }, [_futianTeacherDeskIconInfo[i]]),
  3535. "onclick": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_futianTeacherDeskIconInfo[i]])
  3539. }, _frag); //
  3540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3543. }
  3544. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3545. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3546. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3547. continue
  3548. }
  3549. _content = $$("div", {
  3550. className: "U_MD_D_KO",
  3551. "onmousedown": U.UF.C.closure(function (obj) {
  3552. //防止拖动图标即打开了桌面应用
  3553. U.MD.D.click(this, obj);
  3554. }, [_MingdeTeacherDeskIcon[i]]),
  3555. "onclick": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_MingdeTeacherDeskIcon[i]])
  3559. }, _frag); //
  3560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3563. }
  3564. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3565. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_lhsAdminDesktopIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_lhsAdminDesktopIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3582. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3583. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3584. continue
  3585. }
  3586. _content = $$("div", {
  3587. className: "U_MD_D_KO",
  3588. "onmousedown": U.UF.C.closure(function (obj) {
  3589. //防止拖动图标即打开了桌面应用
  3590. U.MD.D.click(this, obj);
  3591. }, [_lhsteacherDesktopIconInfo[i]]),
  3592. "onclick": U.UF.C.closure(function (obj) {
  3593. //防止拖动图标即打开了桌面应用
  3594. U.MD.D.click(this, obj);
  3595. }, [_lhsteacherDesktopIconInfo[i]])
  3596. }, _frag); //
  3597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3600. }
  3601. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3602. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3603. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3604. continue
  3605. }
  3606. _content = $$("div", {
  3607. className: "U_MD_D_KO",
  3608. "onmousedown": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3612. "onclick": U.UF.C.closure(function (obj) {
  3613. //防止拖动图标即打开了桌面应用
  3614. U.MD.D.click(this, obj);
  3615. }, [_zhoujiateacherDesktopIconInfo[i]])
  3616. }, _frag); //
  3617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3620. }
  3621. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3622. for (i = 0; i < _hanDeskIcon.length; i++) {
  3623. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3624. continue
  3625. }
  3626. _content = $$("div", {
  3627. className: "U_MD_D_KO",
  3628. "onmousedown": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_hanDeskIcon[i]]),
  3632. "onclick": U.UF.C.closure(function (obj) {
  3633. //防止拖动图标即打开了桌面应用
  3634. U.MD.D.click(this, obj);
  3635. }, [_hanDeskIcon[i]])
  3636. }, _frag); //
  3637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3640. }
  3641. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3642. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3643. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3644. continue
  3645. }
  3646. _content = $$("div", {
  3647. className: "U_MD_D_KO",
  3648. "onmousedown": U.UF.C.closure(function (obj) {
  3649. //防止拖动图标即打开了桌面应用
  3650. U.MD.D.click(this, obj);
  3651. }, [_orgStemDeskIcon[i]]),
  3652. "onclick": U.UF.C.closure(function (obj) {
  3653. //防止拖动图标即打开了桌面应用
  3654. U.MD.D.click(this, obj);
  3655. }, [_orgStemDeskIcon[i]])
  3656. }, _frag); //
  3657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3660. }
  3661. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3662. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3663. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3664. continue
  3665. }
  3666. _content = $$("div", {
  3667. className: "U_MD_D_KO",
  3668. "onmousedown": U.UF.C.closure(function (obj) {
  3669. //防止拖动图标即打开了桌面应用
  3670. U.MD.D.click(this, obj);
  3671. }, [_szulsDeskIcon[i]]),
  3672. "onclick": U.UF.C.closure(function (obj) {
  3673. //防止拖动图标即打开了桌面应用
  3674. U.MD.D.click(this, obj);
  3675. }, [_szulsDeskIcon[i]])
  3676. }, _frag); //
  3677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3680. }
  3681. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3682. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3683. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3684. continue
  3685. }
  3686. _content = $$("div", {
  3687. className: "U_MD_D_KO",
  3688. "onmousedown": U.UF.C.closure(function (obj) {
  3689. //防止拖动图标即打开了桌面应用
  3690. U.MD.D.click(this, obj);
  3691. }, [_orgDesktopIconInfo[i]]),
  3692. "onclick": U.UF.C.closure(function (obj) {
  3693. //防止拖动图标即打开了桌面应用
  3694. U.MD.D.click(this, obj);
  3695. }, [_orgDesktopIconInfo[i]])
  3696. }, _frag); //
  3697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3700. }
  3701. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3702. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3703. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3704. continue
  3705. }
  3706. _content = $$("div", {
  3707. className: "U_MD_D_KO",
  3708. "onmousedown": U.UF.C.closure(function (obj) {
  3709. //防止拖动图标即打开了桌面应用
  3710. U.MD.D.click(this, obj);
  3711. }, [_schoolDesktopIconInfo[i]]),
  3712. "onclick": U.UF.C.closure(function (obj) {
  3713. //防止拖动图标即打开了桌面应用
  3714. U.MD.D.click(this, obj);
  3715. }, [_schoolDesktopIconInfo[i]])
  3716. }, _frag); //
  3717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3720. }
  3721. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3722. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3723. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3724. continue
  3725. }
  3726. _content = $$("div", {
  3727. className: "U_MD_D_KO",
  3728. "onmousedown": U.UF.C.closure(function (obj) {
  3729. //防止拖动图标即打开了桌面应用
  3730. U.MD.D.click(this, obj);
  3731. }, [_GMteacherDesktopIconInfo[i]]),
  3732. "onclick": U.UF.C.closure(function (obj) {
  3733. //防止拖动图标即打开了桌面应用
  3734. U.MD.D.click(this, obj);
  3735. }, [_GMteacherDesktopIconInfo[i]])
  3736. }, _frag); //
  3737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3740. }
  3741. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3742. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3743. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3744. continue
  3745. }
  3746. _content = $$("div", {
  3747. className: "U_MD_D_KO",
  3748. "onmousedown": U.UF.C.closure(function (obj) {
  3749. //防止拖动图标即打开了桌面应用
  3750. U.MD.D.click(this, obj);
  3751. }, [_SONGteacherDesktopIconInfo[i]]),
  3752. "onclick": U.UF.C.closure(function (obj) {
  3753. //防止拖动图标即打开了桌面应用
  3754. U.MD.D.click(this, obj);
  3755. }, [_SONGteacherDesktopIconInfo[i]])
  3756. }, _frag); //
  3757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3760. }
  3761. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3762. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3763. _content = $$("div", {
  3764. className: "U_MD_D_KO",
  3765. "onmousedown": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_GMstudentDesktopIconInfo[i]]),
  3769. "onclick": U.UF.C.closure(function (obj) {
  3770. //防止拖动图标即打开了桌面应用
  3771. U.MD.D.click(this, obj);
  3772. }, [_GMstudentDesktopIconInfo[i]])
  3773. }, _frag); //
  3774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3777. }
  3778. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3779. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3780. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3781. continue
  3782. }
  3783. _content = $$("div", {
  3784. className: "U_MD_D_KO",
  3785. "onmousedown": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_tcTeacherDeskIconInfo[i]]),
  3789. "onclick": U.UF.C.closure(function (obj) {
  3790. //防止拖动图标即打开了桌面应用
  3791. U.MD.D.click(this, obj);
  3792. }, [_tcTeacherDeskIconInfo[i]])
  3793. }, _frag); //
  3794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3797. }
  3798. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3799. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3800. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3801. continue
  3802. }
  3803. _content = $$("div", {
  3804. className: "U_MD_D_KO",
  3805. "onmousedown": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_tcOrganizerDeskIconInfo[i]]),
  3809. "onclick": U.UF.C.closure(function (obj) {
  3810. //防止拖动图标即打开了桌面应用
  3811. U.MD.D.click(this, obj);
  3812. }, [_tcOrganizerDeskIconInfo[i]])
  3813. }, _frag); //
  3814. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3815. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3816. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3817. }
  3818. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3819. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3820. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3821. continue
  3822. }
  3823. _content = $$("div", {
  3824. className: "U_MD_D_KO",
  3825. "onmousedown": U.UF.C.closure(function (obj) {
  3826. //防止拖动图标即打开了桌面应用
  3827. U.MD.D.click(this, obj);
  3828. }, [_szscTeacherDeskIconInfo[i]]),
  3829. "onclick": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_szscTeacherDeskIconInfo[i]])
  3833. }, _frag); //
  3834. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3835. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3836. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3837. }
  3838. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3839. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3840. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3841. continue
  3842. }
  3843. _content = $$("div", {
  3844. className: "U_MD_D_KO",
  3845. "onmousedown": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_szscOrganizerDeskIconInfo[i]]),
  3849. "onclick": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_szscOrganizerDeskIconInfo[i]])
  3853. }, _frag); //
  3854. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3855. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3856. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3857. }
  3858. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3859. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3860. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3861. continue
  3862. }
  3863. _content = $$("div", {
  3864. className: "U_MD_D_KO",
  3865. "onmousedown": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_nsfxTeacherDeskIconInfo[i]]),
  3869. "onclick": U.UF.C.closure(function (obj) {
  3870. //防止拖动图标即打开了桌面应用
  3871. U.MD.D.click(this, obj);
  3872. }, [_nsfxTeacherDeskIconInfo[i]])
  3873. }, _frag); //
  3874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3877. }
  3878. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3879. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3880. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3881. continue
  3882. }
  3883. _content = $$("div", {
  3884. className: "U_MD_D_KO",
  3885. "onmousedown": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_stiaTeacherDeskIconInfo[i]]),
  3889. "onclick": U.UF.C.closure(function (obj) {
  3890. //防止拖动图标即打开了桌面应用
  3891. U.MD.D.click(this, obj);
  3892. }, [_stiaTeacherDeskIconInfo[i]])
  3893. }, _frag); //
  3894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3897. }
  3898. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3899. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3900. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3901. continue
  3902. }
  3903. _content = $$("div", {
  3904. className: "U_MD_D_KO",
  3905. "onmousedown": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_szdjgTeacherDeskIconInfo[i]]),
  3909. "onclick": U.UF.C.closure(function (obj) {
  3910. //防止拖动图标即打开了桌面应用
  3911. U.MD.D.click(this, obj);
  3912. }, [_szdjgTeacherDeskIconInfo[i]])
  3913. }, _frag); //
  3914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3917. }
  3918. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3919. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3920. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3921. continue
  3922. }
  3923. _content = $$("div", {
  3924. className: "U_MD_D_KO",
  3925. "onmousedown": U.UF.C.closure(function (obj) {
  3926. //防止拖动图标即打开了桌面应用
  3927. U.MD.D.click(this, obj);
  3928. }, [_x010607TeacherDeskIconInfo[i]]),
  3929. "onclick": U.UF.C.closure(function (obj) {
  3930. //防止拖动图标即打开了桌面应用
  3931. U.MD.D.click(this, obj);
  3932. }, [_x010607TeacherDeskIconInfo[i]])
  3933. }, _frag); //
  3934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3937. }
  3938. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3939. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3940. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3941. continue
  3942. }
  3943. _content = $$("div", {
  3944. className: "U_MD_D_KO",
  3945. "onmousedown": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_xhlyTeacherDeskIconInfo[i]]),
  3949. "onclick": U.UF.C.closure(function (obj) {
  3950. //防止拖动图标即打开了桌面应用
  3951. U.MD.D.click(this, obj);
  3952. }, [_xhlyTeacherDeskIconInfo[i]])
  3953. }, _frag); //
  3954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3957. }
  3958. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3959. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3960. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3961. continue
  3962. }
  3963. _content = $$("div", {
  3964. className: "U_MD_D_KO",
  3965. "onmousedown": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3969. "onclick": U.UF.C.closure(function (obj) {
  3970. //防止拖动图标即打开了桌面应用
  3971. U.MD.D.click(this, obj);
  3972. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3973. }, _frag); //
  3974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3977. }
  3978. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3979. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3980. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3981. continue
  3982. }
  3983. _content = $$("div", {
  3984. className: "U_MD_D_KO",
  3985. "onmousedown": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_x010503TeacherDeskIconInfo[i]]),
  3989. "onclick": U.UF.C.closure(function (obj) {
  3990. //防止拖动图标即打开了桌面应用
  3991. U.MD.D.click(this, obj);
  3992. }, [_x010503TeacherDeskIconInfo[i]])
  3993. }, _frag); //
  3994. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3995. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3996. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3997. }
  3998. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3999. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4000. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4001. continue
  4002. }
  4003. _content = $$("div", {
  4004. className: "U_MD_D_KO",
  4005. "onmousedown": U.UF.C.closure(function (obj) {
  4006. //防止拖动图标即打开了桌面应用
  4007. U.MD.D.click(this, obj);
  4008. }, [_x010504TeacherDeskIconInfo[i]]),
  4009. "onclick": U.UF.C.closure(function (obj) {
  4010. //防止拖动图标即打开了桌面应用
  4011. U.MD.D.click(this, obj);
  4012. }, [_x010504TeacherDeskIconInfo[i]])
  4013. }, _frag); //
  4014. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4015. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4016. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4017. }
  4018. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4019. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4020. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4021. continue
  4022. }
  4023. _content = $$("div", {
  4024. className: "U_MD_D_KO",
  4025. "onmousedown": U.UF.C.closure(function (obj) {
  4026. //防止拖动图标即打开了桌面应用
  4027. U.MD.D.click(this, obj);
  4028. }, [_x010204TeacherDeskIconInfo[i]]),
  4029. "onclick": U.UF.C.closure(function (obj) {
  4030. //防止拖动图标即打开了桌面应用
  4031. U.MD.D.click(this, obj);
  4032. }, [_x010204TeacherDeskIconInfo[i]])
  4033. }, _frag); //
  4034. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4035. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4036. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4037. }
  4038. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4039. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4040. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4041. continue
  4042. }
  4043. _content = $$("div", {
  4044. className: "U_MD_D_KO",
  4045. "onmousedown": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_trailTeacherDeskIconInfo[i]]),
  4049. "onclick": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_trailTeacherDeskIconInfo[i]])
  4053. }, _frag); //
  4054. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4055. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4056. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4057. }
  4058. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4059. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4060. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4061. continue
  4062. }
  4063. _content = $$("div", {
  4064. className: "U_MD_D_KO",
  4065. "onmousedown": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4069. "onclick": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4073. }, _frag); //
  4074. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4075. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4076. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4077. }
  4078. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4079. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4080. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4081. continue
  4082. }
  4083. _content = $$("div", {
  4084. className: "U_MD_D_KO",
  4085. "onmousedown": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_x010608TeacherDeskIconInfo[i]]),
  4089. "onclick": U.UF.C.closure(function (obj) {
  4090. //防止拖动图标即打开了桌面应用
  4091. U.MD.D.click(this, obj);
  4092. }, [_x010608TeacherDeskIconInfo[i]])
  4093. }, _frag); //
  4094. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4095. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4096. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4097. }
  4098. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4099. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4100. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4101. continue
  4102. }
  4103. _content = $$("div", {
  4104. className: "U_MD_D_KO",
  4105. "onmousedown": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_x010611TeacherDeskIconInfo[i]]),
  4109. "onclick": U.UF.C.closure(function (obj) {
  4110. //防止拖动图标即打开了桌面应用
  4111. U.MD.D.click(this, obj);
  4112. }, [_x010611TeacherDeskIconInfo[i]])
  4113. }, _frag); //
  4114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4117. }
  4118. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4119. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4120. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4121. continue
  4122. }
  4123. _content = $$("div", {
  4124. className: "U_MD_D_KO",
  4125. "onmousedown": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4129. "onclick": U.UF.C.closure(function (obj) {
  4130. //防止拖动图标即打开了桌面应用
  4131. U.MD.D.click(this, obj);
  4132. }, [_tianyuanTeacherDeskIconInfo[i]])
  4133. }, _frag); //
  4134. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4135. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4136. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4137. }
  4138. } else {
  4139. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4140. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4141. continue
  4142. }
  4143. _content = $$("div", {
  4144. className: "U_MD_D_KO",
  4145. "onmousedown": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_teacherDesktopIconInfo[i]]),
  4149. "onclick": U.UF.C.closure(function (obj) {
  4150. //防止拖动图标即打开了桌面应用
  4151. U.MD.D.click(this, obj);
  4152. }, [_teacherDesktopIconInfo[i]])
  4153. }, _frag); //
  4154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4157. }
  4158. }
  4159. } else {
  4160. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4161. _content = $$("div", {
  4162. className: "U_MD_D_KO",
  4163. style: { 'width': '124px', 'height': '145px' },
  4164. "onmousedown": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_easyDesktopIconInfo[i]]),
  4168. "onclick": U.UF.C.closure(function (obj) {
  4169. //防止拖动图标即打开了桌面应用
  4170. U.MD.D.click(this, obj);
  4171. }, [_easyDesktopIconInfo[i]])
  4172. }, _frag); //
  4173. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4174. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4175. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4176. }
  4177. }
  4178. if (type == 1) {
  4179. //加载好后给图标定位
  4180. U.MD.D.iconPostion($(_frag).Child());
  4181. } else {
  4182. //加载好后给图标定位
  4183. U.MD.D.iconPostion2($(_frag).Child());
  4184. }
  4185. //把图标加载到页面
  4186. el.appendChild(_frag);
  4187. }
  4188. /**
  4189. * 显示任务栏
  4190. *
  4191. * @param {element} 桌面元素
  4192. */
  4193. U.MD.D.I.displayTaskbar = function (el) {
  4194. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4195. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4196. //任务栏位置变化
  4197. U.selectEl(el).css({ "bottom": "0px" });
  4198. //桌面位置变话
  4199. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4200. }
  4201. }
  4202. //#region 桌面图标拖动逻辑
  4203. /**
  4204. * 桌面排列图标
  4205. *
  4206. * @param {element} 桌面元素
  4207. * @param {object} 上下相距的距离
  4208. * @param {object} 左右相距的距离
  4209. * @return {object} 命名空间
  4210. */
  4211. U.MD.D.iconPostion = function (childs, top, left) {
  4212. var i; //用于循环处理
  4213. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4214. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4215. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4216. for (i = 0; i < childs.length; i++) {
  4217. //如果竖排top超过了范围处理
  4218. if (top + 95 > US.height - 10) {
  4219. //left超过了页面范围处理,则向上重叠打印处理
  4220. if ((left + 180) > US.width) {
  4221. top -= 110;
  4222. left -= 90;
  4223. }
  4224. //没有超过范围,那么left+90添加到下一个竖排打印
  4225. else {
  4226. left += 90;
  4227. top = 15;
  4228. };
  4229. }
  4230. //给图标的位置赋值
  4231. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4232. if (i < childs.length - 1) {
  4233. //页面图标每次向下加95
  4234. top += 95;
  4235. }
  4236. }
  4237. //返回最后调用的图标的位置
  4238. return [top, left];
  4239. }
  4240. /**
  4241. * 桌面排列图标
  4242. *
  4243. * @param {element} 桌面元素
  4244. * @param {object} 上下相距的距离
  4245. * @param {object} 左右相距的距离
  4246. * @return {object} 命名空间
  4247. */
  4248. U.MD.D.iconPostion2 = function (childs, top, left) {
  4249. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4250. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4251. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4252. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4253. for (i = 0; i < childs.length; i++) {
  4254. //如果竖排top超过了范围处理
  4255. if (left + 150 > US.width - 10) {
  4256. //left超过了页面范围处理,则向上重叠打印处理
  4257. if ((top + 180) > US.Height) {
  4258. top -= 150;
  4259. left -= 150;
  4260. }
  4261. //没有超过范围,那么left+90添加到下一个竖排打印
  4262. else {
  4263. top += 150;
  4264. left = ol;
  4265. };
  4266. }
  4267. //给图标的位置赋值
  4268. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4269. if (i < childs.length - 1) {
  4270. //页面图标每次向下加95
  4271. left += 150;
  4272. }
  4273. }
  4274. //返回最后调用的图标的位置
  4275. return [top, left];
  4276. }
  4277. /**
  4278. * 桌面点击事件逻辑
  4279. *
  4280. * @param {element} 桌面元素
  4281. * @param {object} 上下相距的距离
  4282. * @param {object} 左右相距的距离
  4283. * @return {object} 命名空间
  4284. */
  4285. U.MD.D.click = function (el, obj) {
  4286. var _buttonnumber = event.button; //点击的按钮的事件值
  4287. var _userinfo = US.userInfo;
  4288. U.UF.EV.stopBubble(); //阻止向上冒泡
  4289. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4290. if (_buttonnumber < 2) {
  4291. //如果是click事件的处理
  4292. if (event.type == "click") {
  4293. //如果元素在mousemove事件中没有移动则出发click事件
  4294. if (!U.MD.D.I.IsDrag) {
  4295. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4296. U.alert("请先登录您的账号!");
  4297. setTimeout(() => {
  4298. U.MD.U.L.login();
  4299. }, 2000);
  4300. } else {
  4301. //打开应用处理
  4302. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4303. }
  4304. }
  4305. }
  4306. //如果是mouse事件的处理
  4307. else {
  4308. if (US.Config.type == '1') {
  4309. //拖动处理,添加拖动和拖动结束事件
  4310. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4311. }
  4312. }
  4313. U.MD.D.I.IsDrag = false;
  4314. }
  4315. }
  4316. /**
  4317. * 拖动的处理
  4318. *
  4319. */
  4320. U.MD.D.iconMove = function () {
  4321. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4322. U.MD.D.I.IsDrag = true;
  4323. }
  4324. /**
  4325. * 拖动结束后,这里是定位处理,以网状的形式定位
  4326. *
  4327. * @param {element} 拖动的元素
  4328. * @return {object} 命名空间
  4329. */
  4330. U.MD.D.iconUp = function (el) {
  4331. var _top = 15,
  4332. _left = 20,
  4333. _margin,
  4334. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4335. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4336. if (_positioninfo["OT"] > 15) {
  4337. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4338. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4339. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4340. }
  4341. if (_positioninfo["OL"] > 20) {
  4342. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4343. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4344. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4345. }
  4346. //while循环判断么一个重叠的元素
  4347. do {
  4348. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4349. _top = _positioninfo[0] + 95; //得到定位后的top
  4350. _left = _positioninfo[1]; //得到定位后的left
  4351. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4352. }
  4353. /**
  4354. * 判断拖动后图标是否重叠
  4355. *
  4356. * @param {element} 拖动的元素
  4357. * @param {element} 桌面所有的元素
  4358. * @param {array} 拖动元素的位置
  4359. ----------[0] 上 top
  4360. ----------[1] 左 left
  4361. * @return {object} 命名空间
  4362. */
  4363. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4364. //循环所有的图标
  4365. for (var i = 0; i < childs.length; i++) {
  4366. //判断有没有和该图标诶子重叠的元素
  4367. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4368. return childs[i]; //如果有返回
  4369. }
  4370. }
  4371. }
  4372. //#endregion
  4373. //#endregion
  4374. //#region 桌面应用
  4375. /**
  4376. * 打开应用
  4377. *
  4378. * @param {string} 类型
  4379. -----------------Disk 网盘系统
  4380. -----------------PDisk 学习系统网盘
  4381. -----------------Poto 图片
  4382. -----------------Video 视频
  4383. -----------------Music 音乐
  4384. -----------------Word word
  4385. -----------------Excel excel
  4386. -----------------Txt 记事本
  4387. -----------------PB 学习系统
  4388. -----------------Blog 朋友圈系统
  4389. -----------------FTP ftp系统
  4390. -----------------Group 好友群
  4391. -----------------SY 首页系统
  4392. -----------------Set 个人设置
  4393. -----------------XSet 系统设置
  4394. -----------------App 我们所有的app
  4395. -----------------BC c.1473.cn 平台
  4396. -----------------CWeb d.1473.cn 变成平台
  4397. -----------------其他的外联系统 我们统一用iframe打开
  4398. * @param {array} 类型
  4399. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4400. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4401. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4402. 如果第一个参数为其他,则无第二个参数
  4403. * @returns {array}
  4404. */
  4405. window.addEventListener('message', function (e) { // 监听 message 事件
  4406. // alert(e.data.type);
  4407. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4408. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4409. //3是展示全部阶段 2学生 1老师 4专家
  4410. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4411. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4412. //3是展示全部阶段 2学生 1老师 4专家
  4413. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4414. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4415. //3是展示全部阶段 2学生 1老师 4专家
  4416. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4417. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4419. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4426. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4428. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4429. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4430. //3是展示全部阶段 2学生 1老师 4专家
  4431. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4432. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4433. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4434. U.MD.D.I.selectUser();
  4435. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4436. var _formel = document.getElementById("study");
  4437. U.UF.F.windowZooming(_formel);
  4438. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4439. var _formel = document.getElementById("studyDetail");
  4440. U.UF.F.windowZooming(_formel);
  4441. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4442. var _formel = document.getElementById("studyDetail");
  4443. U.UF.F.windowZooming(_formel);
  4444. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4445. var _formel = document.getElementById("studentStudy");
  4446. U.UF.F.windowZooming(_formel);
  4447. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4448. // var _formel = document.getElementById("study");
  4449. //如果最大化了,那么就把他缩小
  4450. // if (_formel.ismaximize) {
  4451. // return;
  4452. // }
  4453. // U.UF.F.windowZooming(_formel);
  4454. // U.UF.F.topWindow(_formel);
  4455. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4456. // var _formel = document.getElementById("studyDetail");
  4457. //如果最大化了,那么就把他缩小
  4458. // if (_formel.ismaximize) {
  4459. // return;
  4460. // }
  4461. // U.UF.F.windowZooming(_formel);
  4462. // U.UF.F.topWindow(_formel);
  4463. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4464. // var _formel = document.getElementById("studentStudy");
  4465. // if (_formel.ismaximize) {
  4466. // return;
  4467. // }
  4468. // U.UF.F.windowZooming(_formel);
  4469. // U.UF.F.topWindow(_formel);
  4470. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4471. var _formel = document.getElementById("study");
  4472. // if (_formel.ismaximize) {
  4473. // return;
  4474. // }
  4475. // U.UF.F.windowZooming(_formel);
  4476. U.UF.F.topWindow(_formel);
  4477. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4478. var _formel = document.getElementById("studentIndex");
  4479. U.UF.F.windowZooming(_formel);
  4480. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4481. var _formel = document.getElementById("studyDetailS");
  4482. U.UF.F.windowZooming(_formel);
  4483. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4484. var _formel = document.getElementById("studioIndex");
  4485. U.UF.F.windowZooming(_formel);
  4486. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4487. var _formel = document.getElementById("studyDetailStudio");
  4488. U.UF.F.windowZooming(_formel);
  4489. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4490. var _formel = document.getElementById("studyDetailStudio");
  4491. U.UF.F.windowZooming(_formel);
  4492. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4493. var _formel = document.getElementById("studyDetailNT");
  4494. U.UF.F.windowZooming(_formel);
  4495. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4496. var _formel = document.getElementById("studyDetailS");
  4497. U.UF.F.windowZooming(_formel);
  4498. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4499. var _formel = document.getElementById("studyDetailS");
  4500. U.UF.F.topWindow(_formel);
  4501. } else if (e.data.tools && e.data.tools == "1") {
  4502. // U.MD.D.I.openApplication("whiteboard")
  4503. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4504. } else if (e.data.tools && e.data.tools == "2") {
  4505. U.MD.D.I.openApplication("note")
  4506. } else if (e.data.tools && e.data.tools == "3") {
  4507. // U.MD.D.I.openApplication("mind")
  4508. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4509. } else if (e.data.tools && e.data.tools == "4") {
  4510. U.MD.D.I.openApplication("investigation")
  4511. } else if (e.data.tools && e.data.tools == "6") {
  4512. // U.MD.D.I.openApplication("doc")
  4513. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4514. } else if (e.data.tools && e.data.tools == "7") {
  4515. // U.MD.D.I.openApplication("mindNetwork")
  4516. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4517. } else if (e.data.tools && e.data.tools == "8") {
  4518. U.MD.D.I.openApplication("library")
  4519. } else if (e.data.tools && e.data.tools == "17") {
  4520. U.MD.D.I.openApplication("stuLibrary")
  4521. } else if (e.data.tools && e.data.tools == "18") {
  4522. U.MD.D.I.openApplication("train")
  4523. } else if (e.data.tools && e.data.tools == "21") {
  4524. U.MD.D.I.openApplication("program")
  4525. } else if (e.data.tools && e.data.tools == "22") {
  4526. U.MD.D.I.openApplication("AIprogram2")
  4527. } else if (e.data.tools && e.data.tools == "23") {
  4528. U.MD.D.I.openApplication("Pythonprogram")
  4529. } else if (e.data.tools && e.data.tools == "24") {
  4530. U.MD.D.I.openApplication("AIprogram")
  4531. } else if (e.data.tools && e.data.tools == "25") {
  4532. U.MD.D.I.openApplication("sys")
  4533. } else if (e.data.tools && e.data.tools == "26") {
  4534. // U.MD.D.I.openApplication("courseDesign")
  4535. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4536. } else if (e.data.tools && e.data.tools == "31") {
  4537. U.MD.D.I.openApplication("netWorkPanel")
  4538. } else if (e.data.tools && e.data.tools == "32") {
  4539. U.MD.D.I.openApplication("codeEdit")
  4540. } else if (e.data.tools && e.data.tools == "57") {
  4541. U.MD.D.I.openApplication("CocoPi")
  4542. } else if (e.data.tools && e.data.tools == "63") {
  4543. U.MD.D.I.openApplication("Wood")
  4544. } else if (e.data.tools && e.data.tools == "58") {
  4545. U.MD.D.I.openApplication("car")
  4546. } else if (e.data.tools && e.data.tools == "59") {
  4547. U.MD.D.I.openApplication("lineSearch")
  4548. } else if (e.data.tools && e.data.tools == "60") {
  4549. U.MD.D.I.openApplication("deepLearning")
  4550. } else if (e.data.tools && e.data.tools == "61") {
  4551. U.MD.D.I.openApplication("allHistory")
  4552. } else if (e.data.tools && e.data.tools == "28") {
  4553. U.MD.D.I.openApplication("translation")
  4554. } else if (e.data.tools && e.data.tools == "37") {
  4555. U.MD.D.I.openApplication("mohe")
  4556. } else if (e.data.tools && e.data.tools == "38") {
  4557. U.MD.D.I.openApplication("24game")
  4558. } else if (e.data.tools && e.data.tools == "39") {
  4559. U.MD.D.I.openApplication("GeoGebra")
  4560. } else if (e.data.tools && e.data.tools == "43") {
  4561. U.MD.D.I.openApplication("studentEvaluate")
  4562. } else if (e.data.tools && e.data.tools == "44") {
  4563. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4564. } else if (e.data.tools && e.data.tools == "46") {
  4565. U.MD.D.I.openApplication("project")
  4566. } else if (e.data.tools && e.data.tools == "71") {
  4567. U.MD.D.I.openApplication("aigptCourse")
  4568. } else if (e.data.tools && e.data.tools == "1s") {
  4569. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "3s") {
  4571. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "6s") {
  4573. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "1studio") {
  4575. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "3studio") {
  4577. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "6studio") {
  4579. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "3y") {
  4581. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "1y") {
  4583. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4584. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4585. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4586. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4587. U.MD.D.I.openApplication("AIAnalyse")
  4588. } else if (e.data.tools && e.data.tools == "1teacher") {
  4589. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "3teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "7teacher") {
  4593. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4595. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4597. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4598. } else if (e.data.tools && e.data.tools == "1E") {
  4599. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4600. } else if (e.data.tools && e.data.tools == "3E") {
  4601. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "57y") {
  4603. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57u") {
  4605. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4606. } else if (e.data.tools && e.data.tools == "57teacher") {
  4607. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4608. } else if (e.data.tools && e.data.tools == "64") {
  4609. U.MD.D.I.openApplication("AIChat")
  4610. } else if (e.data.tools && e.data.tools == "66") {
  4611. U.MD.D.I.openApplication("formulaEdi")
  4612. } else if (e.data.tools && e.data.tools == "67") {
  4613. U.MD.D.I.openApplication("molStr")
  4614. } else if (e.data.tools && e.data.tools == "68") {
  4615. U.MD.D.I.openApplication("timeAxis")
  4616. } else if (e.data.tools && e.data.tools == "openCourse") {
  4617. let _data = {
  4618. typea: e.data.typea || '',
  4619. typeb: e.data.typeb || '',
  4620. typed: e.data.typed || '',
  4621. }
  4622. U.MD.D.I.openInApplication("index", _data)
  4623. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4624. let _data = {
  4625. classid: e.data.classid || '',
  4626. }
  4627. U.MD.D.I.openInApplication("dataClass", _data)
  4628. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4629. let _data = {
  4630. cid: e.data.cid || '',
  4631. gid: e.data.gid || '',
  4632. }
  4633. U.MD.D.I.openInApplication("opencCscl", _data)
  4634. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4635. U.MD.D.I.openApplication("dataBoardTest")
  4636. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4637. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4641. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4643. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4645. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4646. }else if (e.data.tools && e.data.tools == "loginSz") {
  4647. U.MD.D.I.openInApplication("loginSz")
  4648. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4649. if($('#classroom_observation_board')[0]){
  4650. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4651. }
  4652. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4653. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4654. if($('#classroom_observation_ob_comment')[0]){
  4655. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4656. }
  4657. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4658. }else if (e.data.tools && e.data.tools == "logout"){
  4659. U.MD.U.LO.logoutSystem()
  4660. }else if (e.data.tools && e.data.tools == "getLogin"){
  4661. let _iframe = $('#UI_Login')[0];
  4662. if (_iframe) {
  4663. var userInfo = US.userInfo;
  4664. var type = 2
  4665. if(userInfo && userInfo.userid){
  4666. type = 1
  4667. }
  4668. _contentWindow = _iframe.contentWindow;
  4669. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4670. }
  4671. }
  4672. });
  4673. U.MD.D.I.selectUser = function () {
  4674. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4675. if (res.value[0].length > 0) {
  4676. US.userInfo = res.value[0][0];
  4677. $(".userName")[0].innerHTML = US.userInfo.username;
  4678. }
  4679. }, [], { "type": "GET", "withCredentials": true });
  4680. }
  4681. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4682. var _userinfo = US.userInfo, //登录用户信息
  4683. _userid = US.userInfo.userid, //登录用户id
  4684. _oid = _userinfo.organizeid,
  4685. _type = US.userInfo.type,
  4686. _org = US.userInfo.org,
  4687. _role = US.userInfo.role,
  4688. _classId = US.userInfo.classid;
  4689. if (_type == 4) {
  4690. tType = 4
  4691. }
  4692. switch (str) {
  4693. case "studyDetailNT": //无终端模式
  4694. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4695. setTimeout(() => {
  4696. U.MD.U.L.login();
  4697. }, 2000);
  4698. } else {
  4699. _formdiv = new U.UF.UI.form(
  4700. "课程详情",
  4701. $$("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 }), {
  4702. "id": "studyDetailNT",
  4703. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4704. "onresize": function () { }
  4705. }, {
  4706. closecallback: function () { }
  4707. }, { "style": { "height": "36px" } }).form; //创建窗体
  4708. _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); } }
  4709. break;
  4710. }
  4711. case "studyDetail":
  4712. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4713. setTimeout(() => {
  4714. U.MD.U.L.login();
  4715. }, 2000);
  4716. } else {
  4717. _formdiv = new U.UF.UI.form(
  4718. "课程详情",
  4719. $$("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 }), {
  4720. "id": "studyDetail",
  4721. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4722. "onresize": function () { }
  4723. }, {
  4724. closecallback: function () { }
  4725. }, { "style": { "height": "36px" } }).form; //创建窗体
  4726. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4727. break;
  4728. }
  4729. case "studyDetailTrain":
  4730. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4731. setTimeout(() => {
  4732. U.MD.U.L.login();
  4733. }, 2000);
  4734. } else {
  4735. _formdiv = new U.UF.UI.form(
  4736. "培训详情",
  4737. $$("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 }), {
  4738. "id": "studyDetailTrain",
  4739. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4740. "onresize": function () { }
  4741. }, {
  4742. closecallback: function () { }
  4743. }, { "style": { "height": "36px" } }).form; //创建窗体
  4744. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4745. break;
  4746. }
  4747. case "studyDetailS":
  4748. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4749. setTimeout(() => {
  4750. U.MD.U.L.login();
  4751. }, 2000);
  4752. } else {
  4753. _formdiv = new U.UF.UI.form(
  4754. "项目详情",
  4755. $$("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 }), {
  4756. "id": "studyDetailS",
  4757. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4758. "onresize": function () { }
  4759. }, {
  4760. closecallback: function () { }
  4761. }, { "style": { "height": "36px" } }).form; //创建窗体
  4762. _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); } }
  4763. break;
  4764. }
  4765. case "studyDetailStudio":
  4766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4767. setTimeout(() => {
  4768. U.MD.U.L.login();
  4769. }, 2000);
  4770. } else {
  4771. _formdiv = new U.UF.UI.form(
  4772. "工作详情",
  4773. $$("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 }), {
  4774. "id": "studyDetailStudio",
  4775. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4776. "onresize": function () { }
  4777. }, {
  4778. closecallback: function () { }
  4779. }, { "style": { "height": "36px" } }).form; //创建窗体
  4780. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studioCourse.png)" }, "name": "工作详情", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4781. break;
  4782. }
  4783. case "studyDetailS5":
  4784. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4785. setTimeout(() => {
  4786. U.MD.U.L.login();
  4787. }, 2000);
  4788. } else {
  4789. _formdiv = new U.UF.UI.form(
  4790. "项目详情",
  4791. $$("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 }), {
  4792. "id": "studyDetailS",
  4793. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4794. "onresize": function () { }
  4795. }, {
  4796. closecallback: function () { }
  4797. }, { "style": { "height": "36px" } }).form; //创建窗体
  4798. _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); } }
  4799. break;
  4800. }
  4801. case "studyDetailGM":
  4802. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4803. setTimeout(() => {
  4804. U.MD.U.L.login();
  4805. }, 2000);
  4806. } else {
  4807. _formdiv = new U.UF.UI.form(
  4808. "课程详情",
  4809. $$("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 }), {
  4810. "id": "studyDetail",
  4811. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4812. "onresize": function () { }
  4813. }, {
  4814. closecallback: function () { }
  4815. }, { "style": { "height": "36px" } }).form; //创建窗体
  4816. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  4817. break;
  4818. }
  4819. case "hanUrl":
  4820. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4821. setTimeout(() => {
  4822. U.MD.U.L.login();
  4823. }, 2000);
  4824. } else {
  4825. _formdiv = new U.UF.UI.form(
  4826. "汉字宫",
  4827. $$("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" }), {
  4828. "id": "hanUrl",
  4829. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4830. "onresize": function () { }
  4831. }, {
  4832. closecallback: function () { }
  4833. }, { "style": { "height": "36px" } }).form; //创建窗体
  4834. _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); } }
  4835. break;
  4836. }
  4837. case "index":
  4838. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4839. setTimeout(() => {
  4840. U.MD.U.L.login();
  4841. }, 2000);
  4842. } else {
  4843. _formdiv = new U.UF.UI.form(
  4844. "课程中心",
  4845. $$("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 }), {
  4846. "id": "study",
  4847. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4848. "onresize": function () { }
  4849. }, {
  4850. closecallback: function () { }
  4851. }, { "style": { "height": "36px" } }).form; //创建窗体
  4852. _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); } }
  4853. break;
  4854. }
  4855. case "dataClass":
  4856. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4857. setTimeout(() => {
  4858. U.MD.U.L.login();
  4859. }, 2000);
  4860. } else {
  4861. _formdiv = new U.UF.UI.form(
  4862. "数据报告",
  4863. $$("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 }), {
  4864. "id": "dataClass",
  4865. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4866. "onresize": function () { }
  4867. }, {
  4868. closecallback: function () { }
  4869. }, { "style": { "height": "36px" } }).form; //创建窗体
  4870. _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); } }
  4871. break;
  4872. }
  4873. case "opencCscl":
  4874. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4875. setTimeout(() => {
  4876. U.MD.U.L.login();
  4877. }, 2000);
  4878. } else {
  4879. _formdiv = new U.UF.UI.form(
  4880. "协同建构",
  4881. $$("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://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4882. "id": "futureClass",
  4883. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4884. "onresize": function () { }
  4885. }, {
  4886. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4887. }, { "style": { "height": "36px" } }).form; //创建窗体
  4888. _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); } }
  4889. break;
  4890. }
  4891. case "openCourseUpdate":
  4892. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4893. setTimeout(() => {
  4894. U.MD.U.L.login();
  4895. }, 2000);
  4896. } else {
  4897. _formdiv = new U.UF.UI.form(
  4898. "课程管理",
  4899. $$("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 }), {
  4900. "id": "openCourseUpdate",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. break;
  4907. }
  4908. case "openNewCourseUpdate":
  4909. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4910. setTimeout(() => {
  4911. U.MD.U.L.login();
  4912. }, 2000);
  4913. } else {
  4914. _formdiv = new U.UF.UI.form(
  4915. "课程管理",
  4916. $$("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 }), {
  4917. "id": "openCourseUpdate",
  4918. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4919. "onresize": function () { }
  4920. }, {
  4921. closecallback: function () { }
  4922. }, { "style": { "height": "36px" } }).form; //创建窗体
  4923. break;
  4924. }
  4925. case "openCourseEUpdate":
  4926. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4927. setTimeout(() => {
  4928. U.MD.U.L.login();
  4929. }, 2000);
  4930. } else {
  4931. _formdiv = new U.UF.UI.form(
  4932. "课程管理",
  4933. $$("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 }), {
  4934. "id": "openCourseUpdate",
  4935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4936. "onresize": function () { }
  4937. }, {
  4938. closecallback: function () { }
  4939. }, { "style": { "height": "36px" } }).form; //创建窗体
  4940. break;
  4941. }
  4942. case "openCourseAiUpdate":
  4943. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4944. setTimeout(() => {
  4945. U.MD.U.L.login();
  4946. }, 2000);
  4947. } else {
  4948. _formdiv = new U.UF.UI.form(
  4949. "课程管理",
  4950. $$("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 }), {
  4951. "id": "openCourseUpdate",
  4952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. break;
  4958. }
  4959. case "openCourseNewUpdate":
  4960. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4961. setTimeout(() => {
  4962. U.MD.U.L.login();
  4963. }, 2000);
  4964. } else {
  4965. _formdiv = new U.UF.UI.form(
  4966. "课程管理",
  4967. $$("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 }), {
  4968. "id": "openCourseUpdate",
  4969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4970. "onresize": function () { }
  4971. }, {
  4972. closecallback: function () { }
  4973. }, { "style": { "height": "36px" } }).form; //创建窗体
  4974. break;
  4975. }
  4976. case "inviteLoginSz":
  4977. _formdiv = new U.UF.UI.form(
  4978. "随机码登录",
  4979. $$("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 }), {
  4980. "id": "loginSz",
  4981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4982. "onresize": function () { }
  4983. }, {
  4984. closecallback: function () { }
  4985. }, { "style": { "height": "36px" } }).form; //创建窗体
  4986. break;
  4987. case "loginSz":
  4988. _formdiv = new U.UF.UI.form(
  4989. "教师登录",
  4990. $$("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" }), {
  4991. "id": "loginSz",
  4992. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. break;
  4998. case "teacher":
  4999. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5000. setTimeout(() => {
  5001. U.MD.U.L.login();
  5002. }, 2000);
  5003. } else {
  5004. _formdiv = new U.UF.UI.form(
  5005. "教师管理",
  5006. $$("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 }), {
  5007. "id": "teacher",
  5008. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5009. "onresize": function () { }
  5010. }, {
  5011. closecallback: function () { }
  5012. }, { "style": { "height": "36px" } }).form; //创建窗体
  5013. break;
  5014. }
  5015. case "dataBoardSZArea":
  5016. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5017. setTimeout(() => {
  5018. U.MD.U.L.login();
  5019. }, 2000);
  5020. } else {
  5021. _formdiv = new U.UF.UI.form(
  5022. "综合数据看板",
  5023. $$("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 }), {
  5024. "id": "dataBoardSZArea",
  5025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5026. "onresize": function () { }
  5027. }, {
  5028. closecallback: function () { }
  5029. }, { "style": { "height": "36px" } }).form; //创建窗体
  5030. break;
  5031. }
  5032. case "dataBoardSZCity":
  5033. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5034. setTimeout(() => {
  5035. U.MD.U.L.login();
  5036. }, 2000);
  5037. } else {
  5038. _formdiv = new U.UF.UI.form(
  5039. "综合数据看板",
  5040. $$("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 }), {
  5041. "id": "dataBoardSZCity",
  5042. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. break;
  5048. }
  5049. case "classroom_observation_board":
  5050. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5051. setTimeout(() => {
  5052. U.MD.U.L.login();
  5053. }, 2000);
  5054. } else {
  5055. _formdiv = new U.UF.UI.form(
  5056. "课堂观察",
  5057. $$("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 }), {
  5058. "id": "classroom_observation_board",
  5059. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5060. "onresize": function () { }
  5061. }, {
  5062. closecallback: function () { }
  5063. }, { "style": { "height": "36px" } }).form; //创建窗体
  5064. break;
  5065. }
  5066. case "classroom_observation_ob_comment":
  5067. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5068. setTimeout(() => {
  5069. U.MD.U.L.login();
  5070. }, 2000);
  5071. } else {
  5072. _formdiv = new U.UF.UI.form(
  5073. "课堂审核",
  5074. $$("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 }), {
  5075. "id": "classroom_observation_ob_comment",
  5076. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. break;
  5082. }
  5083. }
  5084. }
  5085. U.MD.D.I.openApplication = function (str, obj, info) {
  5086. obj = obj || {};
  5087. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5088. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5089. _userinfo = US.userInfo, //登录用户信息
  5090. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5091. _oid = obj.organizeid || _userinfo.organizeid,
  5092. _type = US.userInfo.type,
  5093. _org = US.userInfo.org,
  5094. _role = US.userInfo.role,
  5095. _classId = US.userInfo.classid,
  5096. _TscreenType = 1
  5097. _screenType = 2,
  5098. _SscreenType = 3;
  5099. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5100. return;
  5101. }
  5102. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5103. switch (str) {
  5104. case "studnetProject": //好友打开
  5105. _formdiv = new U.UF.UI.form(
  5106. "我的项目",
  5107. $$("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 }), {
  5108. "id": "studnetProject",
  5109. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5110. "onresize": function () { }
  5111. }, {
  5112. closecallback: function () { }
  5113. }, { "style": { "height": "36px" } }).form; //创建窗体
  5114. _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); } }
  5115. break;
  5116. case "studentEvaluate": //好友打开
  5117. _formdiv = new U.UF.UI.form(
  5118. "我的评价",
  5119. $$("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 }), {
  5120. "id": "studentEvaluate",
  5121. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. case "my":
  5129. _formdiv = new U.UF.UI.form(
  5130. "我的资料",
  5131. $$("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 }), {
  5132. "id": "my",
  5133. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5134. "onresize": function () { }
  5135. }, {
  5136. closecallback: function () { }
  5137. }, { "style": { "height": "36px" } }).form; //创建窗体
  5138. _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); } }
  5139. break;
  5140. case "program":
  5141. _formdiv = new U.UF.UI.form(
  5142. "编程平台",
  5143. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5144. "id": "program",
  5145. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5146. "onresize": function () { }
  5147. }, {
  5148. closecallback: function () { }
  5149. }, { "style": { "height": "36px" } }).form; //创建窗体
  5150. _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); } }
  5151. break;
  5152. case "library":
  5153. _formdiv = new U.UF.UI.form(
  5154. "素材库",
  5155. $$("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 }), {
  5156. "id": "library",
  5157. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _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); } }
  5163. break;
  5164. case "whiteboard":
  5165. _formdiv = new U.UF.UI.form(
  5166. "电子白板",
  5167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5168. "id": "whiteboard",
  5169. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5170. "onresize": function () { }
  5171. }, {
  5172. closecallback: function () { }
  5173. }, { "style": { "height": "36px" } }).form; //创建窗体
  5174. _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); } }
  5175. break;
  5176. case "investigation":
  5177. _formdiv = new U.UF.UI.form(
  5178. "问卷调查",
  5179. $$("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 }), {
  5180. "id": "investigation",
  5181. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5182. "onresize": function () { }
  5183. }, {
  5184. closecallback: function () { }
  5185. }, { "style": { "height": "36px" } }).form; //创建窗体
  5186. _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); } }
  5187. break;
  5188. case "note":
  5189. _formdiv = new U.UF.UI.form(
  5190. "便签分类",
  5191. $$("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 }), {
  5192. "id": "note",
  5193. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _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); } }
  5199. break;
  5200. // case "score":
  5201. // _formdiv = new U.UF.UI.form(
  5202. // "量规评分",
  5203. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5204. // "id": "score",
  5205. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5206. // "onresize": function() {}
  5207. // }, {
  5208. // closecallback: function() {}
  5209. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5210. // _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); } }
  5211. // break;
  5212. case "mind":
  5213. _formdiv = new U.UF.UI.form(
  5214. "思维导图",
  5215. $$("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"
  5216. "id": "mind",
  5217. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5218. "onresize": function () { }
  5219. }, {
  5220. closecallback: function () { }
  5221. }, { "style": { "height": "36px" } }).form; //创建窗体
  5222. _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); } }
  5223. break;
  5224. case "doc":
  5225. // U.MD.D.I.isRoom();
  5226. _formdiv = new U.UF.UI.form(
  5227. "协同文档",
  5228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5229. "id": "doc",
  5230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5236. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5237. // })
  5238. _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); } }
  5239. break;
  5240. case "studentStudy":
  5241. _formdiv = new U.UF.UI.form(
  5242. "课程中心",
  5243. $$("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
  5244. "id": "studentStudy",
  5245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5246. "onresize": function () { }
  5247. }, {
  5248. closecallback: function () { }
  5249. }, { "style": { "height": "36px" } }).form; //创建窗体
  5250. _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); } }
  5251. break;
  5252. case "train": //好友打开
  5253. _formdiv = new U.UF.UI.form(
  5254. "训练平台",
  5255. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5256. "id": "train",
  5257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5258. "onresize": function () { }
  5259. }, {
  5260. closecallback: function () { }
  5261. }, { "style": { "height": "36px" } }).form; //创建窗体
  5262. _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); } }
  5263. break;
  5264. case "mindNetwork": //好友打开
  5265. _formdiv = new U.UF.UI.form(
  5266. "思维网格",
  5267. $$("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 }), {
  5268. "id": "mindNetwork",
  5269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5270. "onresize": function () { }
  5271. }, {
  5272. closecallback: function () { }
  5273. }, { "style": { "height": "36px" } }).form; //创建窗体
  5274. _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); } }
  5275. break;
  5276. case "studentClassRoom": //好友打开
  5277. _formdiv = new U.UF.UI.form(
  5278. "实时课堂",
  5279. $$("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 }), {
  5280. "id": "studentClassRoom",
  5281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5282. "onresize": function () { }
  5283. }, {
  5284. closecallback: function () { }
  5285. }, { "style": { "height": "36px" } }).form; //创建窗体
  5286. _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); } }
  5287. setTimeout(() => {
  5288. U.UF.F.windowZooming(_formdiv)
  5289. }, 0);
  5290. break;
  5291. }
  5292. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5293. switch (str) {
  5294. case "studnetProject": //好友打开
  5295. _formdiv = new U.UF.UI.form(
  5296. "我的项目",
  5297. $$("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 }), {
  5298. "id": "studnetProject",
  5299. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5300. "onresize": function () { }
  5301. }, {
  5302. closecallback: function () { }
  5303. }, { "style": { "height": "36px" } }).form; //创建窗体
  5304. _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); } }
  5305. break;
  5306. case "studentEvaluate": //好友打开
  5307. _formdiv = new U.UF.UI.form(
  5308. "我的评价",
  5309. $$("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 }), {
  5310. "id": "studentEvaluate",
  5311. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5312. "onresize": function () { }
  5313. }, {
  5314. closecallback: function () { }
  5315. }, { "style": { "height": "36px" } }).form; //创建窗体
  5316. _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); } }
  5317. break;
  5318. case "my":
  5319. _formdiv = new U.UF.UI.form(
  5320. "我的资料",
  5321. $$("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 }), {
  5322. "id": "my",
  5323. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5324. "onresize": function () { }
  5325. }, {
  5326. closecallback: function () { }
  5327. }, { "style": { "height": "36px" } }).form; //创建窗体
  5328. _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); } }
  5329. break;
  5330. case "program":
  5331. _formdiv = new U.UF.UI.form(
  5332. "编程平台",
  5333. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5334. "id": "program",
  5335. "style": { "width": "70%", "height": "90%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5341. break;
  5342. case "library":
  5343. _formdiv = new U.UF.UI.form(
  5344. "素材库",
  5345. $$("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 }), {
  5346. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5353. break;
  5354. case "whiteboard":
  5355. _formdiv = new U.UF.UI.form(
  5356. "电子白板",
  5357. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5358. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5365. break;
  5366. case "investigation":
  5367. _formdiv = new U.UF.UI.form(
  5368. "问卷调查",
  5369. $$("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 }), {
  5370. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5377. break;
  5378. case "note":
  5379. _formdiv = new U.UF.UI.form(
  5380. "便签分类",
  5381. $$("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 }), {
  5382. "id": "note",
  5383. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5384. "onresize": function () { }
  5385. }, {
  5386. closecallback: function () { }
  5387. }, { "style": { "height": "36px" } }).form; //创建窗体
  5388. _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); } }
  5389. break;
  5390. // case "score":
  5391. // _formdiv = new U.UF.UI.form(
  5392. // "量规评分",
  5393. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5394. // "id": "score",
  5395. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5396. // "onresize": function() {}
  5397. // }, {
  5398. // closecallback: function() {}
  5399. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5400. // _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); } }
  5401. // break;
  5402. case "mind":
  5403. _formdiv = new U.UF.UI.form(
  5404. "思维导图",
  5405. $$("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"
  5406. "id": "mind",
  5407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5408. "onresize": function () { }
  5409. }, {
  5410. closecallback: function () { }
  5411. }, { "style": { "height": "36px" } }).form; //创建窗体
  5412. _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); } }
  5413. break;
  5414. case "doc":
  5415. // U.MD.D.I.isRoom();
  5416. _formdiv = new U.UF.UI.form(
  5417. "协同文档",
  5418. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5419. "id": "doc",
  5420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5426. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5427. })
  5428. _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); } }
  5429. break;
  5430. case "train": //好友打开
  5431. _formdiv = new U.UF.UI.form(
  5432. "训练平台",
  5433. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5434. "id": "train",
  5435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "studentStudy":
  5443. _formdiv = new U.UF.UI.form(
  5444. "课程中心",
  5445. $$("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
  5446. "id": "studentStudy",
  5447. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. break;
  5454. case "mindNetwork": //好友打开
  5455. _formdiv = new U.UF.UI.form(
  5456. "思维网格",
  5457. $$("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 }), {
  5458. "id": "mindNetwork",
  5459. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "studentClassRoom": //好友打开
  5467. _formdiv = new U.UF.UI.form(
  5468. "实时课堂",
  5469. $$("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 }), {
  5470. "id": "studentClassRoom",
  5471. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. setTimeout(() => {
  5478. U.UF.F.windowZooming(_formdiv)
  5479. }, 0);
  5480. break;
  5481. }
  5482. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5483. //选择应用处理
  5484. switch (str) {
  5485. case "project": //好友打开
  5486. _formdiv = new U.UF.UI.form(
  5487. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5488. $$("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 }), {
  5489. "id": "project",
  5490. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //创建窗体
  5495. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5496. break;
  5497. case "student":
  5498. _formdiv = new U.UF.UI.form(
  5499. "学生管理",
  5500. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  5501. "id": "student",
  5502. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5503. "onresize": function () { }
  5504. }, {
  5505. closecallback: function () { }
  5506. }, { "style": { "height": "36px" } }).form; //创建窗体
  5507. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5508. break;
  5509. case "evaluate":
  5510. _formdiv = new U.UF.UI.form(
  5511. "学生评价",
  5512. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5513. "id": "evaluate",
  5514. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5515. "onresize": function () { }
  5516. }, {
  5517. closecallback: function () { }
  5518. }, { "style": { "height": "36px" } }).form; //创建窗体
  5519. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5520. break;
  5521. case "sys":
  5522. _formdiv = new U.UF.UI.form(
  5523. "目标管理",
  5524. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5525. "id": "sys",
  5526. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5532. break;
  5533. case "courseDesign":
  5534. _formdiv = new U.UF.UI.form(
  5535. "项目设计",
  5536. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5537. "id": "courseDesign",
  5538. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5539. "onresize": function () { }
  5540. }, {
  5541. closecallback: function () { }
  5542. }, { "style": { "height": "36px" } }).form; //创建窗体
  5543. _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); } }
  5544. break;
  5545. case "program":
  5546. _formdiv = new U.UF.UI.form(
  5547. "编程平台",
  5548. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5549. "id": "program",
  5550. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5551. "onresize": function () { }
  5552. }, {
  5553. closecallback: function () { }
  5554. }, { "style": { "height": "36px" } }).form; //创建窗体
  5555. _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); } }
  5556. break;
  5557. case "class":
  5558. _formdiv = new U.UF.UI.form(
  5559. "班级管理",
  5560. $$("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 }), {
  5561. "id": "class",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. _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); } }
  5568. break;
  5569. case "Grade":
  5570. _formdiv = new U.UF.UI.form(
  5571. "年级管理",
  5572. $$("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 }), {
  5573. "id": "Grade",
  5574. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5575. "onresize": function () { }
  5576. }, {
  5577. closecallback: function () { }
  5578. }, { "style": { "height": "36px" } }).form; //创建窗体
  5579. _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); } }
  5580. break;
  5581. case "teacherOffice":
  5582. _formdiv = new U.UF.UI.form(
  5583. "教研室",
  5584. $$("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 }), {
  5585. "id": "teacherOffice",
  5586. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5587. "onresize": function () { }
  5588. }, {
  5589. closecallback: function () { }
  5590. }, { "style": { "height": "36px" } }).form; //创建窗体
  5591. _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); } }
  5592. break;
  5593. case "my":
  5594. _formdiv = new U.UF.UI.form(
  5595. "我的资料",
  5596. $$("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 }), {
  5597. "id": "my",
  5598. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //创建窗体
  5603. _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); } }
  5604. break;
  5605. case "notice":
  5606. _formdiv = new U.UF.UI.form(
  5607. "通知公告",
  5608. $$("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 }), {
  5609. "id": "notice",
  5610. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5611. "onresize": function () { }
  5612. }, {
  5613. closecallback: function () { }
  5614. }, { "style": { "height": "36px" } }).form; //创建窗体
  5615. _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); } }
  5616. break;
  5617. case "library":
  5618. _formdiv = new U.UF.UI.form(
  5619. "素材库",
  5620. $$("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 }), {
  5621. "id": "library",
  5622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. _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); } }
  5628. break;
  5629. case "whiteboard":
  5630. _formdiv = new U.UF.UI.form(
  5631. "电子白板",
  5632. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5633. "id": "whiteboard",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. _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); } }
  5640. break;
  5641. case "investigation":
  5642. _formdiv = new U.UF.UI.form(
  5643. "问卷调查",
  5644. $$("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 }), {
  5645. "id": "investigation",
  5646. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5647. "onresize": function () { }
  5648. }, {
  5649. closecallback: function () { }
  5650. }, { "style": { "height": "36px" } }).form; //创建窗体
  5651. _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); } }
  5652. break;
  5653. case "note":
  5654. _formdiv = new U.UF.UI.form(
  5655. "便签分类",
  5656. $$("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 }), {
  5657. "id": "note",
  5658. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5659. "onresize": function () { }
  5660. }, {
  5661. closecallback: function () { }
  5662. }, { "style": { "height": "36px" } }).form; //创建窗体
  5663. _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); } }
  5664. break;
  5665. // case "score":
  5666. // _formdiv = new U.UF.UI.form(
  5667. // "量规评分",
  5668. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5669. // "id": "score",
  5670. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5671. // "onresize": function() {}
  5672. // }, {
  5673. // closecallback: function() {}
  5674. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5675. // _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); } }
  5676. // break;
  5677. case "mind":
  5678. _formdiv = new U.UF.UI.form(
  5679. "思维导图",
  5680. $$("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"
  5681. "id": "mind",
  5682. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5683. "onresize": function () { }
  5684. }, {
  5685. closecallback: function () { }
  5686. }, { "style": { "height": "36px" } }).form; //创建窗体
  5687. _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); } }
  5688. break;
  5689. case "doc":
  5690. // U.MD.D.I.isRoom();
  5691. _formdiv = new U.UF.UI.form(
  5692. "协同文档",
  5693. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5694. "id": "doc",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5701. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5702. })
  5703. _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); } }
  5704. break;
  5705. case "study":
  5706. _formdiv = new U.UF.UI.form(
  5707. "课程中心",
  5708. $$("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
  5709. "id": "study",
  5710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5711. "onresize": function () { }
  5712. }, {
  5713. closecallback: function () { }
  5714. }, { "style": { "height": "36px" } }).form; //创建窗体
  5715. _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); } }
  5716. break;
  5717. case "mindNetwork": //好友打开
  5718. _formdiv = new U.UF.UI.form(
  5719. "思维网格",
  5720. $$("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 }), {
  5721. "id": "mindNetwork",
  5722. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5723. "onresize": function () { }
  5724. }, {
  5725. closecallback: function () { }
  5726. }, { "style": { "height": "36px" } }).form; //创建窗体
  5727. _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); } }
  5728. break;
  5729. case "train": //好友打开
  5730. _formdiv = new U.UF.UI.form(
  5731. "训练平台",
  5732. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5733. "id": "mindNetwork",
  5734. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. case "teacherClassRoom": //好友打开
  5742. _formdiv = new U.UF.UI.form(
  5743. "实时课堂",
  5744. $$("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 }), {
  5745. "id": "teacherClassRoom",
  5746. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. _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); } }
  5752. setTimeout(() => {
  5753. U.UF.F.windowZooming(_formdiv)
  5754. }, 0);
  5755. break;
  5756. }
  5757. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5758. switch (str) {
  5759. case "project": //好友打开
  5760. _formdiv = new U.UF.UI.form(
  5761. "课程管理",
  5762. $$("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 }), {
  5763. "id": "project",
  5764. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5765. "onresize": function () { }
  5766. }, {
  5767. closecallback: function () { }
  5768. }, { "style": { "height": "36px" } }).form; //创建窗体
  5769. _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); } }
  5770. break;
  5771. case "evaluate":
  5772. _formdiv = new U.UF.UI.form(
  5773. "学生评价",
  5774. $$("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 }), {
  5775. "id": "evaluate",
  5776. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5777. "onresize": function () { }
  5778. }, {
  5779. closecallback: function () { }
  5780. }, { "style": { "height": "36px" } }).form; //创建窗体
  5781. _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); } }
  5782. break;
  5783. case "notice":
  5784. _formdiv = new U.UF.UI.form(
  5785. "通知公告",
  5786. $$("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 }), {
  5787. "id": "notice",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. case "stuLibrary":
  5796. _formdiv = new U.UF.UI.form(
  5797. "学习资料",
  5798. $$("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 }), {
  5799. "id": "stuLibrary",
  5800. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5801. "onresize": function () { }
  5802. }, {
  5803. closecallback: function () { }
  5804. }, { "style": { "height": "36px" } }).form; //创建窗体
  5805. _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); } }
  5806. break;
  5807. case "program":
  5808. _formdiv = new U.UF.UI.form(
  5809. "编程平台",
  5810. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5811. "id": "program",
  5812. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5813. "onresize": function () { }
  5814. }, {
  5815. closecallback: function () { }
  5816. }, { "style": { "height": "36px" } }).form; //创建窗体
  5817. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5818. break;
  5819. case "whiteboard":
  5820. _formdiv = new U.UF.UI.form(
  5821. "电子白板",
  5822. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5823. "id": "whiteboard",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5830. break;
  5831. case "investigation":
  5832. _formdiv = new U.UF.UI.form(
  5833. "问卷调查",
  5834. $$("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 }), {
  5835. "id": "investigation",
  5836. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5837. "onresize": function () { }
  5838. }, {
  5839. closecallback: function () { }
  5840. }, { "style": { "height": "36px" } }).form; //创建窗体
  5841. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5842. break;
  5843. case "mind":
  5844. _formdiv = new U.UF.UI.form(
  5845. "思维导图",
  5846. $$("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"
  5847. "id": "mind",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5854. break;
  5855. case "doc":
  5856. // U.MD.D.I.isRoom();
  5857. _formdiv = new U.UF.UI.form(
  5858. "协同文档",
  5859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5860. "id": "doc",
  5861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5867. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5868. })
  5869. _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); } }
  5870. break;
  5871. case "study":
  5872. _formdiv = new U.UF.UI.form(
  5873. "课程中心",
  5874. $$("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
  5875. "id": "study",
  5876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _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); } }
  5882. break;
  5883. case "mindNetwork": //好友打开
  5884. _formdiv = new U.UF.UI.form(
  5885. "思维网格",
  5886. $$("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 }), {
  5887. "id": "mindNetwork",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. _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); } }
  5894. break;
  5895. case "train": //好友打开
  5896. _formdiv = new U.UF.UI.form(
  5897. "训练平台",
  5898. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5899. "id": "train",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. _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); } }
  5906. break;
  5907. case "sys":
  5908. _formdiv = new U.UF.UI.form(
  5909. "目标管理",
  5910. $$("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 }), {
  5911. "id": "sys",
  5912. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _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); } }
  5918. break;
  5919. case "courseDesign":
  5920. _formdiv = new U.UF.UI.form(
  5921. "项目设计",
  5922. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5923. "id": "courseDesign",
  5924. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. }
  5932. } else if (!_type) {
  5933. switch (str) {
  5934. case "my":
  5935. _formdiv = new U.UF.UI.form(
  5936. "我的资料",
  5937. $$("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 }), {
  5938. "id": "my",
  5939. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _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); } }
  5945. break;
  5946. }
  5947. }
  5948. switch (str) {
  5949. // AIprogram2 AI体验 aihub.cocorobo.cn
  5950. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5951. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5952. case "formulaEdi": //公式编辑
  5953. _formdiv = new U.UF.UI.form(
  5954. "公式编辑",
  5955. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5956. "id": "formulaEdi",
  5957. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //创建窗体
  5962. _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); } }
  5963. break;
  5964. case "molStr": //分子结构
  5965. _formdiv = new U.UF.UI.form(
  5966. "分子结构",
  5967. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5968. "id": "molStr",
  5969. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _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); } }
  5975. break;
  5976. case "timeAxis": //时间轴
  5977. _formdiv = new U.UF.UI.form(
  5978. "时间轴",
  5979. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5980. "id": "timeAxis",
  5981. "style": { "width": "70%", "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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5987. break;
  5988. case "AIprogram2": //AI体验
  5989. _formdiv = new U.UF.UI.form(
  5990. "AI体验",
  5991. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5992. "id": "AIprogram2",
  5993. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _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); } }
  5999. break;
  6000. case "Pythonprogram": //python编程
  6001. _formdiv = new U.UF.UI.form(
  6002. "Python编程",
  6003. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6004. "id": "Pythonprogram",
  6005. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _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); } }
  6011. break;
  6012. case "AIprogram": //ai编程
  6013. _formdiv = new U.UF.UI.form(
  6014. "AI编程平台",
  6015. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6016. "id": "AIprogram",
  6017. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "CocoPi": //CocoPi
  6025. _formdiv = new U.UF.UI.form(
  6026. "CocoPi",
  6027. $$("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" }), {
  6028. "id": "CocoPi",
  6029. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. closecallback: function () { }
  6033. }, { "style": { "height": "36px" } }).form; //创建窗体
  6034. _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); } }
  6035. break;
  6036. case "Wood": //Wood
  6037. _formdiv = new U.UF.UI.form(
  6038. "海龟编程",
  6039. $$("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/" }), {
  6040. "id": "Wood",
  6041. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6042. "onresize": function () { }
  6043. }, {
  6044. closecallback: function () { }
  6045. }, { "style": { "height": "36px" } }).form; //创建窗体
  6046. _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); } }
  6047. break;
  6048. case "car": //模拟驾驶
  6049. _formdiv = new U.UF.UI.form(
  6050. "模拟驾驶",
  6051. $$("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/" }), {
  6052. "id": "car",
  6053. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6054. "onresize": function () { }
  6055. }, {
  6056. closecallback: function () { }
  6057. }, { "style": { "height": "36px" } }).form; //创建窗体
  6058. _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); } }
  6059. break;
  6060. case "lineSearch": //路径搜索
  6061. _formdiv = new U.UF.UI.form(
  6062. "路径搜索",
  6063. $$("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/" }), {
  6064. "id": "lineSearch",
  6065. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6066. "onresize": function () { }
  6067. }, {
  6068. closecallback: function () { }
  6069. }, { "style": { "height": "36px" } }).form; //创建窗体
  6070. _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); } }
  6071. break;
  6072. case "deepLearning": //深度学习
  6073. _formdiv = new U.UF.UI.form(
  6074. "深度学习",
  6075. $$("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/#" }), {
  6076. "id": "deepLearning",
  6077. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6078. "onresize": function () { }
  6079. }, {
  6080. closecallback: function () { }
  6081. }, { "style": { "height": "36px" } }).form; //创建窗体
  6082. _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); } }
  6083. break;
  6084. case "allHistory": //深度学习
  6085. _formdiv = new U.UF.UI.form(
  6086. "全历史",
  6087. $$("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/" }), {
  6088. "id": "allHistory",
  6089. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6090. "onresize": function () { }
  6091. }, {
  6092. closecallback: function () { }
  6093. }, { "style": { "height": "36px" } }).form; //创建窗体
  6094. _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); } }
  6095. break;
  6096. case "chatPDF": //ai编程
  6097. _formdiv = new U.UF.UI.form(
  6098. "chatPDF",
  6099. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6100. "id": "chatPDF",
  6101. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6102. "onresize": function () { }
  6103. }, {
  6104. closecallback: function () { }
  6105. }, { "style": { "height": "36px" } }).form; //创建窗体
  6106. _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); } }
  6107. break;
  6108. case "resources": //国家教育
  6109. _formdiv = new U.UF.UI.form(
  6110. "国家教育",
  6111. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6112. "id": "resources",
  6113. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6114. "onresize": function () { }
  6115. }, {
  6116. closecallback: function () { }
  6117. }, { "style": { "height": "36px" } }).form; //创建窗体
  6118. _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); } }
  6119. break;
  6120. case "codeEdit": //源码编辑
  6121. _formdiv = new U.UF.UI.form(
  6122. "源码编辑",
  6123. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6124. "id": "codeEdit",
  6125. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6126. "onresize": function () { }
  6127. }, {
  6128. closecallback: function () { }
  6129. }, { "style": { "height": "36px" } }).form; //创建窗体
  6130. _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); } }
  6131. break; //
  6132. case "MindMap": //MindMap
  6133. _formdiv = new U.UF.UI.form(
  6134. "MindMap",
  6135. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6136. "id": "MindMap",
  6137. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6138. "onresize": function () { }
  6139. }, {
  6140. closecallback: function () { }
  6141. }, { "style": { "height": "36px" } }).form; //创建窗体
  6142. _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); } }
  6143. break;
  6144. case "netWorkPanel": //netWorkPanel
  6145. _formdiv = new U.UF.UI.form(
  6146. "netWorkPanel",
  6147. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6148. "id": "netWorkPanel",
  6149. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6150. "onresize": function () { }
  6151. }, {
  6152. closecallback: function () { }
  6153. }, { "style": { "height": "36px" } }).form; //创建窗体
  6154. _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); } }
  6155. break;
  6156. case "GeoGebra": //GeoGebra
  6157. _formdiv = new U.UF.UI.form(
  6158. "GeoGebra",
  6159. $$("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" }), {
  6160. "id": "GeoGebra",
  6161. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6162. "onresize": function () { }
  6163. }, {
  6164. closecallback: function () { }
  6165. }, { "style": { "height": "36px" } }).form; //创建窗体
  6166. _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); } }
  6167. break;
  6168. case "translation": //翻译
  6169. _formdiv = new U.UF.UI.form(
  6170. "翻译",
  6171. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6172. "id": "translation",
  6173. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6174. "onresize": function () { }
  6175. }, {
  6176. closecallback: function () { }
  6177. }, { "style": { "height": "36px" } }).form; //创建窗体
  6178. _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); } }
  6179. break;
  6180. case "mohe": //魔盒
  6181. _formdiv = new U.UF.UI.form(
  6182. "魔盒识字",
  6183. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6184. "id": "mohe",
  6185. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6186. "onresize": function () { }
  6187. }, {
  6188. closecallback: function () { }
  6189. }, { "style": { "height": "36px" } }).form; //创建窗体
  6190. _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); } }
  6191. break;
  6192. case "24game": //24点
  6193. _formdiv = new U.UF.UI.form(
  6194. "24点",
  6195. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6196. "id": "24game",
  6197. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6198. "onresize": function () { }
  6199. }, {
  6200. closecallback: function () { }
  6201. }, { "style": { "height": "36px" } }).form; //创建窗体
  6202. _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); } }
  6203. break;
  6204. case "case":
  6205. _formdiv = new U.UF.UI.form(
  6206. "课程进展",
  6207. $$("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 }), {
  6208. "id": "case",
  6209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //创建窗体
  6214. _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); } }
  6215. break;
  6216. case "snf":
  6217. _formdiv = new U.UF.UI.form(
  6218. "赛诺梵",
  6219. $$("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" }), {
  6220. "id": "snf",
  6221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //创建窗体
  6226. _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); } }
  6227. break;
  6228. case "hanFamily":
  6229. _formdiv = new U.UF.UI.form(
  6230. "汉字家族",
  6231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6232. "id": "hanFamily",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _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); } }
  6239. break;
  6240. case "hanClassics":
  6241. _formdiv = new U.UF.UI.form(
  6242. "国学经典",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6244. "id": "hanClassics",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _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); } }
  6251. break;
  6252. case "hanTraining":
  6253. _formdiv = new U.UF.UI.form(
  6254. "笔画训练",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6256. "id": "hanTraining",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _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); } }
  6263. break;
  6264. case "hanClass":
  6265. _formdiv = new U.UF.UI.form(
  6266. "书法课堂",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6268. "id": "hanClass",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _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); } }
  6275. break;
  6276. case "han":
  6277. _formdiv = new U.UF.UI.form(
  6278. "汉字宫",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6280. "id": "han",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _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); } }
  6287. break;
  6288. case "projectGM": //课程管理
  6289. _formdiv = new U.UF.UI.form(
  6290. "课程管理",
  6291. $$("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 }), {
  6292. "id": "projectGM",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _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); } }
  6299. break;
  6300. case "studyGM": //课程中心
  6301. _formdiv = new U.UF.UI.form(
  6302. "课程中心",
  6303. $$("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
  6304. "id": "study",
  6305. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _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); } }
  6311. break;
  6312. // studentGM
  6313. case "studentGM": //学生管理
  6314. _formdiv = new U.UF.UI.form(
  6315. "学生管理",
  6316. $$("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 }), {
  6317. "id": "studentGM",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. break;
  6325. case "evaluateGM": //学生评价
  6326. _formdiv = new U.UF.UI.form(
  6327. "学生评价",
  6328. $$("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 }), {
  6329. "id": "evaluateGM",
  6330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6331. "onresize": function () { }
  6332. }, {
  6333. closecallback: function () { }
  6334. }, { "style": { "height": "36px" } }).form; //创建窗体
  6335. _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); } }
  6336. break;
  6337. // classGM
  6338. case "classGM": //班级管理
  6339. _formdiv = new U.UF.UI.form(
  6340. "班级管理",
  6341. $$("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 }), {
  6342. "id": "classGM",
  6343. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6344. "onresize": function () { }
  6345. }, {
  6346. closecallback: function () { }
  6347. }, { "style": { "height": "36px" } }).form; //创建窗体
  6348. _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); } }
  6349. break;
  6350. // dataGM
  6351. case "dataGM":
  6352. _formdiv = new U.UF.UI.form(
  6353. "我的资料",
  6354. $$("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 }), {
  6355. "id": "dataGM",
  6356. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _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); } }
  6362. break;
  6363. // caseGM
  6364. case "caseGM": //课程进展
  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/#/CaseDesignGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6368. "id": "caseGM",
  6369. "style": { "width": "90%", "height": "90%", "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/gm/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6375. break;
  6376. // meterialGM
  6377. case "meterialGM": //素材库
  6378. _formdiv = new U.UF.UI.form(
  6379. "素材库",
  6380. $$("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 }), {
  6381. "id": "meterialGM",
  6382. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6383. "onresize": function () { }
  6384. }, {
  6385. closecallback: function () { }
  6386. }, { "style": { "height": "36px" } }).form; //创建窗体
  6387. _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); } }
  6388. break;
  6389. // evaluateSGM
  6390. case "evaluateSGM": //我的评价
  6391. _formdiv = new U.UF.UI.form(
  6392. "我的评价",
  6393. $$("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 }), {
  6394. "id": "evaluateSGM",
  6395. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6396. "onresize": function () { }
  6397. }, {
  6398. closecallback: function () { }
  6399. }, { "style": { "height": "36px" } }).form; //创建窗体
  6400. _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); } }
  6401. break;
  6402. case "jupyter": //jupyter
  6403. _formdiv = new U.UF.UI.form(
  6404. "jupyter",
  6405. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6406. "id": "jupyter",
  6407. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6408. "onresize": function () { }
  6409. }, {
  6410. closecallback: function () { }
  6411. }, { "style": { "height": "36px" } }).form; //创建窗体
  6412. _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); } }
  6413. break;
  6414. case "number": //数字实验室
  6415. _formdiv = new U.UF.UI.form(
  6416. "数字实验室",
  6417. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6418. "id": "number",
  6419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6420. "onresize": function () { }
  6421. }, {
  6422. closecallback: function () { }
  6423. }, { "style": { "height": "36px" } }).form; //创建窗体
  6424. _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); } }
  6425. break;
  6426. case "studentCourse": //项目管理 学生
  6427. _formdiv = new U.UF.UI.form(
  6428. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6429. $$("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 }), {
  6430. "id": "studentCourse",
  6431. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6432. "onresize": function () { }
  6433. }, {
  6434. closecallback: function () { }
  6435. }, { "style": { "height": "36px" } }).form; //创建窗体
  6436. _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); } }
  6437. break;
  6438. case "studentCourseS": //项目管理 老师
  6439. _formdiv = new U.UF.UI.form(
  6440. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6441. $$("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 }), {
  6442. "id": "studentCourseS",
  6443. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6444. "onresize": function () { }
  6445. }, {
  6446. closecallback: function () { }
  6447. }, { "style": { "height": "36px" } }).form; //创建窗体
  6448. _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); } }
  6449. break;
  6450. case "studentIndex": //项目中心
  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": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  6454. "id": "studentIndex",
  6455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6456. "onresize": function () { }
  6457. }, {
  6458. closecallback: function () { }
  6459. }, { "style": { "height": "36px" } }).form; //创建窗体
  6460. _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); } }
  6461. break;
  6462. case "CaseDesignS":
  6463. _formdiv = new U.UF.UI.form(
  6464. "项目进展",
  6465. $$("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 }), {
  6466. "id": "case",
  6467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6468. "onresize": function () { }
  6469. }, {
  6470. closecallback: function () { }
  6471. }, { "style": { "height": "36px" } }).form; //创建窗体
  6472. _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); } }
  6473. break;
  6474. case "tcStudent": //腾讯学生管理
  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/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6478. "id": "tcStudent",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6485. break;
  6486. case "tcSchool": //腾讯学校管理
  6487. _formdiv = new U.UF.UI.form(
  6488. "学校管理",
  6489. $$("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 }), {
  6490. "id": "tcSchool",
  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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6497. break;
  6498. case "tcTeacher": //腾讯学校管理
  6499. _formdiv = new U.UF.UI.form(
  6500. "教师管理",
  6501. $$("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 }), {
  6502. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6509. break;
  6510. case "teacher":
  6511. _formdiv = new U.UF.UI.form(
  6512. "教师管理",
  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/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6514. "id": "teacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6521. break;
  6522. case "tcData": //腾讯我的资料
  6523. _formdiv = new U.UF.UI.form(
  6524. "我的资料",
  6525. $$("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 }), {
  6526. "id": "tcData",
  6527. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "tcNotice": //腾讯消息通知
  6535. _formdiv = new U.UF.UI.form(
  6536. "消息通知",
  6537. $$("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 }), {
  6538. "id": "tcNotice",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "myReport": //好友打开
  6547. _formdiv = new U.UF.UI.form(
  6548. "我的评价",
  6549. $$("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 }), {
  6550. "id": "myReport",
  6551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "learnAna": //好友打开
  6559. _formdiv = new U.UF.UI.form(
  6560. "学习分析",
  6561. $$("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 }), {
  6562. "id": "learnAna",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "AIChat": //AI共创
  6571. _formdiv = new U.UF.UI.form(
  6572. "AI共创",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6574. "id": "AIChat",
  6575. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. istop: true,
  6579. closecallback: function () { $("#aichat_icon").remove(); },
  6580. narrowcallback: function () {
  6581. if (!$("#aichat_icon")[0]) {
  6582. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6583. }
  6584. },
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _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); } }
  6587. break;
  6588. case "ainew": //AI共创
  6589. _formdiv = new U.UF.UI.form(
  6590. "AI协同",
  6591. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6592. "id": "ainew",
  6593. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _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); } }
  6599. break;
  6600. case "gpt4": //gpt4
  6601. _formdiv = new U.UF.UI.form(
  6602. "AI助手",
  6603. $$("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 }), {
  6604. "id": "gpt4",
  6605. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _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); } }
  6611. break;
  6612. case "aigpt": //gpt4
  6613. _formdiv = new U.UF.UI.form(
  6614. "AI助手+",
  6615. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6616. "id": "aigpt",
  6617. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () {
  6621. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6622. }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6626. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6627. })
  6628. break;
  6629. case "aiKnowledge": //aiKnowledge
  6630. _formdiv = new U.UF.UI.form(
  6631. "知识建构",
  6632. $$("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://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b" }), {
  6633. "id": "aiKnowledge",
  6634. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6635. "onresize": function () { }
  6636. }, {
  6637. closecallback: function () { }
  6638. }, { "style": { "height": "36px" } }).form; //创建窗体
  6639. _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); } }
  6640. break;
  6641. case "futureClass": //AI共创
  6642. _formdiv = new U.UF.UI.form(
  6643. "协同建构",
  6644. $$("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://cscl.cocorobo.cn
  6645. "id": "synergyCourse",
  6646. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6647. "onresize": function () { }
  6648. }, {
  6649. closecallback: function () {
  6650. $("iframe", _formdiv)[0].contentWindow.loginout();
  6651. }
  6652. }, { "style": { "height": "36px" } }).form; //创建窗体
  6653. _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); } }
  6654. break;
  6655. case "aiagent": //ai agent
  6656. _formdiv = new U.UF.UI.form(
  6657. "AI Agent",
  6658. $$("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" }), {
  6659. "id": "AIAgent",
  6660. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6661. "onresize": function () { }
  6662. }, {
  6663. closecallback: function () { }
  6664. }, { "style": { "height": "36px" } }).form; //创建窗体
  6665. _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); } }
  6666. break;
  6667. case "dataBoard": //数据看板
  6668. _formdiv = new U.UF.UI.form(
  6669. "数据看板",
  6670. $$("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 }), {
  6671. "id": "dataBoard",
  6672. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6673. "onresize": function () { }
  6674. }, {
  6675. closecallback: function () { }
  6676. }, { "style": { "height": "36px" } }).form; //创建窗体
  6677. _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); } }
  6678. break;
  6679. case "dataBoardSies": //数据融合
  6680. _formdiv = new U.UF.UI.form(
  6681. "数据融合",
  6682. $$("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 }), {
  6683. "id": "dataBoardSies",
  6684. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6685. "onresize": function () { }
  6686. }, {
  6687. closecallback: function () { }
  6688. }, { "style": { "height": "36px" } }).form; //创建窗体
  6689. _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); } }
  6690. break;
  6691. case "dataBoardNew": //数据看板
  6692. _formdiv = new U.UF.UI.form(
  6693. "综合看板",
  6694. $$("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 }), {
  6695. "id": "dataBoardNew",
  6696. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6697. "onresize": function () { }
  6698. }, {
  6699. closecallback: function () { }
  6700. }, { "style": { "height": "36px" } }).form; //创建窗体
  6701. _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); } }
  6702. break;
  6703. case "dataBoardTest": //数据看板
  6704. _formdiv = new U.UF.UI.form(
  6705. "评测看板",
  6706. $$("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 }), {
  6707. "id": "dataBoardTest",
  6708. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6709. "onresize": function () { }
  6710. }, {
  6711. closecallback: function () { }
  6712. }, { "style": { "height": "36px" } }).form; //创建窗体
  6713. _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); } }
  6714. break;
  6715. case "AIAnalyse": //AI共创
  6716. _formdiv = new U.UF.UI.form(
  6717. "AI分析",
  6718. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6719. "id": "AIAnalyse",
  6720. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6721. "onresize": function () { }
  6722. }, {
  6723. closecallback: function () { }
  6724. }, { "style": { "height": "36px" } }).form; //创建窗体
  6725. _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); } }
  6726. break;
  6727. case "studioCourse": //AI共创
  6728. _formdiv = new U.UF.UI.form(
  6729. "工作管理",
  6730. $$("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 }), {
  6731. "id": "studioCourse",
  6732. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. _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); } }
  6738. break;
  6739. case "studioIndex": //AI共创
  6740. _formdiv = new U.UF.UI.form(
  6741. "工作中心",
  6742. $$("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 }), {
  6743. "id": "studioIndex",
  6744. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6745. "onresize": function () { }
  6746. }, {
  6747. closecallback: function () { }
  6748. }, { "style": { "height": "36px" } }).form; //创建窗体
  6749. _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); } }
  6750. break;
  6751. case "source":
  6752. _formdiv = new U.UF.UI.form(
  6753. "教学资源",
  6754. $$("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 }), {
  6755. "id": "source",
  6756. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6757. "onresize": function () { }
  6758. }, {
  6759. closecallback: function () { }
  6760. }, { "style": { "height": "36px" } }).form; //创建窗体
  6761. _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); } }
  6762. break;
  6763. case "testTeacher":
  6764. _formdiv = new U.UF.UI.form(
  6765. "智能表单",
  6766. $$("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 }), {
  6767. "id": "testTeacher",
  6768. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6769. "onresize": function () { }
  6770. }, {
  6771. closecallback: function () { }
  6772. }, { "style": { "height": "36px" } }).form; //创建窗体
  6773. _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); } }
  6774. break;
  6775. case "testStudent":
  6776. _formdiv = new U.UF.UI.form(
  6777. "教师中心",
  6778. $$("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 }), {
  6779. "id": "testStudent",
  6780. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6781. "onresize": function () { }
  6782. }, {
  6783. closecallback: function () { }
  6784. }, { "style": { "height": "36px" } }).form; //创建窗体
  6785. _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); } }
  6786. break;
  6787. case "testTeacherSies":
  6788. _formdiv = new U.UF.UI.form(
  6789. "教师管理",
  6790. $$("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 }), {
  6791. "id": "testTeacherSies",
  6792. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6793. "onresize": function () { }
  6794. }, {
  6795. closecallback: function () { }
  6796. }, { "style": { "height": "36px" } }).form; //创建窗体
  6797. _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); } }
  6798. break;
  6799. case "testStudentSies":
  6800. _formdiv = new U.UF.UI.form(
  6801. "教师中心",
  6802. $$("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 }), {
  6803. "id": "testStudentSies",
  6804. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6805. "onresize": function () { }
  6806. }, {
  6807. closecallback: function () { }
  6808. }, { "style": { "height": "36px" } }).form; //创建窗体
  6809. _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); } }
  6810. break;
  6811. case "ytpbl": //消息通知
  6812. _formdiv = new U.UF.UI.form(
  6813. "案例征集",
  6814. $$("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 }), {
  6815. "id": "ytpbl",
  6816. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6817. "onresize": function () { }
  6818. }, {
  6819. closecallback: function () { }
  6820. }, { "style": { "height": "36px" } }).form; //创建窗体
  6821. _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); } }
  6822. // 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");
  6823. break;
  6824. case "aiCourseResource": //人工智能窗体
  6825. _formdiv = new U.UF.UI.form(
  6826. false,
  6827. $$("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 }), {
  6828. "id": "aiCourseResource",
  6829. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6830. "onresize": function () { },
  6831. "isdrag": false,
  6832. }, {
  6833. closecallback: function () { }
  6834. }, { "style": { "height": "36px" } }).form; //创建窗体
  6835. _taskbar = ''
  6836. break;
  6837. case "szdjgCocooroboX": //图形化编程
  6838. _formdiv = new U.UF.UI.form(
  6839. "图形化编程",
  6840. $$("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" }), {
  6841. "id": "szdjgCocooroboX",
  6842. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6843. "onresize": function () { }
  6844. }, {
  6845. closecallback: function () { }
  6846. }, { "style": { "height": "36px" } }).form; //创建窗体
  6847. _taskbar = ''
  6848. break;
  6849. case "szdjgPython": //python编程
  6850. _formdiv = new U.UF.UI.form(
  6851. "Python编程",
  6852. $$("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" }), {
  6853. "id": "szdjgPython",
  6854. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6855. "onresize": function () { }
  6856. }, {
  6857. closecallback: function () { }
  6858. }, { "style": { "height": "36px" } }).form; //创建窗体
  6859. _taskbar = ''
  6860. break;
  6861. case "Record":
  6862. _formdiv = new U.UF.UI.form(
  6863. "观察记录",
  6864. $$("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 }), {
  6865. "id": "Record",
  6866. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6867. "onresize": function () { }
  6868. }, {
  6869. closecallback: function () { }
  6870. }, { "style": { "height": "36px" } }).form; //创建窗体
  6871. _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); } }
  6872. break;
  6873. case "aigptCourse":
  6874. _formdiv = new U.UF.UI.form(
  6875. "AI智能体",
  6876. $$("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' }), {
  6877. "id": "aigptCourse",
  6878. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6879. "onresize": function () { }
  6880. }, {
  6881. closecallback: function () { }
  6882. }, { "style": { "height": "36px" } }).form; //创建窗体
  6883. _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); } }
  6884. break;
  6885. case "classroomObservation":
  6886. _formdiv = new U.UF.UI.form(
  6887. "课堂观察",
  6888. $$("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 }), {
  6889. "id": "classroomObservation",
  6890. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6891. "onresize": function () { }
  6892. }, {
  6893. closecallback: function () { }
  6894. }, { "style": { "height": "36px" } }).form; //创建窗体
  6895. _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); } }
  6896. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6897. break;
  6898. case "pblCourse":
  6899. _formdiv = new U.UF.UI.form(
  6900. "学生PBL",
  6901. $$("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 }), {
  6902. "id": "pblCourse",
  6903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6904. "onresize": function () { }
  6905. }, {
  6906. closecallback: function () { }
  6907. }, { "style": { "height": "36px" } }).form; //创建窗体
  6908. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6909. break;
  6910. case "appStore":
  6911. _formdiv = new U.UF.UI.form(
  6912. "应用中心",
  6913. $$("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/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6914. "id": "pblCourse",
  6915. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6916. "onresize": function () { }
  6917. }, {
  6918. closecallback: function () { }
  6919. }, { "style": { "height": "36px" } }).form; //创建窗体
  6920. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6921. break;
  6922. }
  6923. //U.MD.D.I.openClick(str);
  6924. //如果有任务栏信息
  6925. if (_taskbar) {
  6926. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6927. }
  6928. }
  6929. // U.MD.D.I.openClick = function(str){
  6930. // var click = '';
  6931. // switch(str){
  6932. // case 'friend':
  6933. // click = '我的好友';
  6934. // break;
  6935. // case 'domain':
  6936. // click = '域名管理';
  6937. // break;
  6938. // case 'disk':
  6939. // click = '我的云盘';
  6940. // break;
  6941. // case 'word':
  6942. // click = 'Word';
  6943. // break;
  6944. // case 'excel':
  6945. // click = 'Execl';
  6946. // break;
  6947. // case 'txt':
  6948. // click = '文本文件';
  6949. // break;
  6950. // case 'lookupFriend':
  6951. // click = '查找好友';
  6952. // break;
  6953. // case 'ftp':
  6954. // click = 'FTP';
  6955. // break;
  6956. // case 'group':
  6957. // click = '群组';
  6958. // break;
  6959. // case 'set':
  6960. // click = '我的设置';
  6961. // break;
  6962. // case 'systemSet':
  6963. // click = '系统设置';
  6964. // break;
  6965. // case 'boomYun':
  6966. // click = '互联办公';
  6967. // break;
  6968. // case 'xz':
  6969. // click = '云端下载';
  6970. // break;
  6971. // case 'client':
  6972. // click = '有思浏览器';
  6973. // break;
  6974. // case 'backEndProgramming':
  6975. // click = '在线后台编程';
  6976. // break;
  6977. // case 'frontEndProgramming':
  6978. // click = '在线前端编程';
  6979. // break;
  6980. // default: break;
  6981. // }
  6982. // if(U.MD.D.I.Ip && click){
  6983. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6984. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6985. // })
  6986. // }
  6987. // }
  6988. /**
  6989. *函数作用:ajax简易函数,使用post格式
  6990. *@param url {data} 后台地址
  6991. *@param data {data} 参数json
  6992. *@param fn {data} 回调函数
  6993. *
  6994. */
  6995. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6996. // var xhr = new XMLHttpRequest();
  6997. // xhr.open("GET",url,true);
  6998. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6999. // xhr.onreadystatechange = function(){
  7000. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7001. // fn.call(this,xhr.responseText);
  7002. // }
  7003. // };
  7004. // xhr.send();
  7005. // }
  7006. /*判断是否是内网IP*/
  7007. // U.MD.D.I.isInnerIPFn = function(str){
  7008. // var curPageUrl = str;
  7009. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7010. // curPageUrl =curPageUrl.replace(reg1,'');
  7011. // // console.log('curPageUrl-1 '+curPageUrl);
  7012. // var reg2 = /\:+/g;//替换冒号为一点
  7013. // curPageUrl =curPageUrl.replace(reg2,'.');
  7014. // // console.log('curPageUrl-2 '+curPageUrl);
  7015. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7016. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7017. // if(curPageUrl[2] != '16'){
  7018. // return ipAddress;
  7019. // }else{
  7020. // return false;
  7021. // }
  7022. // }
  7023. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7024. // //compatibility for firefox and chrome
  7025. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7026. // var pc = new myPeerConnection({
  7027. // iceServers: []
  7028. // }),
  7029. // noop = function() {},
  7030. // localIPs = {},
  7031. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7032. // key;
  7033. // function iterateIP(ip) {
  7034. // if (!localIPs[ip]) onNewIP(ip);
  7035. // localIPs[ip] = true;
  7036. // }
  7037. // //create a bogus data channel
  7038. // pc.createDataChannel("");
  7039. // // create offer and set local description
  7040. // pc.createOffer().then(function(sdp) {
  7041. // sdp.sdp.split('\n').forEach(function(line) {
  7042. // if (line.indexOf('candidate') < 0) return;
  7043. // line.match(ipRegex).forEach(iterateIP);
  7044. // });
  7045. // pc.setLocalDescription(sdp, noop, noop);
  7046. // }).catch(function(reason) {
  7047. // // An error occurred, so handle the failure to connect
  7048. // });
  7049. // //sten for candidate events
  7050. // pc.onicecandidate = function(ice) {
  7051. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7052. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7053. // };
  7054. // }
  7055. // U.MD.D.I.getUserIpBool = function(callback){
  7056. // U.MD.D.I.getUserIP(function(ip){
  7057. // alert("Got IP! :" + ip);
  7058. // });
  7059. //}
  7060. //#endregion
  7061. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7062. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7063. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7064. _userinfo = US.userInfo, //登录用户信息
  7065. _userid = US.userInfo.userid //登录用户id
  7066. let _iframe;
  7067. let _cid = cid,
  7068. _stage = stage,
  7069. _task = task,
  7070. _tool = tool;
  7071. var _jie = $$("div", {
  7072. "style": {
  7073. "position": "absolute",
  7074. "bottom": "50px",
  7075. "right": "50px",
  7076. "zIndex": "9999",
  7077. "backgroundColor": "#2268bc",
  7078. "color": "#fff",
  7079. "padding": "12px 20px",
  7080. "cursor": "pointer",
  7081. "borderRadius": "4px",
  7082. },
  7083. "innerHTML": "提交作业"
  7084. })
  7085. let aTool = ''
  7086. let _loading = document.createElement('div')
  7087. _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;"
  7088. // _loading.id = "";
  7089. let _lchild = document.createElement('div')
  7090. let _limg = document.createElement('img')
  7091. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7092. _limg.style = "width: 26px;margin-right: 10px;"
  7093. _lchild.appendChild(_limg)
  7094. let _lspan = document.createElement('span')
  7095. _lspan.innerHTML = "上传中..."
  7096. _lchild.appendChild(_lspan)
  7097. _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%);"
  7098. _loading.appendChild(_lchild)
  7099. var _box = $$('div', {
  7100. "style": {
  7101. "position": "relative",
  7102. "width": "100%",
  7103. "height": "100%",
  7104. },
  7105. })
  7106. _box.appendChild(_loading)
  7107. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7108. switch (str) {
  7109. case "whiteboard":
  7110. aTool = 1;
  7111. _iframe = $$("iframe", {
  7112. "frameborder": "no",
  7113. "border": "0",
  7114. "scrolling ": "no",
  7115. "style": {
  7116. "cssText": "border:0;width:100%;height:100%"
  7117. },
  7118. "src": "https://beta.iwb.cocorobo.cn/"
  7119. })
  7120. _box.appendChild(_iframe);
  7121. _box.appendChild(_jie);
  7122. _formdiv = new U.UF.UI.form(
  7123. "电子白板",
  7124. _box, {
  7125. "id": "whiteboard" + cid + stage + task + tool,
  7126. "style": {
  7127. "width": "90%",
  7128. "height": "90%",
  7129. "overflow": 'hidden'
  7130. },
  7131. "onresize": function () { }
  7132. }, {
  7133. closecallback: function () { }
  7134. }, {
  7135. "style": {
  7136. "height": "36px"
  7137. }
  7138. }).form; //创建窗体
  7139. _taskbar = {
  7140. "id": str + _formdiv.id,
  7141. "style": {
  7142. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7143. },
  7144. "name": "电子白板",
  7145. "forms": _formdiv,
  7146. "click": function () {
  7147. U.MD.D.I.openApplication(str, obj, info);
  7148. }
  7149. }
  7150. break;
  7151. case "mind":
  7152. aTool = 3;
  7153. _iframe = $$("iframe", {
  7154. "frameborder": "no",
  7155. "border": "0",
  7156. "scrolling ": "no",
  7157. "style": {
  7158. "cssText": "border:0;width:100%;height:100%"
  7159. },
  7160. "src": "/kityminder-editor/dist/index.html"
  7161. })
  7162. _box.appendChild(_iframe);
  7163. _box.appendChild(_jie);
  7164. _formdiv = new U.UF.UI.form(
  7165. "思维导图",
  7166. _box, { //"/jsmind/example/demo.html"
  7167. "id": "mind" + cid + stage + task + tool,
  7168. "style": {
  7169. "width": "90%",
  7170. "height": "90%",
  7171. "overflow": 'hidden'
  7172. },
  7173. "onresize": function () { }
  7174. }, {
  7175. closecallback: function () { }
  7176. }, {
  7177. "style": {
  7178. "height": "36px"
  7179. }
  7180. }).form; //创建窗体
  7181. _taskbar = {
  7182. "id": str + _formdiv.id,
  7183. "style": {
  7184. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7185. },
  7186. "name": "思维导图",
  7187. "forms": _formdiv,
  7188. "click": function () {
  7189. U.MD.D.I.openApplication(str, obj, info);
  7190. }
  7191. }
  7192. break;
  7193. case "MindMap":
  7194. aTool = 3;
  7195. _iframe = $$("iframe", {
  7196. "frameborder": "no",
  7197. "border": "0",
  7198. "scrolling ": "no",
  7199. "style": {
  7200. "cssText": "border:0;width:100%;height:100%"
  7201. },
  7202. "src": "//cloud.cocorobo.cn/mind/"
  7203. })
  7204. _box.appendChild(_iframe);
  7205. _box.appendChild(_jie);
  7206. _formdiv = new U.UF.UI.form(
  7207. "思维导图",
  7208. _box, { //"/jsmind/example/demo.html"
  7209. "id": "mind" + cid + stage + task + tool,
  7210. "style": {
  7211. "width": "90%",
  7212. "height": "90%",
  7213. "overflow": 'hidden'
  7214. },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, {
  7219. "style": {
  7220. "height": "36px"
  7221. }
  7222. }).form; //创建窗体
  7223. _taskbar = {
  7224. "id": str + _formdiv.id,
  7225. "style": {
  7226. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7227. },
  7228. "name": "思维导图",
  7229. "forms": _formdiv,
  7230. "click": function () {
  7231. U.MD.D.I.openApplication(str, obj, info);
  7232. }
  7233. }
  7234. break;
  7235. case "doc":
  7236. aTool = 6;
  7237. _iframe = $$("iframe", {
  7238. "frameborder": "no",
  7239. "border": "0",
  7240. "scrolling ": "no",
  7241. "style": {
  7242. "cssText": "border:0;width:100%;height:100%"
  7243. },
  7244. "src": "/Office/Word/WordEditArea.htm"
  7245. })
  7246. _box.appendChild(_iframe);
  7247. _box.appendChild(_jie);
  7248. _formdiv = new U.UF.UI.form(
  7249. "协同文档",
  7250. _box, {
  7251. "id": "doc" + cid + stage + task + tool,
  7252. "style": {
  7253. "width": "90%",
  7254. "height": "90%",
  7255. "overflow": 'hidden'
  7256. },
  7257. "onresize": function () { }
  7258. }, {
  7259. closecallback: function () { }
  7260. }, {
  7261. "style": {
  7262. "height": "36px"
  7263. }
  7264. }).form; //创建窗体
  7265. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7266. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7267. })
  7268. _taskbar = {
  7269. "id": str + _formdiv.id,
  7270. "style": {
  7271. "backgroundImage": "url(/img/icon/doc.png)"
  7272. },
  7273. "name": "协同文档",
  7274. "forms": _formdiv,
  7275. "click": function () {
  7276. U.MD.D.I.openApplication(str, obj, info);
  7277. }
  7278. }
  7279. break;
  7280. case "mindNetwork": //好友打开
  7281. aTool = 7;
  7282. _iframe = $$("iframe", {
  7283. "webkitallowfullscreen": "",
  7284. "mozallowfullscreen": "",
  7285. "allowfullscreen": "",
  7286. "frameborder": "no",
  7287. "border": "0",
  7288. "scrolling ": "no",
  7289. "style": {
  7290. "cssText": "border:0; width:100%; height:100%;"
  7291. },
  7292. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7293. })
  7294. _box.appendChild(_iframe);
  7295. _box.appendChild(_jie);
  7296. _formdiv = new U.UF.UI.form(
  7297. "思维网格",
  7298. _box, {
  7299. "id": "mindNetwork" + cid + stage + task + tool,
  7300. "style": {
  7301. "width": "90%",
  7302. "height": "90%",
  7303. "overflow": 'hidden'
  7304. },
  7305. "onresize": function () { }
  7306. }, {
  7307. closecallback: function () { }
  7308. }, {
  7309. "style": {
  7310. "height": "36px"
  7311. }
  7312. }).form; //创建窗体
  7313. _taskbar = {
  7314. "id": str + _formdiv.id,
  7315. "style": {
  7316. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7317. },
  7318. "name": "思维网格",
  7319. "forms": _formdiv,
  7320. "click": function () {
  7321. U.MD.D.I.openApplication(str, obj, info);
  7322. }
  7323. }
  7324. break;
  7325. case "courseDesign":
  7326. _iframe = $$("iframe", {
  7327. "webkitallowfullscreen": "",
  7328. "mozallowfullscreen": "",
  7329. "allowfullscreen": "",
  7330. "frameborder": "no",
  7331. "border": "0",
  7332. "scrolling ": "no",
  7333. "style": {
  7334. "cssText": "border:0; width:100%; height:100%;"
  7335. },
  7336. "src": "/course-design-vue"
  7337. })
  7338. _box.appendChild(_iframe);
  7339. _box.appendChild(_jie);
  7340. _formdiv = new U.UF.UI.form(
  7341. "项目设计",
  7342. _box, {
  7343. "id": "courseDesign" + cid + stage + task + tool,
  7344. "style": {
  7345. "width": "90%",
  7346. "height": "90%",
  7347. "overflow": 'hidden'
  7348. },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () { }
  7352. }, {
  7353. "style": {
  7354. "height": "36px"
  7355. }
  7356. }).form; //创建窗体
  7357. _taskbar = {
  7358. "id": str + _formdiv.id,
  7359. "style": {
  7360. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7361. },
  7362. "name": "项目设计",
  7363. "forms": _formdiv,
  7364. "click": function () {
  7365. U.MD.D.I.openApplication(str, obj, info);
  7366. }
  7367. }
  7368. break;
  7369. }
  7370. const script1 = document.createElement("script");
  7371. script1.type = "text/javascript";
  7372. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7373. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7374. const script2 = document.createElement("script");
  7375. script2.type = "text/javascript";
  7376. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7377. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7378. const script3 = document.createElement("script");
  7379. script3.type = "text/javascript";
  7380. script3.charset = "UTF-8";
  7381. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7382. const script4 = document.createElement("script");
  7383. script4.type = "text/javascript";
  7384. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7385. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7386. if (_iframe) {
  7387. if (str == 'doc') {
  7388. _iframe = _formdiv.querySelector('iframe')
  7389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7390. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7391. _iframe.contentWindow.document.body.appendChild(script1);
  7392. _iframe.contentWindow.document.body.appendChild(script2);
  7393. // _iframe.contentWindow.document.body.appendChild(script3);
  7394. _iframe.contentWindow.document.body.appendChild(script4);
  7395. })
  7396. if (onloadListener) {
  7397. _iframe.contentDocument.location.reload()
  7398. } else {
  7399. _iframe.contentDocument.location.reload()
  7400. }
  7401. } else if (str == 'courseDesign') {
  7402. U.UF.DL.iframeLoad(_iframe, function () {
  7403. // _iframe.contentWindow.U.MD.O.W.load();
  7404. // _iframe.contentWindow.document.body.appendChild(script1);
  7405. _iframe.contentWindow.document.body.appendChild(script2);
  7406. _iframe.contentWindow.document.body.appendChild(script4);
  7407. })
  7408. } else if (str == 'mind') {
  7409. _iframe = _formdiv.querySelector('iframe')
  7410. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7411. //
  7412. _iframe.contentWindow.document.body.appendChild(script1);
  7413. _iframe.contentWindow.document.body.appendChild(script2);
  7414. _iframe.contentWindow.document.body.appendChild(script4);
  7415. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7416. })
  7417. if (onloadListener) {
  7418. _iframe.contentDocument.location.reload()
  7419. } else {
  7420. _iframe.contentDocument.location.reload()
  7421. }
  7422. } else if (str == 'whiteboard') {
  7423. _iframe = _formdiv.querySelector('iframe')
  7424. let onloadListener = _iframe.onload = () => {
  7425. _iframe.contentWindow.document.body.appendChild(script1);
  7426. _iframe.contentWindow.document.body.appendChild(script2);
  7427. _iframe.contentWindow.document.body.appendChild(script4);
  7428. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7429. };
  7430. // if (onloadListener) {
  7431. // try {
  7432. // _iframe.src += "?cocorobo="+new Date().getTime()
  7433. // _iframe.contentWindow.document.location.reload()
  7434. // } catch (error) {
  7435. // }
  7436. // } else {
  7437. // _iframe.contentDocument.location.reload()
  7438. // }
  7439. } else {
  7440. _iframe.onload = () => {
  7441. _iframe.contentWindow.document.body.appendChild(script1);
  7442. _iframe.contentWindow.document.body.appendChild(script2);
  7443. // _iframe.contentWindow.document.body.appendChild(script3);
  7444. _iframe.contentWindow.document.body.appendChild(script4);
  7445. };
  7446. }
  7447. _jie.onclick = async () => {
  7448. let text = ''
  7449. if (aTool == 1) {
  7450. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7451. } else if (aTool == 6) {
  7452. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7453. } else if (aTool == 3) {
  7454. text = await U.MD.D.I.getEditorContent(_iframe);
  7455. }
  7456. _loading.style.display = 'flex'
  7457. console.log(_loading);
  7458. var _ajs = _iframe.contentWindow.document.createElement("script");
  7459. _ajs.type = "text/javascript";
  7460. _ajs.innerHTML =
  7461. // 'console.log(' + _loading + ');\n' +
  7462. 'var _js = document.createElement("script");\n' +
  7463. '_js.type="text/javascript";\n' +
  7464. '_js.charset="UTF-8";\n' +
  7465. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7466. "_js.onload = function(){\n" +
  7467. ' var a = document.getElementsByTagName("img")\n' +
  7468. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7469. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7470. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7471. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7472. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7473. "beforeUpload_shishi(file," +
  7474. "'" +
  7475. _userid +
  7476. "'" +
  7477. ", " +
  7478. "'" +
  7479. _cid +
  7480. "'" +
  7481. ", " +
  7482. "'" +
  7483. _stage +
  7484. "'" +
  7485. ", " +
  7486. "'" +
  7487. _task +
  7488. "'" +
  7489. ", " +
  7490. "'" +
  7491. _tool +
  7492. "'" +
  7493. ", " +
  7494. "'" +
  7495. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7496. "'" +
  7497. ", " +
  7498. "'" +
  7499. aTool +
  7500. "'" +
  7501. ", " +
  7502. "`" +
  7503. text +
  7504. "`" +
  7505. ")\n" +
  7506. " });\n" +
  7507. "}\n" +
  7508. "document.head.appendChild(_js);\n";
  7509. _iframe.contentWindow.document.head.appendChild(_ajs);
  7510. }
  7511. }
  7512. //U.MD.D.I.openClick(str);
  7513. //如果有任务栏信息
  7514. // if (_taskbar) {
  7515. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7516. // }
  7517. }
  7518. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7519. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7520. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7521. _userinfo = US.userInfo, //登录用户信息
  7522. _userid = US.userInfo.userid //登录用户id
  7523. let _iframe;
  7524. let _cid = cid,
  7525. _stage = stage,
  7526. _task = task,
  7527. _tool = tool;
  7528. var _jie = $$("div", {
  7529. "style": {
  7530. "position": "absolute",
  7531. "bottom": "50px",
  7532. "right": "50px",
  7533. "zIndex": "9999",
  7534. "backgroundColor": "#2268bc",
  7535. "color": "#fff",
  7536. "padding": "12px 20px",
  7537. "cursor": "pointer",
  7538. "borderRadius": "4px",
  7539. },
  7540. "innerHTML": "提交作业"
  7541. })
  7542. let aTool = ''
  7543. let _loading = document.createElement('div')
  7544. _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;"
  7545. // _loading.id = "";
  7546. let _lchild = document.createElement('div')
  7547. let _limg = document.createElement('img')
  7548. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7549. _limg.style = "width: 26px;margin-right: 10px;"
  7550. _lchild.appendChild(_limg)
  7551. let _lspan = document.createElement('span')
  7552. _lspan.innerHTML = "上传中..."
  7553. _lchild.appendChild(_lspan)
  7554. _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%);"
  7555. _loading.appendChild(_lchild)
  7556. let _box = $$('div', {
  7557. "style": {
  7558. "position": "relative",
  7559. "width": "100%",
  7560. "height": "100%",
  7561. },
  7562. })
  7563. _box.appendChild(_loading)
  7564. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7565. switch (str) {
  7566. case "whiteboard":
  7567. aTool = 1;
  7568. _iframe = $$("iframe", {
  7569. "frameborder": "no",
  7570. "border": "0",
  7571. "scrolling ": "no",
  7572. "style": {
  7573. "cssText": "border:0;width:100%;height:100%"
  7574. },
  7575. "src": "https://beta.iwb.cocorobo.cn/"
  7576. })
  7577. _box.appendChild(_iframe);
  7578. _box.appendChild(_jie);
  7579. _formdiv = new U.UF.UI.form(
  7580. "电子白板",
  7581. _box, {
  7582. "id": "whiteboard" + cid + stage + task + tool,
  7583. "style": {
  7584. "width": "90%",
  7585. "height": "90%",
  7586. "overflow": 'hidden'
  7587. },
  7588. "onresize": function () { }
  7589. }, {
  7590. closecallback: function () { }
  7591. }, {
  7592. "style": {
  7593. "height": "36px"
  7594. }
  7595. }).form; //创建窗体
  7596. _taskbar = {
  7597. "id": str + _formdiv.id,
  7598. "style": {
  7599. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7600. },
  7601. "name": "电子白板",
  7602. "forms": _formdiv,
  7603. "click": function () {
  7604. U.MD.D.I.openApplication(str, obj, info);
  7605. }
  7606. }
  7607. break;
  7608. case "mind":
  7609. aTool = 3;
  7610. _iframe = $$("iframe", {
  7611. "frameborder": "no",
  7612. "border": "0",
  7613. "scrolling ": "no",
  7614. "style": {
  7615. "cssText": "border:0;width:100%;height:100%"
  7616. },
  7617. "src": "/kityminder-editor/dist/index.html"
  7618. })
  7619. _box.appendChild(_iframe);
  7620. _box.appendChild(_jie);
  7621. _formdiv = new U.UF.UI.form(
  7622. "思维导图",
  7623. _box, { //"/jsmind/example/demo.html"
  7624. "id": "mind" + cid + stage + task + tool,
  7625. "style": {
  7626. "width": "90%",
  7627. "height": "90%",
  7628. "overflow": 'hidden'
  7629. },
  7630. "onresize": function () { }
  7631. }, {
  7632. closecallback: function () { }
  7633. }, {
  7634. "style": {
  7635. "height": "36px"
  7636. }
  7637. }).form; //创建窗体
  7638. _taskbar = {
  7639. "id": str + _formdiv.id,
  7640. "style": {
  7641. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7642. },
  7643. "name": "思维导图",
  7644. "forms": _formdiv,
  7645. "click": function () {
  7646. U.MD.D.I.openApplication(str, obj, info);
  7647. }
  7648. }
  7649. break;
  7650. case "MindMap":
  7651. aTool = 3;
  7652. _iframe = $$("iframe", {
  7653. "frameborder": "no",
  7654. "border": "0",
  7655. "scrolling ": "no",
  7656. "style": {
  7657. "cssText": "border:0;width:100%;height:100%"
  7658. },
  7659. "src": "//cloud.cocorobo.cn/mind/"
  7660. })
  7661. _box.appendChild(_iframe);
  7662. _box.appendChild(_jie);
  7663. _formdiv = new U.UF.UI.form(
  7664. "思维导图",
  7665. _box, { //"/jsmind/example/demo.html"
  7666. "id": "mind" + cid + stage + task + tool,
  7667. "style": {
  7668. "width": "90%",
  7669. "height": "90%",
  7670. "overflow": 'hidden'
  7671. },
  7672. "onresize": function () { }
  7673. }, {
  7674. closecallback: function () { }
  7675. }, {
  7676. "style": {
  7677. "height": "36px"
  7678. }
  7679. }).form; //创建窗体
  7680. _taskbar = {
  7681. "id": str + _formdiv.id,
  7682. "style": {
  7683. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7684. },
  7685. "name": "思维导图",
  7686. "forms": _formdiv,
  7687. "click": function () {
  7688. U.MD.D.I.openApplication(str, obj, info);
  7689. }
  7690. }
  7691. break;
  7692. case "doc":
  7693. aTool = 6;
  7694. _iframe = $$("iframe", {
  7695. "frameborder": "no",
  7696. "border": "0",
  7697. "scrolling ": "no",
  7698. "style": {
  7699. "cssText": "border:0;width:100%;height:100%"
  7700. },
  7701. "src": "/Office/Word/WordEditArea.htm"
  7702. })
  7703. _box.appendChild(_iframe);
  7704. _box.appendChild(_jie);
  7705. _formdiv = new U.UF.UI.form(
  7706. "协同文档",
  7707. _box, {
  7708. "id": "doc" + cid + stage + task + tool,
  7709. "style": {
  7710. "width": "90%",
  7711. "height": "90%",
  7712. "overflow": 'hidden'
  7713. },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, {
  7718. "style": {
  7719. "height": "36px"
  7720. }
  7721. }).form; //创建窗体
  7722. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7723. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7724. })
  7725. _taskbar = {
  7726. "id": str + _formdiv.id,
  7727. "style": {
  7728. "backgroundImage": "url(/img/icon/doc.png)"
  7729. },
  7730. "name": "协同文档",
  7731. "forms": _formdiv,
  7732. "click": function () {
  7733. U.MD.D.I.openApplication(str, obj, info);
  7734. }
  7735. }
  7736. break;
  7737. case "mindNetwork": //好友打开
  7738. aTool = 7;
  7739. _iframe = $$("iframe", {
  7740. "webkitallowfullscreen": "",
  7741. "mozallowfullscreen": "",
  7742. "allowfullscreen": "",
  7743. "frameborder": "no",
  7744. "border": "0",
  7745. "scrolling ": "no",
  7746. "style": {
  7747. "cssText": "border:0; width:100%; height:100%;"
  7748. },
  7749. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7750. })
  7751. _box.appendChild(_iframe);
  7752. _box.appendChild(_jie);
  7753. _formdiv = new U.UF.UI.form(
  7754. "思维网格",
  7755. _box, {
  7756. "id": "mindNetwork" + cid + stage + task + tool,
  7757. "style": {
  7758. "width": "90%",
  7759. "height": "90%",
  7760. "overflow": 'hidden'
  7761. },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, {
  7766. "style": {
  7767. "height": "36px"
  7768. }
  7769. }).form; //创建窗体
  7770. _taskbar = {
  7771. "id": str + _formdiv.id,
  7772. "style": {
  7773. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7774. },
  7775. "name": "思维网格",
  7776. "forms": _formdiv,
  7777. "click": function () {
  7778. U.MD.D.I.openApplication(str, obj, info);
  7779. }
  7780. }
  7781. break;
  7782. case "courseDesign":
  7783. _iframe = $$("iframe", {
  7784. "webkitallowfullscreen": "",
  7785. "mozallowfullscreen": "",
  7786. "allowfullscreen": "",
  7787. "frameborder": "no",
  7788. "border": "0",
  7789. "scrolling ": "no",
  7790. "style": {
  7791. "cssText": "border:0; width:100%; height:100%;"
  7792. },
  7793. "src": "/course-design-vue"
  7794. })
  7795. _box.appendChild(_iframe);
  7796. _box.appendChild(_jie);
  7797. _formdiv = new U.UF.UI.form(
  7798. "项目设计",
  7799. _box, {
  7800. "id": "courseDesign" + cid + stage + task + tool,
  7801. "style": {
  7802. "width": "90%",
  7803. "height": "90%",
  7804. "overflow": 'hidden'
  7805. },
  7806. "onresize": function () { }
  7807. }, {
  7808. closecallback: function () { }
  7809. }, {
  7810. "style": {
  7811. "height": "36px"
  7812. }
  7813. }).form; //创建窗体
  7814. _taskbar = {
  7815. "id": str + _formdiv.id,
  7816. "style": {
  7817. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7818. },
  7819. "name": "项目设计",
  7820. "forms": _formdiv,
  7821. "click": function () {
  7822. U.MD.D.I.openApplication(str, obj, info);
  7823. }
  7824. }
  7825. break;
  7826. }
  7827. const script1 = document.createElement("script");
  7828. script1.type = "text/javascript";
  7829. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7830. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7831. const script2 = document.createElement("script");
  7832. script2.type = "text/javascript";
  7833. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7834. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7835. const script3 = document.createElement("script");
  7836. script3.type = "text/javascript";
  7837. script3.charset = "UTF-8";
  7838. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7839. const script4 = document.createElement("script");
  7840. script4.type = "text/javascript";
  7841. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7842. script4.src = window.origin + "/js/Common/jietu2E.js";
  7843. if (_iframe) {
  7844. if (str == 'doc') {
  7845. _iframe = _formdiv.querySelector('iframe')
  7846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7847. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7848. _iframe.contentWindow.document.body.appendChild(script1);
  7849. _iframe.contentWindow.document.body.appendChild(script2);
  7850. // _iframe.contentWindow.document.body.appendChild(script3);
  7851. _iframe.contentWindow.document.body.appendChild(script4);
  7852. })
  7853. if (onloadListener) {
  7854. _iframe.contentDocument.location.reload()
  7855. } else {
  7856. _iframe.contentDocument.location.reload()
  7857. }
  7858. } else if (str == 'courseDesign') {
  7859. U.UF.DL.iframeLoad(_iframe, function () {
  7860. // _iframe.contentWindow.U.MD.O.W.load();
  7861. // _iframe.contentWindow.document.body.appendChild(script1);
  7862. _iframe.contentWindow.document.body.appendChild(script2);
  7863. _iframe.contentWindow.document.body.appendChild(script4);
  7864. })
  7865. } else if (str == 'mind') {
  7866. _iframe = _formdiv.querySelector('iframe')
  7867. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7868. //
  7869. _iframe.contentWindow.document.body.appendChild(script1);
  7870. _iframe.contentWindow.document.body.appendChild(script2);
  7871. _iframe.contentWindow.document.body.appendChild(script4);
  7872. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7873. })
  7874. if (onloadListener) {
  7875. _iframe.contentDocument.location.reload()
  7876. } else {
  7877. _iframe.contentDocument.location.reload()
  7878. }
  7879. } else if (str == 'whiteboard') {
  7880. _iframe = _formdiv.querySelector('iframe')
  7881. let onloadListener = _iframe.onload = () => {
  7882. _iframe.contentWindow.document.body.appendChild(script1);
  7883. _iframe.contentWindow.document.body.appendChild(script2);
  7884. _iframe.contentWindow.document.body.appendChild(script4);
  7885. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7886. };
  7887. // if (onloadListener) {
  7888. // try {
  7889. // _iframe.src += "?cocorobo="+new Date().getTime()
  7890. // _iframe.contentWindow.document.location.reload()
  7891. // } catch (error) {
  7892. // }
  7893. // } else {
  7894. // _iframe.contentDocument.location.reload()
  7895. // }
  7896. } else {
  7897. _iframe.onload = () => {
  7898. _iframe.contentWindow.document.body.appendChild(script1);
  7899. _iframe.contentWindow.document.body.appendChild(script2);
  7900. // _iframe.contentWindow.document.body.appendChild(script3);
  7901. _iframe.contentWindow.document.body.appendChild(script4);
  7902. };
  7903. }
  7904. _jie.onclick = async () => {
  7905. let text = ''
  7906. if (aTool == 1) {
  7907. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7908. } else if (aTool == 6) {
  7909. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7910. } else if (aTool == 3) {
  7911. text = await U.MD.D.I.getEditorContent(_iframe);
  7912. }
  7913. _loading.style.display = 'flex'
  7914. console.log(_loading);
  7915. var _ajs = _iframe.contentWindow.document.createElement("script");
  7916. _ajs.type = "text/javascript";
  7917. _ajs.innerHTML =
  7918. // 'console.log(' + _loading + ');\n' +
  7919. 'var _js = document.createElement("script");\n' +
  7920. '_js.type="text/javascript";\n' +
  7921. '_js.charset="UTF-8";\n' +
  7922. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7923. "_js.onload = function(){\n" +
  7924. ' var a = document.getElementsByTagName("img")\n' +
  7925. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7926. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7927. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7928. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7929. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7930. "beforeUpload_shishi(file," +
  7931. "'" +
  7932. _userid +
  7933. "'" +
  7934. ", " +
  7935. "'" +
  7936. _cid +
  7937. "'" +
  7938. ", " +
  7939. "'" +
  7940. _stage +
  7941. "'" +
  7942. ", " +
  7943. "'" +
  7944. _task +
  7945. "'" +
  7946. ", " +
  7947. "'" +
  7948. _tool +
  7949. "'" +
  7950. ", " +
  7951. "'" +
  7952. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7953. "'" +
  7954. ", " +
  7955. "'" +
  7956. aTool +
  7957. "'" +
  7958. ", " +
  7959. "`" +
  7960. text +
  7961. "`" +
  7962. ")\n" +
  7963. " });\n" +
  7964. "}\n" +
  7965. "document.head.appendChild(_js);\n";
  7966. _iframe.contentWindow.document.head.appendChild(_ajs);
  7967. }
  7968. }
  7969. //U.MD.D.I.openClick(str);
  7970. //如果有任务栏信息
  7971. // if (_taskbar) {
  7972. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7973. // }
  7974. }
  7975. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7976. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7977. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7978. _userid = student.userid, //登录用户id
  7979. _username = student.student //用户名字
  7980. let _iframe;
  7981. let _cid = cid,
  7982. _stage = stage,
  7983. _task = task,
  7984. _tool = tool;
  7985. var _jie = $$("div", {
  7986. "style": {
  7987. "position": "absolute",
  7988. "bottom": "50px",
  7989. "right": "50px",
  7990. "zIndex": "9999",
  7991. "backgroundColor": "#2268bc",
  7992. "color": "#fff",
  7993. "padding": "12px 20px",
  7994. "cursor": "pointer",
  7995. "borderRadius": "4px",
  7996. },
  7997. "innerHTML": "提交作业"
  7998. })
  7999. let aTool = ''
  8000. let _loading = document.createElement('div')
  8001. _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;"
  8002. // _loading.id = "";
  8003. let _lchild = document.createElement('div')
  8004. let _limg = document.createElement('img')
  8005. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8006. _limg.style = "width: 26px;margin-right: 10px;"
  8007. _lchild.appendChild(_limg)
  8008. let _lspan = document.createElement('span')
  8009. _lspan.innerHTML = "上传中..."
  8010. _lchild.appendChild(_lspan)
  8011. _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%);"
  8012. _loading.appendChild(_lchild)
  8013. var _box = $$('div', {
  8014. "style": {
  8015. "position": "relative",
  8016. "width": "100%",
  8017. "height": "100%",
  8018. },
  8019. })
  8020. _box.appendChild(_loading)
  8021. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8022. switch (str) {
  8023. case "whiteboard":
  8024. aTool = 1;
  8025. _iframe = $$("iframe", {
  8026. "frameborder": "no",
  8027. "border": "0",
  8028. "scrolling ": "no",
  8029. "style": {
  8030. "cssText": "border:0;width:100%;height:100%"
  8031. },
  8032. "src": "https://beta.iwb.cocorobo.cn/"
  8033. })
  8034. _box.appendChild(_iframe);
  8035. _box.appendChild(_jie);
  8036. _formdiv = new U.UF.UI.form(
  8037. "电子白板-" + _username,
  8038. _box, {
  8039. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8040. "style": {
  8041. "width": "90%",
  8042. "height": "90%",
  8043. "overflow": 'hidden'
  8044. },
  8045. "onresize": function () { }
  8046. }, {
  8047. closecallback: function () { }
  8048. }, {
  8049. "style": {
  8050. "height": "36px"
  8051. }
  8052. }).form; //创建窗体
  8053. _taskbar = {
  8054. "id": str + _formdiv.id,
  8055. "style": {
  8056. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8057. },
  8058. "name": "电子白板",
  8059. "forms": _formdiv,
  8060. "click": function () {
  8061. U.MD.D.I.openApplication(str, obj, info);
  8062. }
  8063. }
  8064. break;
  8065. case "mind":
  8066. aTool = 3;
  8067. _iframe = $$("iframe", {
  8068. "frameborder": "no",
  8069. "border": "0",
  8070. "scrolling ": "no",
  8071. "style": {
  8072. "cssText": "border:0;width:100%;height:100%"
  8073. },
  8074. "src": "/kityminder-editor/dist/index.html"
  8075. })
  8076. _box.appendChild(_iframe);
  8077. _box.appendChild(_jie);
  8078. _formdiv = new U.UF.UI.form(
  8079. "思维导图-" + _username,
  8080. _box, { //"/jsmind/example/demo.html"
  8081. "id": "mind" + cid + stage + task + tool + _userid,
  8082. "style": {
  8083. "width": "90%",
  8084. "height": "90%",
  8085. "overflow": 'hidden'
  8086. },
  8087. "onresize": function () { }
  8088. }, {
  8089. closecallback: function () { }
  8090. }, {
  8091. "style": {
  8092. "height": "36px"
  8093. }
  8094. }).form; //创建窗体
  8095. _taskbar = {
  8096. "id": str + _formdiv.id,
  8097. "style": {
  8098. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8099. },
  8100. "name": "思维导图",
  8101. "forms": _formdiv,
  8102. "click": function () {
  8103. U.MD.D.I.openApplication(str, obj, info);
  8104. }
  8105. }
  8106. break;
  8107. case "MindMap":
  8108. aTool = 3;
  8109. _iframe = $$("iframe", {
  8110. "frameborder": "no",
  8111. "border": "0",
  8112. "scrolling ": "no",
  8113. "style": {
  8114. "cssText": "border:0;width:100%;height:100%"
  8115. },
  8116. "src": "//cloud.cocorobo.cn/mind/"
  8117. })
  8118. _box.appendChild(_iframe);
  8119. _box.appendChild(_jie);
  8120. _formdiv = new U.UF.UI.form(
  8121. "思维导图-" + _username,
  8122. _box, { //"/jsmind/example/demo.html"
  8123. "id": "mind" + cid + stage + task + tool + _userid,
  8124. "style": {
  8125. "width": "90%",
  8126. "height": "90%",
  8127. "overflow": 'hidden'
  8128. },
  8129. "onresize": function () { }
  8130. }, {
  8131. closecallback: function () { }
  8132. }, {
  8133. "style": {
  8134. "height": "36px"
  8135. }
  8136. }).form; //创建窗体
  8137. _taskbar = {
  8138. "id": str + _formdiv.id,
  8139. "style": {
  8140. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8141. },
  8142. "name": "思维导图",
  8143. "forms": _formdiv,
  8144. "click": function () {
  8145. U.MD.D.I.openApplication(str, obj, info);
  8146. }
  8147. }
  8148. break;
  8149. case "doc":
  8150. aTool = 6;
  8151. _iframe = $$("iframe", {
  8152. "frameborder": "no",
  8153. "border": "0",
  8154. "scrolling ": "no",
  8155. "style": {
  8156. "cssText": "border:0;width:100%;height:100%"
  8157. },
  8158. "src": "/Office/Word/WordEditArea.htm"
  8159. })
  8160. _box.appendChild(_iframe);
  8161. _box.appendChild(_jie);
  8162. _formdiv = new U.UF.UI.form(
  8163. "协同文档-" + _username,
  8164. _box, {
  8165. "id": "doc" + cid + stage + task + tool + _userid,
  8166. "style": {
  8167. "width": "90%",
  8168. "height": "90%",
  8169. "overflow": 'hidden'
  8170. },
  8171. "onresize": function () { }
  8172. }, {
  8173. closecallback: function () { }
  8174. }, {
  8175. "style": {
  8176. "height": "36px"
  8177. }
  8178. }).form; //创建窗体
  8179. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8180. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8181. })
  8182. _taskbar = {
  8183. "id": str + _formdiv.id,
  8184. "style": {
  8185. "backgroundImage": "url(/img/icon/doc.png)"
  8186. },
  8187. "name": "协同文档",
  8188. "forms": _formdiv,
  8189. "click": function () {
  8190. U.MD.D.I.openApplication(str, obj, info);
  8191. }
  8192. }
  8193. break;
  8194. case "mindNetwork": //好友打开
  8195. aTool = 7;
  8196. _iframe = $$("iframe", {
  8197. "webkitallowfullscreen": "",
  8198. "mozallowfullscreen": "",
  8199. "allowfullscreen": "",
  8200. "frameborder": "no",
  8201. "border": "0",
  8202. "scrolling ": "no",
  8203. "style": {
  8204. "cssText": "border:0; width:100%; height:100%;"
  8205. },
  8206. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8207. })
  8208. _box.appendChild(_iframe);
  8209. _box.appendChild(_jie);
  8210. _formdiv = new U.UF.UI.form(
  8211. "思维网格-" + _username,
  8212. _box, {
  8213. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8214. "style": {
  8215. "width": "90%",
  8216. "height": "90%",
  8217. "overflow": 'hidden'
  8218. },
  8219. "onresize": function () { }
  8220. }, {
  8221. closecallback: function () { }
  8222. }, {
  8223. "style": {
  8224. "height": "36px"
  8225. }
  8226. }).form; //创建窗体
  8227. _taskbar = {
  8228. "id": str + _formdiv.id,
  8229. "style": {
  8230. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8231. },
  8232. "name": "思维网格",
  8233. "forms": _formdiv,
  8234. "click": function () {
  8235. U.MD.D.I.openApplication(str, obj, info);
  8236. }
  8237. }
  8238. break;
  8239. case "courseDesign":
  8240. _iframe = $$("iframe", {
  8241. "webkitallowfullscreen": "",
  8242. "mozallowfullscreen": "",
  8243. "allowfullscreen": "",
  8244. "frameborder": "no",
  8245. "border": "0",
  8246. "scrolling ": "no",
  8247. "style": {
  8248. "cssText": "border:0; width:100%; height:100%;"
  8249. },
  8250. "src": "/course-design-vue"
  8251. })
  8252. _box.appendChild(_iframe);
  8253. _box.appendChild(_jie);
  8254. _formdiv = new U.UF.UI.form(
  8255. "项目设计-" + _username,
  8256. _box, {
  8257. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8258. "style": {
  8259. "width": "90%",
  8260. "height": "90%",
  8261. "overflow": 'hidden'
  8262. },
  8263. "onresize": function () { }
  8264. }, {
  8265. closecallback: function () { }
  8266. }, {
  8267. "style": {
  8268. "height": "36px"
  8269. }
  8270. }).form; //创建窗体
  8271. _taskbar = {
  8272. "id": str + _formdiv.id,
  8273. "style": {
  8274. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8275. },
  8276. "name": "项目设计",
  8277. "forms": _formdiv,
  8278. "click": function () {
  8279. U.MD.D.I.openApplication(str, obj, info);
  8280. }
  8281. }
  8282. break;
  8283. }
  8284. const script1 = document.createElement("script");
  8285. script1.type = "text/javascript";
  8286. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8287. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8288. const script2 = document.createElement("script");
  8289. script2.type = "text/javascript";
  8290. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8291. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8292. const script3 = document.createElement("script");
  8293. script3.type = "text/javascript";
  8294. script3.charset = "UTF-8";
  8295. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8296. const script4 = document.createElement("script");
  8297. script4.type = "text/javascript";
  8298. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8299. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8300. if (_iframe) {
  8301. if (str == 'doc') {
  8302. _iframe = _formdiv.querySelector('iframe')
  8303. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8304. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8305. _iframe.contentWindow.document.body.appendChild(script1);
  8306. _iframe.contentWindow.document.body.appendChild(script2);
  8307. // _iframe.contentWindow.document.body.appendChild(script3);
  8308. _iframe.contentWindow.document.body.appendChild(script4);
  8309. })
  8310. if (onloadListener) {
  8311. _iframe.contentDocument.location.reload()
  8312. } else {
  8313. _iframe.contentDocument.location.reload()
  8314. }
  8315. } else if (str == 'courseDesign') {
  8316. U.UF.DL.iframeLoad(_iframe, function () {
  8317. // _iframe.contentWindow.U.MD.O.W.load();
  8318. // _iframe.contentWindow.document.body.appendChild(script1);
  8319. _iframe.contentWindow.document.body.appendChild(script2);
  8320. _iframe.contentWindow.document.body.appendChild(script4);
  8321. })
  8322. } else if (str == 'mind') {
  8323. _iframe = _formdiv.querySelector('iframe')
  8324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8325. //
  8326. _iframe.contentWindow.document.body.appendChild(script1);
  8327. _iframe.contentWindow.document.body.appendChild(script2);
  8328. _iframe.contentWindow.document.body.appendChild(script4);
  8329. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8330. })
  8331. if (onloadListener) {
  8332. _iframe.contentDocument.location.reload()
  8333. } else {
  8334. _iframe.contentDocument.location.reload()
  8335. }
  8336. } else if (str == 'whiteboard') {
  8337. _iframe = _formdiv.querySelector('iframe')
  8338. let onloadListener = _iframe.onload = () => {
  8339. _iframe.contentWindow.document.body.appendChild(script1);
  8340. _iframe.contentWindow.document.body.appendChild(script2);
  8341. _iframe.contentWindow.document.body.appendChild(script4);
  8342. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8343. };
  8344. // if (onloadListener) {
  8345. // try {
  8346. // _iframe.src += "?cocorobo="+new Date().getTime()
  8347. // _iframe.contentWindow.document.location.reload()
  8348. // } catch (error) {
  8349. // }
  8350. // } else {
  8351. // _iframe.contentDocument.location.reload()
  8352. // }
  8353. } else {
  8354. _iframe.onload = () => {
  8355. _iframe.contentWindow.document.body.appendChild(script1);
  8356. _iframe.contentWindow.document.body.appendChild(script2);
  8357. // _iframe.contentWindow.document.body.appendChild(script3);
  8358. _iframe.contentWindow.document.body.appendChild(script4);
  8359. };
  8360. }
  8361. _jie.onclick = async () => {
  8362. let text = ''
  8363. if (aTool == 1) {
  8364. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8365. } else if (aTool == 6) {
  8366. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8367. } else if (aTool == 3) {
  8368. text = await U.MD.D.I.getEditorContent(_iframe);
  8369. }
  8370. _loading.style.display = 'flex'
  8371. console.log(_loading);
  8372. var _ajs = _iframe.contentWindow.document.createElement("script");
  8373. _ajs.type = "text/javascript";
  8374. _ajs.innerHTML =
  8375. // 'console.log(' + _loading + ');\n' +
  8376. 'var _js = document.createElement("script");\n' +
  8377. '_js.type="text/javascript";\n' +
  8378. '_js.charset="UTF-8";\n' +
  8379. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8380. "_js.onload = function(){\n" +
  8381. ' var a = document.getElementsByTagName("img")\n' +
  8382. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8383. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8384. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8385. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8386. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8387. "beforeUpload_shishi(file," +
  8388. "'" +
  8389. _userid +
  8390. "'" +
  8391. ", " +
  8392. "'" +
  8393. _cid +
  8394. "'" +
  8395. ", " +
  8396. "'" +
  8397. _stage +
  8398. "'" +
  8399. ", " +
  8400. "'" +
  8401. _task +
  8402. "'" +
  8403. ", " +
  8404. "'" +
  8405. _tool +
  8406. "'" +
  8407. ", " +
  8408. "'" +
  8409. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8410. "'" +
  8411. ", " +
  8412. "'" +
  8413. aTool +
  8414. "'" +
  8415. ", " +
  8416. "`" +
  8417. text +
  8418. "`" +
  8419. ")\n" +
  8420. " });\n" +
  8421. "}\n" +
  8422. "document.head.appendChild(_js);\n";
  8423. _iframe.contentWindow.document.head.appendChild(_ajs);
  8424. }
  8425. }
  8426. }
  8427. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8428. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8429. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8430. _userid = student.userid, //登录用户id
  8431. _username = student.student //用户名字
  8432. let _iframe;
  8433. let _cid = cid,
  8434. _stage = stage,
  8435. _task = task,
  8436. _tool = tool;
  8437. var _jie = $$("div", {
  8438. "style": {
  8439. "position": "absolute",
  8440. "bottom": "50px",
  8441. "right": "50px",
  8442. "zIndex": "9999",
  8443. "backgroundColor": "#2268bc",
  8444. "color": "#fff",
  8445. "padding": "12px 20px",
  8446. "cursor": "pointer",
  8447. "borderRadius": "4px",
  8448. },
  8449. "innerHTML": "提交作业"
  8450. })
  8451. let aTool = ''
  8452. let _loading = document.createElement('div')
  8453. _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;"
  8454. // _loading.id = "";
  8455. let _lchild = document.createElement('div')
  8456. let _limg = document.createElement('img')
  8457. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8458. _limg.style = "width: 26px;margin-right: 10px;"
  8459. _lchild.appendChild(_limg)
  8460. let _lspan = document.createElement('span')
  8461. _lspan.innerHTML = "上传中..."
  8462. _lchild.appendChild(_lspan)
  8463. _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%);"
  8464. _loading.appendChild(_lchild)
  8465. var _box = $$('div', {
  8466. "style": {
  8467. "position": "relative",
  8468. "width": "100%",
  8469. "height": "100%",
  8470. },
  8471. })
  8472. _box.appendChild(_loading)
  8473. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8474. switch (str) {
  8475. case "whiteboard":
  8476. aTool = 1;
  8477. _iframe = $$("iframe", {
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0;width:100%;height:100%"
  8483. },
  8484. "src": "https://beta.iwb.cocorobo.cn/"
  8485. })
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "电子白板-" + _username,
  8490. _box, {
  8491. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //创建窗体
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8509. },
  8510. "name": "电子白板",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "mind":
  8518. aTool = 3;
  8519. _iframe = $$("iframe", {
  8520. "frameborder": "no",
  8521. "border": "0",
  8522. "scrolling ": "no",
  8523. "style": {
  8524. "cssText": "border:0;width:100%;height:100%"
  8525. },
  8526. "src": "/kityminder-editor/dist/index.html"
  8527. })
  8528. _box.appendChild(_iframe);
  8529. _box.appendChild(_jie);
  8530. _formdiv = new U.UF.UI.form(
  8531. "思维导图-" + _username,
  8532. _box, { //"/jsmind/example/demo.html"
  8533. "id": "mind" + cid + stage + task + tool + _userid,
  8534. "style": {
  8535. "width": "90%",
  8536. "height": "90%",
  8537. "overflow": 'hidden'
  8538. },
  8539. "onresize": function () { }
  8540. }, {
  8541. closecallback: function () { }
  8542. }, {
  8543. "style": {
  8544. "height": "36px"
  8545. }
  8546. }).form; //创建窗体
  8547. _taskbar = {
  8548. "id": str + _formdiv.id,
  8549. "style": {
  8550. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8551. },
  8552. "name": "思维导图",
  8553. "forms": _formdiv,
  8554. "click": function () {
  8555. U.MD.D.I.openApplication(str, obj, info);
  8556. }
  8557. }
  8558. break;
  8559. case "MindMap":
  8560. aTool = 3;
  8561. _iframe = $$("iframe", {
  8562. "frameborder": "no",
  8563. "border": "0",
  8564. "scrolling ": "no",
  8565. "style": {
  8566. "cssText": "border:0;width:100%;height:100%"
  8567. },
  8568. "src": "//cloud.cocorobo.cn/mind/"
  8569. })
  8570. _box.appendChild(_iframe);
  8571. _box.appendChild(_jie);
  8572. _formdiv = new U.UF.UI.form(
  8573. "思维导图-" + _username,
  8574. _box, { //"/jsmind/example/demo.html"
  8575. "id": "mind" + cid + stage + task + tool + _userid,
  8576. "style": {
  8577. "width": "90%",
  8578. "height": "90%",
  8579. "overflow": 'hidden'
  8580. },
  8581. "onresize": function () { }
  8582. }, {
  8583. closecallback: function () { }
  8584. }, {
  8585. "style": {
  8586. "height": "36px"
  8587. }
  8588. }).form; //创建窗体
  8589. _taskbar = {
  8590. "id": str + _formdiv.id,
  8591. "style": {
  8592. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8593. },
  8594. "name": "思维导图",
  8595. "forms": _formdiv,
  8596. "click": function () {
  8597. U.MD.D.I.openApplication(str, obj, info);
  8598. }
  8599. }
  8600. break;
  8601. case "doc":
  8602. aTool = 6;
  8603. _iframe = $$("iframe", {
  8604. "frameborder": "no",
  8605. "border": "0",
  8606. "scrolling ": "no",
  8607. "style": {
  8608. "cssText": "border:0;width:100%;height:100%"
  8609. },
  8610. "src": "/Office/Word/WordEditArea.htm"
  8611. })
  8612. _box.appendChild(_iframe);
  8613. _box.appendChild(_jie);
  8614. _formdiv = new U.UF.UI.form(
  8615. "协同文档-" + _username,
  8616. _box, {
  8617. "id": "doc" + cid + stage + task + tool + _userid,
  8618. "style": {
  8619. "width": "90%",
  8620. "height": "90%",
  8621. "overflow": 'hidden'
  8622. },
  8623. "onresize": function () { }
  8624. }, {
  8625. closecallback: function () { }
  8626. }, {
  8627. "style": {
  8628. "height": "36px"
  8629. }
  8630. }).form; //创建窗体
  8631. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8632. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8633. })
  8634. _taskbar = {
  8635. "id": str + _formdiv.id,
  8636. "style": {
  8637. "backgroundImage": "url(/img/icon/doc.png)"
  8638. },
  8639. "name": "协同文档",
  8640. "forms": _formdiv,
  8641. "click": function () {
  8642. U.MD.D.I.openApplication(str, obj, info);
  8643. }
  8644. }
  8645. break;
  8646. case "mindNetwork": //好友打开
  8647. aTool = 7;
  8648. _iframe = $$("iframe", {
  8649. "webkitallowfullscreen": "",
  8650. "mozallowfullscreen": "",
  8651. "allowfullscreen": "",
  8652. "frameborder": "no",
  8653. "border": "0",
  8654. "scrolling ": "no",
  8655. "style": {
  8656. "cssText": "border:0; width:100%; height:100%;"
  8657. },
  8658. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8659. })
  8660. _box.appendChild(_iframe);
  8661. _box.appendChild(_jie);
  8662. _formdiv = new U.UF.UI.form(
  8663. "思维网格-" + _username,
  8664. _box, {
  8665. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8666. "style": {
  8667. "width": "90%",
  8668. "height": "90%",
  8669. "overflow": 'hidden'
  8670. },
  8671. "onresize": function () { }
  8672. }, {
  8673. closecallback: function () { }
  8674. }, {
  8675. "style": {
  8676. "height": "36px"
  8677. }
  8678. }).form; //创建窗体
  8679. _taskbar = {
  8680. "id": str + _formdiv.id,
  8681. "style": {
  8682. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8683. },
  8684. "name": "思维网格",
  8685. "forms": _formdiv,
  8686. "click": function () {
  8687. U.MD.D.I.openApplication(str, obj, info);
  8688. }
  8689. }
  8690. break;
  8691. case "courseDesign":
  8692. _iframe = $$("iframe", {
  8693. "webkitallowfullscreen": "",
  8694. "mozallowfullscreen": "",
  8695. "allowfullscreen": "",
  8696. "frameborder": "no",
  8697. "border": "0",
  8698. "scrolling ": "no",
  8699. "style": {
  8700. "cssText": "border:0; width:100%; height:100%;"
  8701. },
  8702. "src": "/course-design-vue"
  8703. })
  8704. _box.appendChild(_iframe);
  8705. _box.appendChild(_jie);
  8706. _formdiv = new U.UF.UI.form(
  8707. "项目设计-" + _username,
  8708. _box, {
  8709. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8710. "style": {
  8711. "width": "90%",
  8712. "height": "90%",
  8713. "overflow": 'hidden'
  8714. },
  8715. "onresize": function () { }
  8716. }, {
  8717. closecallback: function () { }
  8718. }, {
  8719. "style": {
  8720. "height": "36px"
  8721. }
  8722. }).form; //创建窗体
  8723. _taskbar = {
  8724. "id": str + _formdiv.id,
  8725. "style": {
  8726. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8727. },
  8728. "name": "项目设计",
  8729. "forms": _formdiv,
  8730. "click": function () {
  8731. U.MD.D.I.openApplication(str, obj, info);
  8732. }
  8733. }
  8734. break;
  8735. }
  8736. const script1 = document.createElement("script");
  8737. script1.type = "text/javascript";
  8738. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8739. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8740. const script2 = document.createElement("script");
  8741. script2.type = "text/javascript";
  8742. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8743. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8744. const script3 = document.createElement("script");
  8745. script3.type = "text/javascript";
  8746. script3.charset = "UTF-8";
  8747. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8748. const script4 = document.createElement("script");
  8749. script4.type = "text/javascript";
  8750. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8751. script4.src = window.origin + "/js/Common/jietu2E.js";
  8752. if (_iframe) {
  8753. if (str == 'doc') {
  8754. _iframe = _formdiv.querySelector('iframe')
  8755. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8756. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8757. _iframe.contentWindow.document.body.appendChild(script1);
  8758. _iframe.contentWindow.document.body.appendChild(script2);
  8759. // _iframe.contentWindow.document.body.appendChild(script3);
  8760. _iframe.contentWindow.document.body.appendChild(script4);
  8761. })
  8762. if (onloadListener) {
  8763. _iframe.contentDocument.location.reload()
  8764. } else {
  8765. _iframe.contentDocument.location.reload()
  8766. }
  8767. } else if (str == 'courseDesign') {
  8768. U.UF.DL.iframeLoad(_iframe, function () {
  8769. // _iframe.contentWindow.U.MD.O.W.load();
  8770. // _iframe.contentWindow.document.body.appendChild(script1);
  8771. _iframe.contentWindow.document.body.appendChild(script2);
  8772. _iframe.contentWindow.document.body.appendChild(script4);
  8773. })
  8774. } else if (str == 'mind') {
  8775. _iframe = _formdiv.querySelector('iframe')
  8776. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8777. //
  8778. _iframe.contentWindow.document.body.appendChild(script1);
  8779. _iframe.contentWindow.document.body.appendChild(script2);
  8780. _iframe.contentWindow.document.body.appendChild(script4);
  8781. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8782. })
  8783. if (onloadListener) {
  8784. _iframe.contentDocument.location.reload()
  8785. } else {
  8786. _iframe.contentDocument.location.reload()
  8787. }
  8788. } else if (str == 'whiteboard') {
  8789. _iframe = _formdiv.querySelector('iframe')
  8790. let onloadListener = _iframe.onload = () => {
  8791. _iframe.contentWindow.document.body.appendChild(script1);
  8792. _iframe.contentWindow.document.body.appendChild(script2);
  8793. _iframe.contentWindow.document.body.appendChild(script4);
  8794. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8795. };
  8796. // if (onloadListener) {
  8797. // try {
  8798. // _iframe.src += "?cocorobo="+new Date().getTime()
  8799. // _iframe.contentWindow.document.location.reload()
  8800. // } catch (error) {
  8801. // }
  8802. // } else {
  8803. // _iframe.contentDocument.location.reload()
  8804. // }
  8805. } else {
  8806. _iframe.onload = () => {
  8807. _iframe.contentWindow.document.body.appendChild(script1);
  8808. _iframe.contentWindow.document.body.appendChild(script2);
  8809. // _iframe.contentWindow.document.body.appendChild(script3);
  8810. _iframe.contentWindow.document.body.appendChild(script4);
  8811. };
  8812. }
  8813. _jie.onclick = async () => {
  8814. let text = ''
  8815. if (aTool == 1) {
  8816. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8817. } else if (aTool == 6) {
  8818. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8819. } else if (aTool == 3) {
  8820. text = await U.MD.D.I.getEditorContent(_iframe);
  8821. }
  8822. _loading.style.display = 'flex'
  8823. console.log(_loading);
  8824. var _ajs = _iframe.contentWindow.document.createElement("script");
  8825. _ajs.type = "text/javascript";
  8826. _ajs.innerHTML =
  8827. // 'console.log(' + _loading + ');\n' +
  8828. 'var _js = document.createElement("script");\n' +
  8829. '_js.type="text/javascript";\n' +
  8830. '_js.charset="UTF-8";\n' +
  8831. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8832. "_js.onload = function(){\n" +
  8833. ' var a = document.getElementsByTagName("img")\n' +
  8834. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8835. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8836. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8837. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8838. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8839. "beforeUpload_shishi(file," +
  8840. "'" +
  8841. _userid +
  8842. "'" +
  8843. ", " +
  8844. "'" +
  8845. _cid +
  8846. "'" +
  8847. ", " +
  8848. "'" +
  8849. _stage +
  8850. "'" +
  8851. ", " +
  8852. "'" +
  8853. _task +
  8854. "'" +
  8855. ", " +
  8856. "'" +
  8857. _tool +
  8858. "'" +
  8859. ", " +
  8860. "'" +
  8861. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8862. "'" +
  8863. ", " +
  8864. "'" +
  8865. aTool +
  8866. "'" +
  8867. ", " +
  8868. "`" +
  8869. text +
  8870. "`" +
  8871. ")\n" +
  8872. " });\n" +
  8873. "}\n" +
  8874. "document.head.appendChild(_js);\n";
  8875. _iframe.contentWindow.document.head.appendChild(_ajs);
  8876. }
  8877. }
  8878. }
  8879. U.MD.D.I.getEditorContent = function (iframe) {
  8880. return new Promise((resolve, reject) => {
  8881. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8882. console.log(content);
  8883. resolve(content)
  8884. });
  8885. });
  8886. }
  8887. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8888. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8889. // if (res.value[0].length > 0) {
  8890. // // resolve(res.value[0][0].text);
  8891. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8892. // $(fileInput).val('');
  8893. // });
  8894. // }
  8895. // }, [], { "type": "GET", "withCredentials": true });
  8896. var xmlhttp;
  8897. var Mac, Sn, DeviceId
  8898. if (window.XMLHttpRequest) {
  8899. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8900. xmlhttp = new XMLHttpRequest();
  8901. } else {
  8902. // IE6, IE5 浏览器执行代码
  8903. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8904. }
  8905. xmlhttp.onreadystatechange = function () {
  8906. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8907. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8908. // resolve(res.value[0][0].text);
  8909. if (type == '2') {
  8910. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8911. } else if (type == '3') {
  8912. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8913. }
  8914. } else {
  8915. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8916. }
  8917. }
  8918. }
  8919. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8920. xmlhttp.send();
  8921. }
  8922. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8923. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8924. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8925. _userinfo = US.userInfo, //登录用户信息
  8926. _userid = US.userInfo.userid //登录用户id
  8927. let _iframe;
  8928. let _cid = cid,
  8929. _stage = stage,
  8930. _task = task,
  8931. _tool = tool;
  8932. var _jie = $$("div", {
  8933. "style": {
  8934. "position": "absolute",
  8935. "bottom": "50px",
  8936. "right": "50px",
  8937. "zIndex": "9999",
  8938. "backgroundColor": "#2268bc",
  8939. "color": "#fff",
  8940. "padding": "12px 20px",
  8941. "cursor": "pointer",
  8942. "borderRadius": "4px",
  8943. },
  8944. "innerHTML": "确认并提交"
  8945. })
  8946. let aTool = ''
  8947. let _loading = document.createElement('div')
  8948. _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;"
  8949. // _loading.id = "";
  8950. let _lchild = document.createElement('div')
  8951. let _limg = document.createElement('img')
  8952. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8953. _limg.style = "width: 26px;margin-right: 10px;"
  8954. _lchild.appendChild(_limg)
  8955. let _lspan = document.createElement('span')
  8956. _lspan.innerHTML = "上传中..."
  8957. _lchild.appendChild(_lspan)
  8958. _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%);"
  8959. _loading.appendChild(_lchild)
  8960. var _box = $$('div', {
  8961. "style": {
  8962. "position": "relative",
  8963. "width": "100%",
  8964. "height": "100%",
  8965. },
  8966. })
  8967. _box.appendChild(_loading)
  8968. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8969. switch (str) {
  8970. case "whiteboard":
  8971. aTool = 1;
  8972. _iframe = $$("iframe", {
  8973. "frameborder": "no",
  8974. "border": "0",
  8975. "scrolling ": "no",
  8976. "style": {
  8977. "cssText": "border:0;width:100%;height:100%"
  8978. },
  8979. "src": "https://beta.iwb.cocorobo.cn/"
  8980. })
  8981. _box.appendChild(_iframe);
  8982. _box.appendChild(_jie);
  8983. _formdiv = new U.UF.UI.form(
  8984. "电子白板",
  8985. _box, {
  8986. "id": "whiteboards" + cid + stage + task + tool,
  8987. "style": {
  8988. "width": "90%",
  8989. "height": "90%",
  8990. "overflow": 'hidden'
  8991. },
  8992. "onresize": function () { }
  8993. }, {
  8994. closecallback: function () { }
  8995. }, {
  8996. "style": {
  8997. "height": "36px"
  8998. }
  8999. }).form; //创建窗体
  9000. _taskbar = {
  9001. "id": str + _formdiv.id,
  9002. "style": {
  9003. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9004. },
  9005. "name": "电子白板",
  9006. "forms": _formdiv,
  9007. "click": function () {
  9008. U.MD.D.I.openApplication(str, obj, info);
  9009. }
  9010. }
  9011. break;
  9012. case "mind":
  9013. aTool = 3;
  9014. _iframe = $$("iframe", {
  9015. "frameborder": "no",
  9016. "border": "0",
  9017. "scrolling ": "no",
  9018. "style": {
  9019. "cssText": "border:0;width:100%;height:100%"
  9020. },
  9021. "src": "/kityminder-editor/dist/index.html"
  9022. });
  9023. _box.appendChild(_iframe);
  9024. _box.appendChild(_jie);
  9025. _formdiv = new U.UF.UI.form(
  9026. "思维导图",
  9027. _box, { //"/jsmind/example/demo.html"
  9028. "id": "minds" + cid + stage + task + tool,
  9029. "style": {
  9030. "width": "90%",
  9031. "height": "90%",
  9032. "overflow": 'hidden'
  9033. },
  9034. "onresize": function () { }
  9035. }, {
  9036. closecallback: function () { }
  9037. }, {
  9038. "style": {
  9039. "height": "36px"
  9040. }
  9041. }).form; //创建窗体
  9042. _taskbar = {
  9043. "id": str + _formdiv.id,
  9044. "style": {
  9045. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9046. },
  9047. "name": "思维导图",
  9048. "forms": _formdiv,
  9049. "click": function () {
  9050. U.MD.D.I.openApplication(str, obj, info);
  9051. }
  9052. }
  9053. break;
  9054. case "doc":
  9055. aTool = 6;
  9056. _iframe = $$("iframe", {
  9057. "frameborder": "no",
  9058. "border": "0",
  9059. "scrolling ": "no",
  9060. "style": {
  9061. "cssText": "border:0;width:100%;height:100%"
  9062. },
  9063. "src": "/Office/Word/WordEditArea.htm"
  9064. })
  9065. _box.appendChild(_iframe);
  9066. _box.appendChild(_jie);
  9067. _formdiv = new U.UF.UI.form(
  9068. "协同文档",
  9069. _box, {
  9070. "id": "docs" + cid + stage + task + tool,
  9071. "style": {
  9072. "width": "90%",
  9073. "height": "90%",
  9074. "overflow": 'hidden'
  9075. },
  9076. "onresize": function () { }
  9077. }, {
  9078. closecallback: function () { }
  9079. }, {
  9080. "style": {
  9081. "height": "36px"
  9082. }
  9083. }).form; //创建窗体
  9084. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9085. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9086. })
  9087. _taskbar = {
  9088. "id": str + _formdiv.id,
  9089. "style": {
  9090. "backgroundImage": "url(/img/icon/doc.png)"
  9091. },
  9092. "name": "协同文档",
  9093. "forms": _formdiv,
  9094. "click": function () {
  9095. U.MD.D.I.openApplication(str, obj, info);
  9096. }
  9097. }
  9098. break;
  9099. }
  9100. const script1 = document.createElement("script");
  9101. script1.type = "text/javascript";
  9102. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9103. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9104. const script2 = document.createElement("script");
  9105. script2.type = "text/javascript";
  9106. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9107. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9108. const script3 = document.createElement("script");
  9109. script3.type = "text/javascript";
  9110. script3.charset = "UTF-8";
  9111. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9112. const script4 = document.createElement("script");
  9113. script4.type = "text/javascript";
  9114. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9115. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9116. if (_iframe) {
  9117. if (str == 'doc') {
  9118. _iframe = _formdiv.querySelector('iframe')
  9119. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9120. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9121. _iframe.contentWindow.document.body.appendChild(script1);
  9122. _iframe.contentWindow.document.body.appendChild(script2);
  9123. // _iframe.contentWindow.document.body.appendChild(script3);
  9124. _iframe.contentWindow.document.body.appendChild(script4);
  9125. })
  9126. if (onloadListener) {
  9127. _iframe.contentDocument.location.reload()
  9128. } else {
  9129. _iframe.contentDocument.location.reload()
  9130. }
  9131. } else if (str == 'mind') {
  9132. _iframe = _formdiv.querySelector('iframe')
  9133. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9134. _iframe.contentWindow.document.body.appendChild(script1);
  9135. _iframe.contentWindow.document.body.appendChild(script2);
  9136. _iframe.contentWindow.document.body.appendChild(script4);
  9137. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9138. })
  9139. if (onloadListener) {
  9140. _iframe.contentDocument.location.reload()
  9141. } else {
  9142. _iframe.contentDocument.location.reload()
  9143. }
  9144. } else {
  9145. _iframe.onload = () => {
  9146. _iframe.contentWindow.document.body.appendChild(script1);
  9147. _iframe.contentWindow.document.body.appendChild(script2);
  9148. // _iframe.contentWindow.document.body.appendChild(script3);
  9149. _iframe.contentWindow.document.body.appendChild(script4);
  9150. };
  9151. }
  9152. _jie.onclick = async () => {
  9153. let text = ''
  9154. if (aTool == 6) {
  9155. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9156. } else if (aTool == 3) {
  9157. text = await U.MD.D.I.getEditorContent(_iframe);
  9158. }
  9159. _loading.style.display = 'flex'
  9160. console.log(_loading);
  9161. var _ajs = _iframe.contentWindow.document.createElement("script");
  9162. _ajs.type = "text/javascript";
  9163. _ajs.innerHTML =
  9164. // 'console.log(' + _loading + ');\n' +
  9165. 'var _js = document.createElement("script");\n' +
  9166. '_js.type="text/javascript";\n' +
  9167. '_js.charset="UTF-8";\n' +
  9168. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9169. "_js.onload = function(){\n" +
  9170. ' var a = document.getElementsByTagName("img")\n' +
  9171. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9172. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9173. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9174. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9175. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9176. "beforeUpload_shishi(file," +
  9177. "'" +
  9178. _userid +
  9179. "'" +
  9180. ", " +
  9181. "'" +
  9182. _cid +
  9183. "'" +
  9184. ", " +
  9185. "'" +
  9186. _stage +
  9187. "'" +
  9188. ", " +
  9189. "'" +
  9190. _task +
  9191. "'" +
  9192. ", " +
  9193. "'" +
  9194. _tool +
  9195. "'" +
  9196. ", " +
  9197. "'" +
  9198. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9199. "'" +
  9200. ", " +
  9201. "'" +
  9202. aTool +
  9203. "'" +
  9204. ", " +
  9205. "`" +
  9206. text +
  9207. "`" +
  9208. ")\n" +
  9209. " });\n" +
  9210. "}\n" +
  9211. "document.head.appendChild(_js);\n";
  9212. _iframe.contentWindow.document.head.appendChild(_ajs);
  9213. }
  9214. }
  9215. //U.MD.D.I.openClick(str);
  9216. //如果有任务栏信息
  9217. // if (_taskbar) {
  9218. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9219. // }
  9220. }
  9221. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9222. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9223. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9224. _userinfo = US.userInfo, //登录用户信息
  9225. _userid = US.userInfo.userid //登录用户id
  9226. let _iframe;
  9227. let _cid = cid,
  9228. _stage = stage,
  9229. _task = task,
  9230. _tool = tool;
  9231. var _jie = $$("div", {
  9232. "style": {
  9233. "position": "absolute",
  9234. "bottom": "50px",
  9235. "right": "50px",
  9236. "zIndex": "9999",
  9237. "backgroundColor": "#2268bc",
  9238. "color": "#fff",
  9239. "padding": "12px 20px",
  9240. "cursor": "pointer",
  9241. "borderRadius": "4px",
  9242. },
  9243. "innerHTML": "确认并提交"
  9244. })
  9245. let aTool = ''
  9246. let _loading = document.createElement('div')
  9247. _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;"
  9248. // _loading.id = "";
  9249. let _lchild = document.createElement('div')
  9250. let _limg = document.createElement('img')
  9251. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9252. _limg.style = "width: 26px;margin-right: 10px;"
  9253. _lchild.appendChild(_limg)
  9254. let _lspan = document.createElement('span')
  9255. _lspan.innerHTML = "上传中..."
  9256. _lchild.appendChild(_lspan)
  9257. _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%);"
  9258. _loading.appendChild(_lchild)
  9259. var _box = $$('div', {
  9260. "style": {
  9261. "position": "relative",
  9262. "width": "100%",
  9263. "height": "100%",
  9264. },
  9265. })
  9266. _box.appendChild(_loading)
  9267. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9268. switch (str) {
  9269. case "whiteboard":
  9270. aTool = 1;
  9271. _iframe = $$("iframe", {
  9272. "frameborder": "no",
  9273. "border": "0",
  9274. "scrolling ": "no",
  9275. "style": {
  9276. "cssText": "border:0;width:100%;height:100%"
  9277. },
  9278. "src": "https://beta.iwb.cocorobo.cn/"
  9279. })
  9280. _box.appendChild(_iframe);
  9281. _box.appendChild(_jie);
  9282. _formdiv = new U.UF.UI.form(
  9283. "电子白板",
  9284. _box, {
  9285. "id": "whiteboards" + cid + stage + task + tool,
  9286. "style": {
  9287. "width": "90%",
  9288. "height": "90%",
  9289. "overflow": 'hidden'
  9290. },
  9291. "onresize": function () { }
  9292. }, {
  9293. closecallback: function () { }
  9294. }, {
  9295. "style": {
  9296. "height": "36px"
  9297. }
  9298. }).form; //创建窗体
  9299. _taskbar = {
  9300. "id": str + _formdiv.id,
  9301. "style": {
  9302. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9303. },
  9304. "name": "电子白板",
  9305. "forms": _formdiv,
  9306. "click": function () {
  9307. U.MD.D.I.openApplication(str, obj, info);
  9308. }
  9309. }
  9310. break;
  9311. case "mind":
  9312. aTool = 3;
  9313. _iframe = $$("iframe", {
  9314. "frameborder": "no",
  9315. "border": "0",
  9316. "scrolling ": "no",
  9317. "style": {
  9318. "cssText": "border:0;width:100%;height:100%"
  9319. },
  9320. "src": "/kityminder-editor/dist/index.html"
  9321. });
  9322. _box.appendChild(_iframe);
  9323. _box.appendChild(_jie);
  9324. _formdiv = new U.UF.UI.form(
  9325. "思维导图",
  9326. _box, { //"/jsmind/example/demo.html"
  9327. "id": "minds" + cid + stage + task + tool,
  9328. "style": {
  9329. "width": "90%",
  9330. "height": "90%",
  9331. "overflow": 'hidden'
  9332. },
  9333. "onresize": function () { }
  9334. }, {
  9335. closecallback: function () { }
  9336. }, {
  9337. "style": {
  9338. "height": "36px"
  9339. }
  9340. }).form; //创建窗体
  9341. _taskbar = {
  9342. "id": str + _formdiv.id,
  9343. "style": {
  9344. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9345. },
  9346. "name": "思维导图",
  9347. "forms": _formdiv,
  9348. "click": function () {
  9349. U.MD.D.I.openApplication(str, obj, info);
  9350. }
  9351. }
  9352. break;
  9353. case "doc":
  9354. aTool = 6;
  9355. _iframe = $$("iframe", {
  9356. "frameborder": "no",
  9357. "border": "0",
  9358. "scrolling ": "no",
  9359. "style": {
  9360. "cssText": "border:0;width:100%;height:100%"
  9361. },
  9362. "src": "/Office/Word/WordEditArea.htm"
  9363. })
  9364. _box.appendChild(_iframe);
  9365. _box.appendChild(_jie);
  9366. _formdiv = new U.UF.UI.form(
  9367. "协同文档",
  9368. _box, {
  9369. "id": "docs" + cid + stage + task + tool,
  9370. "style": {
  9371. "width": "90%",
  9372. "height": "90%",
  9373. "overflow": 'hidden'
  9374. },
  9375. "onresize": function () { }
  9376. }, {
  9377. closecallback: function () { }
  9378. }, {
  9379. "style": {
  9380. "height": "36px"
  9381. }
  9382. }).form; //创建窗体
  9383. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9384. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9385. })
  9386. _taskbar = {
  9387. "id": str + _formdiv.id,
  9388. "style": {
  9389. "backgroundImage": "url(/img/icon/doc.png)"
  9390. },
  9391. "name": "协同文档",
  9392. "forms": _formdiv,
  9393. "click": function () {
  9394. U.MD.D.I.openApplication(str, obj, info);
  9395. }
  9396. }
  9397. break;
  9398. }
  9399. const script1 = document.createElement("script");
  9400. script1.type = "text/javascript";
  9401. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9402. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9403. const script2 = document.createElement("script");
  9404. script2.type = "text/javascript";
  9405. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9406. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9407. const script3 = document.createElement("script");
  9408. script3.type = "text/javascript";
  9409. script3.charset = "UTF-8";
  9410. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9411. const script4 = document.createElement("script");
  9412. script4.type = "text/javascript";
  9413. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9414. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9415. if (_iframe) {
  9416. if (str == 'doc') {
  9417. _iframe = _formdiv.querySelector('iframe')
  9418. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9419. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9420. _iframe.contentWindow.document.body.appendChild(script1);
  9421. _iframe.contentWindow.document.body.appendChild(script2);
  9422. // _iframe.contentWindow.document.body.appendChild(script3);
  9423. _iframe.contentWindow.document.body.appendChild(script4);
  9424. })
  9425. if (onloadListener) {
  9426. _iframe.contentDocument.location.reload()
  9427. } else {
  9428. _iframe.contentDocument.location.reload()
  9429. }
  9430. } else if (str == 'mind') {
  9431. _iframe = _formdiv.querySelector('iframe')
  9432. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9433. _iframe.contentWindow.document.body.appendChild(script1);
  9434. _iframe.contentWindow.document.body.appendChild(script2);
  9435. _iframe.contentWindow.document.body.appendChild(script4);
  9436. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9437. })
  9438. if (onloadListener) {
  9439. _iframe.contentDocument.location.reload()
  9440. } else {
  9441. _iframe.contentDocument.location.reload()
  9442. }
  9443. } else {
  9444. _iframe.onload = () => {
  9445. _iframe.contentWindow.document.body.appendChild(script1);
  9446. _iframe.contentWindow.document.body.appendChild(script2);
  9447. // _iframe.contentWindow.document.body.appendChild(script3);
  9448. _iframe.contentWindow.document.body.appendChild(script4);
  9449. };
  9450. }
  9451. _jie.onclick = async () => {
  9452. let text = ''
  9453. if (aTool == 6) {
  9454. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9455. } else if (aTool == 3) {
  9456. text = await U.MD.D.I.getEditorContent(_iframe);
  9457. }
  9458. _loading.style.display = 'flex'
  9459. console.log(_loading);
  9460. var _ajs = _iframe.contentWindow.document.createElement("script");
  9461. _ajs.type = "text/javascript";
  9462. _ajs.innerHTML =
  9463. // 'console.log(' + _loading + ');\n' +
  9464. 'var _js = document.createElement("script");\n' +
  9465. '_js.type="text/javascript";\n' +
  9466. '_js.charset="UTF-8";\n' +
  9467. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9468. "_js.onload = function(){\n" +
  9469. ' var a = document.getElementsByTagName("img")\n' +
  9470. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9471. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9472. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9473. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9474. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9475. "beforeUpload_shishi(file," +
  9476. "'" +
  9477. _userid +
  9478. "'" +
  9479. ", " +
  9480. "'" +
  9481. _cid +
  9482. "'" +
  9483. ", " +
  9484. "'" +
  9485. _stage +
  9486. "'" +
  9487. ", " +
  9488. "'" +
  9489. _task +
  9490. "'" +
  9491. ", " +
  9492. "'" +
  9493. _tool +
  9494. "'" +
  9495. ", " +
  9496. "'" +
  9497. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9498. "'" +
  9499. ", " +
  9500. "'" +
  9501. aTool +
  9502. "'" +
  9503. ", " +
  9504. "`" +
  9505. text +
  9506. "`" +
  9507. ")\n" +
  9508. " });\n" +
  9509. "}\n" +
  9510. "document.head.appendChild(_js);\n";
  9511. _iframe.contentWindow.document.head.appendChild(_ajs);
  9512. }
  9513. }
  9514. //U.MD.D.I.openClick(str);
  9515. //如果有任务栏信息
  9516. // if (_taskbar) {
  9517. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9518. // }
  9519. }
  9520. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9521. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9522. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9523. _userinfo = US.userInfo, //登录用户信息
  9524. _userid = US.userInfo.userid //登录用户id
  9525. let _iframe;
  9526. let _cid = cid,
  9527. _stage = stage,
  9528. _task = task,
  9529. _tool = tool;
  9530. var _jie = $$("div", {
  9531. "style": {
  9532. "position": "absolute",
  9533. "bottom": "50px",
  9534. "right": "50px",
  9535. "zIndex": "9999",
  9536. "backgroundColor": "#2268bc",
  9537. "color": "#fff",
  9538. "padding": "12px 20px",
  9539. "cursor": "pointer",
  9540. "borderRadius": "4px",
  9541. },
  9542. "innerHTML": "上传模板"
  9543. })
  9544. let aTool = ''
  9545. let _loading = document.createElement('div')
  9546. _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;"
  9547. // _loading.id = "";
  9548. let _lchild = document.createElement('div')
  9549. let _limg = document.createElement('img')
  9550. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9551. _limg.style = "width: 26px;margin-right: 10px;"
  9552. _lchild.appendChild(_limg)
  9553. let _lspan = document.createElement('span')
  9554. _lspan.innerHTML = "上传中..."
  9555. _lchild.appendChild(_lspan)
  9556. _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%);"
  9557. _loading.appendChild(_lchild)
  9558. var _box = $$('div', {
  9559. "style": {
  9560. "position": "relative",
  9561. "width": "100%",
  9562. "height": "100%",
  9563. },
  9564. })
  9565. _box.appendChild(_loading)
  9566. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9567. switch (str) {
  9568. case "whiteboard":
  9569. aTool = 1;
  9570. _iframe = $$("iframe", {
  9571. "frameborder": "no",
  9572. "border": "0",
  9573. "scrolling ": "no",
  9574. "style": {
  9575. "cssText": "border:0;width:100%;height:100%"
  9576. },
  9577. "src": "https://beta.iwb.cocorobo.cn/"
  9578. })
  9579. _box.appendChild(_iframe);
  9580. _box.appendChild(_jie);
  9581. _formdiv = new U.UF.UI.form(
  9582. "电子白板",
  9583. _box, {
  9584. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9585. "style": {
  9586. "width": "90%",
  9587. "height": "90%",
  9588. "overflow": 'hidden'
  9589. },
  9590. "onresize": function () { }
  9591. }, {
  9592. closecallback: function () { }
  9593. }, {
  9594. "style": {
  9595. "height": "36px"
  9596. }
  9597. }).form; //创建窗体
  9598. _taskbar = {
  9599. "id": str + _formdiv.id,
  9600. "style": {
  9601. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9602. },
  9603. "name": "电子白板",
  9604. "forms": _formdiv,
  9605. "click": function () {
  9606. U.MD.D.I.openApplication(str, obj, info);
  9607. }
  9608. }
  9609. break;
  9610. case "mind":
  9611. aTool = 3;
  9612. _iframe = $$("iframe", {
  9613. "frameborder": "no",
  9614. "border": "0",
  9615. "scrolling ": "no",
  9616. "style": {
  9617. "cssText": "border:0;width:100%;height:100%"
  9618. },
  9619. "src": "/kityminder-editor/dist/index.html"
  9620. });
  9621. _box.appendChild(_iframe);
  9622. _box.appendChild(_jie);
  9623. _formdiv = new U.UF.UI.form(
  9624. "思维导图",
  9625. _box, { //"/jsmind/example/demo.html"
  9626. "id": "minds_Yu" + cid + stage + task + tool,
  9627. "style": {
  9628. "width": "90%",
  9629. "height": "90%",
  9630. "overflow": 'hidden'
  9631. },
  9632. "onresize": function () { }
  9633. }, {
  9634. closecallback: function () { }
  9635. }, {
  9636. "style": {
  9637. "height": "36px"
  9638. }
  9639. }).form; //创建窗体
  9640. _taskbar = {
  9641. "id": str + _formdiv.id,
  9642. "style": {
  9643. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9644. },
  9645. "name": "思维导图",
  9646. "forms": _formdiv,
  9647. "click": function () {
  9648. U.MD.D.I.openApplication(str, obj, info);
  9649. }
  9650. }
  9651. break;
  9652. case "doc":
  9653. aTool = 6;
  9654. _iframe = $$("iframe", {
  9655. "frameborder": "no",
  9656. "border": "0",
  9657. "scrolling ": "no",
  9658. "style": {
  9659. "cssText": "border:0;width:100%;height:100%"
  9660. },
  9661. "src": "/Office/Word/WordEditArea.htm"
  9662. })
  9663. _box.appendChild(_iframe);
  9664. _box.appendChild(_jie);
  9665. _formdiv = new U.UF.UI.form(
  9666. "协同文档",
  9667. _box, {
  9668. "id": "docs_Yu" + cid + stage + task + tool,
  9669. "style": {
  9670. "width": "90%",
  9671. "height": "90%",
  9672. "overflow": 'hidden'
  9673. },
  9674. "onresize": function () { }
  9675. }, {
  9676. closecallback: function () { }
  9677. }, {
  9678. "style": {
  9679. "height": "36px"
  9680. }
  9681. }).form; //创建窗体
  9682. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9683. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9684. })
  9685. _taskbar = {
  9686. "id": str + _formdiv.id,
  9687. "style": {
  9688. "backgroundImage": "url(/img/icon/doc.png)"
  9689. },
  9690. "name": "协同文档",
  9691. "forms": _formdiv,
  9692. "click": function () {
  9693. U.MD.D.I.openApplication(str, obj, info);
  9694. }
  9695. }
  9696. break;
  9697. case "CocoPi":
  9698. aTool = 57;
  9699. _iframe = $$("iframe", {
  9700. "allowpaymentrequest": "allowpaymentrequest",
  9701. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9702. "webkitallowfullscreen": "",
  9703. "mozallowfullscreen": "",
  9704. "frameborder": "no",
  9705. "border": "0",
  9706. "scrolling ": "no",
  9707. "style": {
  9708. "cssText": "border:0;width:100%;height:100%"
  9709. },
  9710. "src": "https://pi.cocorobo.cn/"
  9711. })
  9712. _box.appendChild(_iframe);
  9713. _box.appendChild(_jie);
  9714. _formdiv = new U.UF.UI.form(
  9715. "CocoPi",
  9716. _box, {
  9717. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9718. "style": {
  9719. "width": "90%",
  9720. "height": "90%",
  9721. "overflow": 'hidden'
  9722. },
  9723. "onresize": function () { }
  9724. }, {
  9725. closecallback: function () { }
  9726. }, {
  9727. "style": {
  9728. "height": "36px"
  9729. }
  9730. }).form; //创建窗体
  9731. _taskbar = {
  9732. "id": str + _formdiv.id,
  9733. "style": {
  9734. "backgroundImage": "url(/img/icon/cocopi.png)"
  9735. },
  9736. "name": "CocoPi",
  9737. "forms": _formdiv,
  9738. "click": function () {
  9739. U.MD.D.I.openApplication(str, obj, info);
  9740. }
  9741. }
  9742. break;
  9743. }
  9744. if (_iframe) {
  9745. if (str == 'doc') {
  9746. _iframe = _formdiv.querySelector('iframe')
  9747. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9748. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9749. })
  9750. if (onloadListener) {
  9751. _iframe.contentDocument.location.reload()
  9752. } else {
  9753. _iframe.contentDocument.location.reload()
  9754. }
  9755. } else if (str == 'mind') {
  9756. _iframe = _formdiv.querySelector('iframe')
  9757. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9758. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9759. })
  9760. if (onloadListener) {
  9761. _iframe.contentDocument.location.reload()
  9762. } else {
  9763. _iframe.contentDocument.location.reload()
  9764. }
  9765. } else if (str == 'whiteboard') {
  9766. _iframe = _formdiv.querySelector('iframe')
  9767. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9768. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9769. })
  9770. // if (onloadListener) {
  9771. // try {
  9772. // _iframe.src += "?cocorobo="+new Date().getTime()
  9773. // _iframe.contentWindow.document.location.reload()
  9774. // } catch (error) {
  9775. // }
  9776. // } else {
  9777. // _iframe.contentDocument.location.reload()
  9778. // }
  9779. } else if (str == 'CocoPi') {
  9780. _iframe = _formdiv.querySelector('iframe')
  9781. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9782. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9783. })
  9784. if (onloadListener) {
  9785. _iframe.contentDocument.location.reload()
  9786. } else {
  9787. _iframe.contentDocument.location.reload()
  9788. }
  9789. } else {
  9790. _iframe.onload = () => { };
  9791. }
  9792. _jie.onclick = async () => {
  9793. let text = ''
  9794. let type = '2'
  9795. if (aTool == 1) {
  9796. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9797. type = '3'
  9798. } else if (aTool == 6) {
  9799. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9800. type = '1'
  9801. } else if (aTool == 3) {
  9802. text = await U.MD.D.I.getEditorContent(_iframe);
  9803. type = '2'
  9804. } else if (aTool == 57) {
  9805. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9806. type = '4'
  9807. }
  9808. _loading.style.display = 'flex'
  9809. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9810. }
  9811. }
  9812. //U.MD.D.I.openClick(str);
  9813. //如果有任务栏信息
  9814. // if (_taskbar) {
  9815. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9816. // }
  9817. }
  9818. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9819. var xmlhttp;
  9820. var Mac, Sn, DeviceId
  9821. if (window.XMLHttpRequest) {
  9822. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9823. xmlhttp = new XMLHttpRequest();
  9824. } else {
  9825. // IE6, IE5 浏览器执行代码
  9826. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9827. }
  9828. xmlhttp.onreadystatechange = function () {
  9829. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9830. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9831. // resolve(res.value[0][0].text);
  9832. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9833. }
  9834. }
  9835. }
  9836. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9837. xmlhttp.send();
  9838. }
  9839. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9840. var xmlhttp;
  9841. var Mac, Sn, DeviceId
  9842. if (window.XMLHttpRequest) {
  9843. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9844. xmlhttp = new XMLHttpRequest();
  9845. } else {
  9846. // IE6, IE5 浏览器执行代码
  9847. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9848. }
  9849. xmlhttp.onreadystatechange = function () {
  9850. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9851. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9852. // resolve(res.value[0][0].text);
  9853. if (type == '2') {
  9854. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9855. } else if (type == '3') {
  9856. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9857. } else if (type == '4') {
  9858. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9859. }
  9860. } else {
  9861. if (type == '2') {
  9862. iframe.contentWindow.editor.minder.importData('json', '')
  9863. } else if (type == '3') {
  9864. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9865. } else if (type == '4') {
  9866. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9867. }
  9868. }
  9869. }
  9870. }
  9871. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9872. xmlhttp.send();
  9873. }
  9874. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9875. var xmlhttp;
  9876. var Mac, Sn, DeviceId
  9877. if (window.XMLHttpRequest) {
  9878. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9879. xmlhttp = new XMLHttpRequest();
  9880. } else {
  9881. // IE6, IE5 浏览器执行代码
  9882. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9883. }
  9884. xmlhttp.onreadystatechange = function () {
  9885. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9886. if (xmlhttp.response) {
  9887. // resolve(res.value[0][0].text);
  9888. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9889. // $(fileInput).val('');
  9890. // });
  9891. span.innerHTML = '上传成功'
  9892. setTimeout(() => {
  9893. loading.style.display = 'none'
  9894. }, 1000);
  9895. }
  9896. }
  9897. }
  9898. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9899. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9900. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9901. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9902. // 设置请求头,表示请求体的编码格式
  9903. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9904. // 设置请求体,使用url-encoded格式的数据
  9905. }
  9906. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9907. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9908. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9909. _userinfo = US.userInfo, //登录用户信息
  9910. _userid = US.userInfo.userid //登录用户id
  9911. let _iframe;
  9912. let _cid = cid,
  9913. _stage = stage,
  9914. _task = task,
  9915. _tool = tool;
  9916. var _jie = $$("div", {
  9917. "style": {
  9918. "position": "absolute",
  9919. "bottom": "50px",
  9920. "right": "50px",
  9921. "zIndex": "9999",
  9922. "backgroundColor": "#2268bc",
  9923. "color": "#fff",
  9924. "padding": "12px 20px",
  9925. "cursor": "pointer",
  9926. "borderRadius": "4px",
  9927. },
  9928. "innerHTML": "提交作业"
  9929. })
  9930. let aTool = ''
  9931. let _loading = document.createElement('div')
  9932. _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;"
  9933. // _loading.id = "";
  9934. let _lchild = document.createElement('div')
  9935. let _limg = document.createElement('img')
  9936. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9937. _limg.style = "width: 26px;margin-right: 10px;"
  9938. _lchild.appendChild(_limg)
  9939. let _lspan = document.createElement('span')
  9940. _lspan.innerHTML = "上传中..."
  9941. _lchild.appendChild(_lspan)
  9942. _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%);"
  9943. _loading.appendChild(_lchild)
  9944. var _box = $$('div', {
  9945. "style": {
  9946. "position": "relative",
  9947. "width": "100%",
  9948. "height": "100%",
  9949. },
  9950. })
  9951. _box.appendChild(_loading)
  9952. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9953. switch (str) {
  9954. case "CocoPi":
  9955. aTool = 57;
  9956. _iframe = $$("iframe", {
  9957. "allowpaymentrequest": "allowpaymentrequest",
  9958. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9959. "webkitallowfullscreen": "",
  9960. "mozallowfullscreen": "",
  9961. "frameborder": "no",
  9962. "border": "0",
  9963. "scrolling ": "no",
  9964. "style": {
  9965. "cssText": "border:0;width:100%;height:100%"
  9966. },
  9967. "src": "https://pi.cocorobo.cn/"
  9968. })
  9969. _box.appendChild(_iframe);
  9970. _box.appendChild(_jie);
  9971. _formdiv = new U.UF.UI.form(
  9972. "CocoPi",
  9973. _box, {
  9974. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9975. "style": {
  9976. "width": "90%",
  9977. "height": "90%",
  9978. "overflow": 'hidden'
  9979. },
  9980. "onresize": function () { }
  9981. }, {
  9982. closecallback: function () { }
  9983. }, {
  9984. "style": {
  9985. "height": "36px"
  9986. }
  9987. }).form; //创建窗体
  9988. _taskbar = {
  9989. "id": str + _formdiv.id,
  9990. "style": {
  9991. "backgroundImage": "url(/img/icon/cocopi.png)"
  9992. },
  9993. "name": "CocoPi",
  9994. "forms": _formdiv,
  9995. "click": function () {
  9996. U.MD.D.I.openApplication(str, obj, info);
  9997. }
  9998. }
  9999. break;
  10000. }
  10001. if (_iframe) {
  10002. if (str == 'CocoPi') {
  10003. _iframe = _formdiv.querySelector('iframe')
  10004. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10005. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10006. })
  10007. if (onloadListener) {
  10008. _iframe.contentDocument.location.reload()
  10009. } else {
  10010. _iframe.contentDocument.location.reload()
  10011. }
  10012. }
  10013. _jie.onclick = async () => {
  10014. let text = ''
  10015. if (aTool == 57) {
  10016. text = _iframe.contentWindow.getLoadXmlStr()
  10017. }
  10018. _loading.style.display = 'flex'
  10019. console.log(_loading);
  10020. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10021. _loading.style.display = 'none'
  10022. let _div = document.createElement('div')
  10023. _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;"
  10024. let _inner = document.createElement('div')
  10025. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10026. _inner.innerHTML = "上传成功"
  10027. _div.appendChild(_inner)
  10028. _iframe.contentWindow.window.document.body.appendChild(_div)
  10029. _div.onclick = () => {
  10030. _iframe.contentWindow.window.document.body.removeChild(_div)
  10031. }
  10032. setTimeout(() => {
  10033. _iframe.contentWindow.window.document.body.removeChild(_div)
  10034. }, 1000);
  10035. }, [], { "type": "POST", "withCredentials": true });
  10036. }
  10037. }
  10038. }
  10039. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10040. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10041. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10042. _userid = student.userid, //登录用户id
  10043. _username = student.student //用户名字
  10044. let _iframe;
  10045. let _cid = cid,
  10046. _stage = stage,
  10047. _task = task,
  10048. _tool = tool;
  10049. var _jie = $$("div", {
  10050. "style": {
  10051. "position": "absolute",
  10052. "bottom": "50px",
  10053. "right": "50px",
  10054. "zIndex": "9999",
  10055. "backgroundColor": "#2268bc",
  10056. "color": "#fff",
  10057. "padding": "12px 20px",
  10058. "cursor": "pointer",
  10059. "borderRadius": "4px",
  10060. },
  10061. "innerHTML": "提交作业"
  10062. })
  10063. let aTool = ''
  10064. let _loading = document.createElement('div')
  10065. _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;"
  10066. // _loading.id = "";
  10067. let _lchild = document.createElement('div')
  10068. let _limg = document.createElement('img')
  10069. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10070. _limg.style = "width: 26px;margin-right: 10px;"
  10071. _lchild.appendChild(_limg)
  10072. let _lspan = document.createElement('span')
  10073. _lspan.innerHTML = "上传中..."
  10074. _lchild.appendChild(_lspan)
  10075. _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%);"
  10076. _loading.appendChild(_lchild)
  10077. var _box = $$('div', {
  10078. "style": {
  10079. "position": "relative",
  10080. "width": "100%",
  10081. "height": "100%",
  10082. },
  10083. })
  10084. _box.appendChild(_loading)
  10085. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10086. switch (str) {
  10087. case "CocoPi":
  10088. aTool = 57;
  10089. _iframe = $$("iframe", {
  10090. "allowpaymentrequest": "allowpaymentrequest",
  10091. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10092. "webkitallowfullscreen": "",
  10093. "mozallowfullscreen": "",
  10094. "frameborder": "no",
  10095. "border": "0",
  10096. "scrolling ": "no",
  10097. "style": {
  10098. "cssText": "border:0;width:100%;height:100%"
  10099. },
  10100. "src": "https://pi.cocorobo.cn/"
  10101. })
  10102. _box.appendChild(_iframe);
  10103. _box.appendChild(_jie);
  10104. _formdiv = new U.UF.UI.form(
  10105. "CocoPi-" + _username,
  10106. _box, {
  10107. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10108. "style": {
  10109. "width": "90%",
  10110. "height": "90%",
  10111. "overflow": 'hidden'
  10112. },
  10113. "onresize": function () { }
  10114. }, {
  10115. closecallback: function () { }
  10116. }, {
  10117. "style": {
  10118. "height": "36px"
  10119. }
  10120. }).form; //创建窗体
  10121. _taskbar = {
  10122. "id": str + _formdiv.id,
  10123. "style": {
  10124. "backgroundImage": "url(/img/icon/cocopi.png)"
  10125. },
  10126. "name": "CocoPi",
  10127. "forms": _formdiv,
  10128. "click": function () {
  10129. U.MD.D.I.openApplication(str, obj, info);
  10130. }
  10131. }
  10132. break;
  10133. }
  10134. if (_iframe) {
  10135. if (str == 'CocoPi') {
  10136. _iframe = _formdiv.querySelector('iframe')
  10137. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10138. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10139. })
  10140. if (onloadListener) {
  10141. _iframe.contentDocument.location.reload()
  10142. } else {
  10143. _iframe.contentDocument.location.reload()
  10144. }
  10145. }
  10146. _jie.onclick = async () => {
  10147. let text = ''
  10148. if (aTool == 57) {
  10149. text = _iframe.contentWindow.getLoadXmlStr()
  10150. }
  10151. _loading.style.display = 'flex'
  10152. console.log(_loading);
  10153. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10154. _loading.style.display = 'none'
  10155. let _div = document.createElement('div')
  10156. _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;"
  10157. let _inner = document.createElement('div')
  10158. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10159. _inner.innerHTML = "上传成功"
  10160. _div.appendChild(_inner)
  10161. _iframe.contentWindow.window.document.body.appendChild(_div)
  10162. _div.onclick = () => {
  10163. _iframe.contentWindow.window.document.body.removeChild(_div)
  10164. }
  10165. setTimeout(() => {
  10166. _iframe.contentWindow.window.document.body.removeChild(_div)
  10167. }, 1000);
  10168. }, [], { "type": "POST", "withCredentials": true });
  10169. }
  10170. }
  10171. }
  10172. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10173. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10174. if (res.value[0].length > 0) {
  10175. if (atool == 57) {
  10176. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10177. }
  10178. } else {
  10179. if (atool == 57) {
  10180. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10181. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10182. }
  10183. }
  10184. }, [], { "type": "POST", "withCredentials": true });
  10185. }