DeskTop.js 679 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. ];
  1561. //SPROUT Lab
  1562. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1563. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1567. ];
  1568. //010204
  1569. U.MD.D.I.x010204TeacherDeskIcon = [
  1570. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1571. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1572. ];
  1573. //010204
  1574. U.MD.D.I.x010204StudentDeskIcon = [
  1575. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1576. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1577. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1579. ];
  1580. //trail
  1581. U.MD.D.I.trailTeacherDeskIcon = [
  1582. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1583. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1584. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1585. ];
  1586. //trail
  1587. U.MD.D.I.trailStudentDeskIcon = [
  1588. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1589. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1590. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1591. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1592. ];
  1593. //010504
  1594. U.MD.D.I.x010504TeacherDeskIcon = [
  1595. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1596. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1598. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1599. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1601. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1603. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1604. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1606. ];
  1607. //010504
  1608. U.MD.D.I.x010504StudentDeskIcon = [
  1609. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1610. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1611. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1612. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1613. ];
  1614. //SCNUET
  1615. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1616. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1617. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1618. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1619. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1620. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1621. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1622. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1625. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1626. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1627. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1628. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1629. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1630. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1632. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1633. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1634. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1635. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1636. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1637. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1638. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1639. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1640. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1641. ];
  1642. //SCNUET
  1643. U.MD.D.I.SCNUETAdminDeskIcon = [
  1644. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1645. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1649. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1650. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1651. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1652. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1653. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1654. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1655. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1656. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1657. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1658. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1661. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1662. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1663. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1664. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1665. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1666. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1667. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1668. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1669. ];
  1670. //SCNUET
  1671. U.MD.D.I.SCNUETStudentDeskIcon = [
  1672. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1673. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1676. ];
  1677. //x020201
  1678. U.MD.D.I.x020201TeacherDeskIcon = [
  1679. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1680. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1681. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1682. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1683. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1684. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1685. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1686. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1689. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1690. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1692. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1693. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1694. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1695. ];
  1696. //x020201
  1697. U.MD.D.I.x020201AdminDeskIcon = [
  1698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1702. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1703. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1704. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1705. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1706. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1707. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1708. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1709. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1710. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1711. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1712. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1713. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1714. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1715. ];
  1716. //020201
  1717. U.MD.D.I.x020201StudentDeskIcon = [
  1718. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1719. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1722. ];
  1723. //010611
  1724. U.MD.D.I.x010611TeacherDeskIcon = [
  1725. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1726. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1727. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1728. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1732. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1733. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1734. ];
  1735. //010611
  1736. U.MD.D.I.x010611StudentDeskIcon = [
  1737. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1741. ];
  1742. //tianyuan
  1743. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1750. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1753. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1754. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1755. ];
  1756. //010611
  1757. U.MD.D.I.tianyuanStudentDeskIcon = [
  1758. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1759. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1760. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1761. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1762. ];
  1763. //320101
  1764. U.MD.D.I.x320101TeacherDeskIcon = [
  1765. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1766. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1767. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1768. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1769. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1770. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1771. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1772. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1773. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1774. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1775. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1776. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1777. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1778. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1779. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1780. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1781. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1782. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1783. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1784. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1785. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1786. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1787. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1788. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1789. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1790. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1791. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1792. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1793. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1794. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1795. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1796. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1797. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1798. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1800. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1803. ];
  1804. //320101
  1805. U.MD.D.I.x320101StudentDeskIcon = [
  1806. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1808. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1809. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1810. ];
  1811. //szsy
  1812. U.MD.D.I.szsyTeacherDeskIcon = [
  1813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1819. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1820. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1821. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1822. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1823. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1825. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1826. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1827. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1828. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1829. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1830. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1831. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1832. ];
  1833. //szsy
  1834. U.MD.D.I.szsyStudentDeskIcon = [
  1835. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1836. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1837. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1838. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1839. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1840. ];
  1841. //#region 桌面初始化a
  1842. /**
  1843. * 初始化桌面的起始函数
  1844. *
  1845. */
  1846. U.MD.D.I.init = function () {
  1847. if ($("#U_MD_D_K")[0]) {
  1848. //初始化桌面图标
  1849. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1850. // var clickUrl = ':12588/requestIp.php';
  1851. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1852. // U.MD.D.I.Ip = data;
  1853. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1854. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1855. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1856. // })
  1857. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1858. // })
  1859. }
  1860. }
  1861. /**
  1862. * 模式切换
  1863. *
  1864. */
  1865. U.MD.D.I.ModeCheck = function (type) {
  1866. if (US.Config.type == type) {
  1867. return
  1868. }
  1869. US.Config.type = type
  1870. $('.U_PBL_Check .active')[0].className = ''
  1871. if (type == 1) {
  1872. $('.U_PBL_Check div')[0].className = 'active'
  1873. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1874. } else {
  1875. $('.U_PBL_Check div')[1].className = 'active'
  1876. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1877. }
  1878. //初始化桌面图标
  1879. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1880. if (type == 2) {
  1881. U.MD.D.I.openApplication("project")
  1882. }
  1883. }
  1884. /**
  1885. * 隐藏任务栏
  1886. *
  1887. * @param {element} 桌面元素
  1888. */
  1889. U.MD.D.I.hiddenTaskbar = function (el) {
  1890. //任务栏位置变小
  1891. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1892. //桌面的位置变大
  1893. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1894. }
  1895. /**
  1896. * 隐藏任务栏
  1897. *
  1898. * @param {element} 桌面元素
  1899. */
  1900. U.MD.D.I.hiddenTaskbarout = function (el) {
  1901. //任务栏位置变小
  1902. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1903. //任务栏位置变化
  1904. U.selectEl(el).css({ "bottom": "-60px" });
  1905. //桌面的位置变大
  1906. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1907. }
  1908. }
  1909. /**
  1910. * 初始化打印桌面图标
  1911. *
  1912. * @param {element} 桌面元素
  1913. */
  1914. U.MD.D.I.initDesktopIcons = function (el, type) {
  1915. var i, //用于循环
  1916. _content, //桌面图标元素
  1917. _iconcontent, //桌面图标元素
  1918. _frag = $$("frag"), //定义一个碎片元素
  1919. _type = US.userInfo.type,
  1920. _org = US.userInfo.org,
  1921. _oid = US.userInfo.organizeid,
  1922. _role = US.userInfo.role,
  1923. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1924. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1925. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1926. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1927. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1928. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1929. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1930. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1931. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1932. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1933. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1934. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1935. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1936. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1937. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1938. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1939. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1940. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1941. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1942. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1943. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1944. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1945. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1946. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1947. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1948. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1949. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1950. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1951. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1952. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1953. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1954. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1955. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1956. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1957. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1958. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1959. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1960. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1961. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1962. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1963. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1964. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1965. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1966. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1967. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1968. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1969. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1970. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1971. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1972. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1973. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1974. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1975. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1976. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1977. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1978. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1979. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1980. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1981. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1982. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1983. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1984. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1985. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1986. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1987. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1988. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1989. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1990. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1991. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1992. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1993. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1994. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1995. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1996. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1997. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1998. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1999. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2000. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2001. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2002. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2003. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2004. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2005. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2006. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2007. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2008. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2009. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2010. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2011. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2012. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2013. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2014. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2015. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2016. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2017. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2018. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2019. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2020. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2021. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2022. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2023. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2024. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2025. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2026. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2027. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2028. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2029. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2030. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2031. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2032. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2033. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2034. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2035. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2036. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2037. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2038. 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','2c5d4971-ed9e-11ef-b508-005056924926'];
  2039. 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','b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc','c8266c04-59e3-44de-bcf2-8f906e66e636'];
  2040. //清楚桌面图标
  2041. el.innerHTML = "";
  2042. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2043. _teacherDesktopIconInfo.push(
  2044. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2045. { "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)" } },
  2046. )
  2047. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2048. }
  2049. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  2050. _teacherDesktopIconInfo.push(
  2051. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2052. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2053. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2054. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2055. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2056. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2057. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2059. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2060. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2061. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2062. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2063. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2064. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2065. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2066. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2067. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2068. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2069. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2070. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2071. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2072. )
  2073. }
  2074. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2075. _teacherDesktopIconInfo.push(
  2076. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2077. )
  2078. }
  2079. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2080. // _teacherDesktopIconInfo.push(
  2081. // )
  2082. // }
  2083. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2084. _teacherDesktopIconInfo.push(
  2085. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2086. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2087. )
  2088. }
  2089. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2090. _teacherDesktopIconInfo.push(
  2091. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2092. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2093. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2094. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2095. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2096. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2097. )
  2098. _studentDesktopIconInfo.push(
  2099. )
  2100. }
  2101. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2102. _teacherDesktopIconInfo.push(
  2103. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2104. )
  2105. _studentDesktopIconInfo.push(
  2106. )
  2107. }
  2108. //010606 组织
  2109. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2110. _teacherDesktopIconInfo.push(
  2111. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2112. )
  2113. _studentDesktopIconInfo.push(
  2114. )
  2115. }
  2116. //麒麟二中 和 民新小学
  2117. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2118. _teacherDesktopIconInfo.push(
  2119. )
  2120. }
  2121. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2122. _teacherDesktopIconInfo.push(
  2123. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2124. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2125. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2126. )
  2127. }
  2128. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2129. _hkTeacherDeskIconInfo.push(
  2130. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2131. )
  2132. }
  2133. //北师大附中(010601)
  2134. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2135. // _teacherDesktopIconInfo.push(
  2136. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2137. // )
  2138. // _studentDesktopIconInfo.push(
  2139. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2140. // )
  2141. // }
  2142. //樂善堂余近卿中學
  2143. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2144. _teacherDesktopIconInfo.push(
  2145. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2146. )
  2147. }
  2148. // Education Artificial Intelligence
  2149. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2150. _teacherDesktopIconInfo.push(
  2151. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2152. )
  2153. }
  2154. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2155. _teacherDesktopIconInfo.push(
  2156. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2157. )
  2158. }
  2159. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2160. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2161. _teacherDesktopIconInfo.push(
  2162. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2163. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2164. )
  2165. }
  2166. //麒麟二中
  2167. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2168. _studentDesktopIconInfo.push(
  2169. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2170. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2171. )
  2172. }
  2173. //万科双语
  2174. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2175. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2176. if (el.Name == '项目管理') {
  2177. el.Name = 'PBL项目'
  2178. }
  2179. return el
  2180. })
  2181. _studentDesktopIconInfo3.push(
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. )
  2184. }
  2185. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2186. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2187. return el.Name != '魔盒识字' && el.Name != '24点'
  2188. })
  2189. }
  2190. 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) {
  2191. _studentDesktopIconInfo.push(
  2192. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2193. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2194. )
  2195. }
  2196. //循环创建桌面图标
  2197. if (type == 1) {
  2198. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2199. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2200. _content = $$("div", {
  2201. className: "U_MD_D_KO",
  2202. "onmousedown": U.UF.C.closure(function (obj) {
  2203. //防止拖动图标即打开了桌面应用
  2204. U.MD.D.click(this, obj);
  2205. }, [_studentDesktopIconInfo[i]]),
  2206. "onclick": U.UF.C.closure(function (obj) {
  2207. //防止拖动图标即打开了桌面应用
  2208. U.MD.D.click(this, obj);
  2209. }, [_studentDesktopIconInfo[i]])
  2210. }, _frag); //
  2211. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2212. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2213. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2214. }
  2215. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2216. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2217. _content = $$("div", {
  2218. className: "U_MD_D_KO",
  2219. "onmousedown": U.UF.C.closure(function (obj) {
  2220. //防止拖动图标即打开了桌面应用
  2221. U.MD.D.click(this, obj);
  2222. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2223. "onclick": U.UF.C.closure(function (obj) {
  2224. //防止拖动图标即打开了桌面应用
  2225. U.MD.D.click(this, obj);
  2226. }, [_hkZJLSStudentDeskIconInfo[i]])
  2227. }, _frag); //
  2228. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2229. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2230. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2231. } //
  2232. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2233. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2234. _content = $$("div", {
  2235. className: "U_MD_D_KO",
  2236. "onmousedown": U.UF.C.closure(function (obj) {
  2237. //防止拖动图标即打开了桌面应用
  2238. U.MD.D.click(this, obj);
  2239. }, [_ytyStudentDeskIconInfo[i]]),
  2240. "onclick": U.UF.C.closure(function (obj) {
  2241. //防止拖动图标即打开了桌面应用
  2242. U.MD.D.click(this, obj);
  2243. }, [_ytyStudentDeskIconInfo[i]])
  2244. }, _frag); //
  2245. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2246. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2247. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2248. } //
  2249. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2250. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2251. _content = $$("div", {
  2252. className: "U_MD_D_KO",
  2253. "onmousedown": U.UF.C.closure(function (obj) {
  2254. //防止拖动图标即打开了桌面应用
  2255. U.MD.D.click(this, obj);
  2256. }, [_jccssylStudentDeskIconInfo[i]]),
  2257. "onclick": U.UF.C.closure(function (obj) {
  2258. //防止拖动图标即打开了桌面应用
  2259. U.MD.D.click(this, obj);
  2260. }, [_jccssylStudentDeskIconInfo[i]])
  2261. }, _frag); //
  2262. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2263. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2264. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2265. }
  2266. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2267. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2268. _content = $$("div", {
  2269. className: "U_MD_D_KO",
  2270. "onmousedown": U.UF.C.closure(function (obj) {
  2271. //防止拖动图标即打开了桌面应用
  2272. U.MD.D.click(this, obj);
  2273. }, [_scnuaiStudentDeskIconInfo[i]]),
  2274. "onclick": U.UF.C.closure(function (obj) {
  2275. //防止拖动图标即打开了桌面应用
  2276. U.MD.D.click(this, obj);
  2277. }, [_scnuaiStudentDeskIconInfo[i]])
  2278. }, _frag); //
  2279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2282. }
  2283. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2284. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2285. _content = $$("div", {
  2286. className: "U_MD_D_KO",
  2287. "onmousedown": U.UF.C.closure(function (obj) {
  2288. //防止拖动图标即打开了桌面应用
  2289. U.MD.D.click(this, obj);
  2290. }, [_caleStudentDeskIconInfo[i]]),
  2291. "onclick": U.UF.C.closure(function (obj) {
  2292. //防止拖动图标即打开了桌面应用
  2293. U.MD.D.click(this, obj);
  2294. }, [_caleStudentDeskIconInfo[i]])
  2295. }, _frag); //
  2296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2299. }
  2300. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2301. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2302. _content = $$("div", {
  2303. className: "U_MD_D_KO",
  2304. "onmousedown": U.UF.C.closure(function (obj) {
  2305. //防止拖动图标即打开了桌面应用
  2306. U.MD.D.click(this, obj);
  2307. }, [_thuioeStudentDeskIconInfo[i]]),
  2308. "onclick": U.UF.C.closure(function (obj) {
  2309. //防止拖动图标即打开了桌面应用
  2310. U.MD.D.click(this, obj);
  2311. }, [_thuioeStudentDeskIconInfo[i]])
  2312. }, _frag); //
  2313. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2314. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2315. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2316. }
  2317. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2318. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2319. _content = $$("div", {
  2320. className: "U_MD_D_KO",
  2321. "onmousedown": U.UF.C.closure(function (obj) {
  2322. //防止拖动图标即打开了桌面应用
  2323. U.MD.D.click(this, obj);
  2324. }, [_tpcStudentDeskIconInfo[i]]),
  2325. "onclick": U.UF.C.closure(function (obj) {
  2326. //防止拖动图标即打开了桌面应用
  2327. U.MD.D.click(this, obj);
  2328. }, [_tpcStudentDeskIconInfo[i]])
  2329. }, _frag); //
  2330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2333. } //
  2334. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2335. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2336. _content = $$("div", {
  2337. className: "U_MD_D_KO",
  2338. "onmousedown": U.UF.C.closure(function (obj) {
  2339. //防止拖动图标即打开了桌面应用
  2340. U.MD.D.click(this, obj);
  2341. }, [_chjyjStudentDeskIconInfo[i]]),
  2342. "onclick": U.UF.C.closure(function (obj) {
  2343. //防止拖动图标即打开了桌面应用
  2344. U.MD.D.click(this, obj);
  2345. }, [_chjyjStudentDeskIconInfo[i]])
  2346. }, _frag); //
  2347. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2348. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2349. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2350. }
  2351. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2352. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2353. _content = $$("div", {
  2354. className: "U_MD_D_KO",
  2355. "onmousedown": U.UF.C.closure(function (obj) {
  2356. //防止拖动图标即打开了桌面应用
  2357. U.MD.D.click(this, obj);
  2358. }, [_szjkyStudentDeskIconInfo[i]]),
  2359. "onclick": U.UF.C.closure(function (obj) {
  2360. //防止拖动图标即打开了桌面应用
  2361. U.MD.D.click(this, obj);
  2362. }, [_szjkyStudentDeskIconInfo[i]])
  2363. }, _frag); //
  2364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2367. }
  2368. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2369. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2370. _content = $$("div", {
  2371. className: "U_MD_D_KO",
  2372. "onmousedown": U.UF.C.closure(function (obj) {
  2373. //防止拖动图标即打开了桌面应用
  2374. U.MD.D.click(this, obj);
  2375. }, [_x020201StudentDeskIconInfo[i]]),
  2376. "onclick": U.UF.C.closure(function (obj) {
  2377. //防止拖动图标即打开了桌面应用
  2378. U.MD.D.click(this, obj);
  2379. }, [_x020201StudentDeskIconInfo[i]])
  2380. }, _frag); //
  2381. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2382. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2383. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2384. }
  2385. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2386. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2387. _content = $$("div", {
  2388. className: "U_MD_D_KO",
  2389. "onmousedown": U.UF.C.closure(function (obj) {
  2390. //防止拖动图标即打开了桌面应用
  2391. U.MD.D.click(this, obj);
  2392. }, [_SCNUETStudentDeskIconInfo[i]]),
  2393. "onclick": U.UF.C.closure(function (obj) {
  2394. //防止拖动图标即打开了桌面应用
  2395. U.MD.D.click(this, obj);
  2396. }, [_SCNUETStudentDeskIconInfo[i]])
  2397. }, _frag); //
  2398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2401. }
  2402. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2403. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2404. _content = $$("div", {
  2405. className: "U_MD_D_KO",
  2406. "onmousedown": U.UF.C.closure(function (obj) {
  2407. //防止拖动图标即打开了桌面应用
  2408. U.MD.D.click(this, obj);
  2409. }, [_dseiStudentDeskIconInfo[i]]),
  2410. "onclick": U.UF.C.closure(function (obj) {
  2411. //防止拖动图标即打开了桌面应用
  2412. U.MD.D.click(this, obj);
  2413. }, [_dseiStudentDeskIconInfo[i]])
  2414. }, _frag); //
  2415. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2416. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2417. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2418. }
  2419. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2420. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2421. _content = $$("div", {
  2422. className: "U_MD_D_KO",
  2423. "onmousedown": U.UF.C.closure(function (obj) {
  2424. //防止拖动图标即打开了桌面应用
  2425. U.MD.D.click(this, obj);
  2426. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2427. "onclick": U.UF.C.closure(function (obj) {
  2428. //防止拖动图标即打开了桌面应用
  2429. U.MD.D.click(this, obj);
  2430. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2431. }, _frag); //
  2432. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2433. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2434. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2435. }
  2436. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2437. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2438. _content = $$("div", {
  2439. className: "U_MD_D_KO",
  2440. "onmousedown": U.UF.C.closure(function (obj) {
  2441. //防止拖动图标即打开了桌面应用
  2442. U.MD.D.click(this, obj);
  2443. }, [_nsfxStudentDeskIconInfo[i]]),
  2444. "onclick": U.UF.C.closure(function (obj) {
  2445. //防止拖动图标即打开了桌面应用
  2446. U.MD.D.click(this, obj);
  2447. }, [_nsfxStudentDeskIconInfo[i]])
  2448. }, _frag); //
  2449. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2450. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2451. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2452. }
  2453. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2454. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2455. _content = $$("div", {
  2456. className: "U_MD_D_KO",
  2457. "onmousedown": U.UF.C.closure(function (obj) {
  2458. //防止拖动图标即打开了桌面应用
  2459. U.MD.D.click(this, obj);
  2460. }, [_stiaStudentDeskIconInfo[i]]),
  2461. "onclick": U.UF.C.closure(function (obj) {
  2462. //防止拖动图标即打开了桌面应用
  2463. U.MD.D.click(this, obj);
  2464. }, [_stiaStudentDeskIconInfo[i]])
  2465. }, _frag); //
  2466. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2467. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2468. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2469. }
  2470. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2471. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_szdjgStudentDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_szdjgStudentDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2488. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2489. _content = $$("div", {
  2490. className: "U_MD_D_KO",
  2491. "onmousedown": U.UF.C.closure(function (obj) {
  2492. //防止拖动图标即打开了桌面应用
  2493. U.MD.D.click(this, obj);
  2494. }, [_x010607StudentDeskIconInfo[i]]),
  2495. "onclick": U.UF.C.closure(function (obj) {
  2496. //防止拖动图标即打开了桌面应用
  2497. U.MD.D.click(this, obj);
  2498. }, [_x010607StudentDeskIconInfo[i]])
  2499. }, _frag); //
  2500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2503. }
  2504. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2505. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2506. _content = $$("div", {
  2507. className: "U_MD_D_KO",
  2508. "onmousedown": U.UF.C.closure(function (obj) {
  2509. //防止拖动图标即打开了桌面应用
  2510. U.MD.D.click(this, obj);
  2511. }, [_xhlyStudentDeskIconInfo[i]]),
  2512. "onclick": U.UF.C.closure(function (obj) {
  2513. //防止拖动图标即打开了桌面应用
  2514. U.MD.D.click(this, obj);
  2515. }, [_xhlyStudentDeskIconInfo[i]])
  2516. }, _frag); //
  2517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2520. }
  2521. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2522. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2523. _content = $$("div", {
  2524. className: "U_MD_D_KO",
  2525. "onmousedown": U.UF.C.closure(function (obj) {
  2526. //防止拖动图标即打开了桌面应用
  2527. U.MD.D.click(this, obj);
  2528. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2529. "onclick": U.UF.C.closure(function (obj) {
  2530. //防止拖动图标即打开了桌面应用
  2531. U.MD.D.click(this, obj);
  2532. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2533. }, _frag); //
  2534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2537. }
  2538. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2539. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2540. _content = $$("div", {
  2541. className: "U_MD_D_KO",
  2542. "onmousedown": U.UF.C.closure(function (obj) {
  2543. //防止拖动图标即打开了桌面应用
  2544. U.MD.D.click(this, obj);
  2545. }, [_x010503StudentDeskIconInfo[i]]),
  2546. "onclick": U.UF.C.closure(function (obj) {
  2547. //防止拖动图标即打开了桌面应用
  2548. U.MD.D.click(this, obj);
  2549. }, [_x010503StudentDeskIconInfo[i]])
  2550. }, _frag); //
  2551. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2552. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2553. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2554. }
  2555. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2556. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2557. _content = $$("div", {
  2558. className: "U_MD_D_KO",
  2559. "onmousedown": U.UF.C.closure(function (obj) {
  2560. //防止拖动图标即打开了桌面应用
  2561. U.MD.D.click(this, obj);
  2562. }, [_x010504StudentDeskIconInfo[i]]),
  2563. "onclick": U.UF.C.closure(function (obj) {
  2564. //防止拖动图标即打开了桌面应用
  2565. U.MD.D.click(this, obj);
  2566. }, [_x010504StudentDeskIconInfo[i]])
  2567. }, _frag); //
  2568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2571. }
  2572. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2573. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2574. _content = $$("div", {
  2575. className: "U_MD_D_KO",
  2576. "onmousedown": U.UF.C.closure(function (obj) {
  2577. //防止拖动图标即打开了桌面应用
  2578. U.MD.D.click(this, obj);
  2579. }, [_x010204StudentDeskIconInfo[i]]),
  2580. "onclick": U.UF.C.closure(function (obj) {
  2581. //防止拖动图标即打开了桌面应用
  2582. U.MD.D.click(this, obj);
  2583. }, [_x010204StudentDeskIconInfo[i]])
  2584. }, _frag); //
  2585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2588. }
  2589. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2590. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2591. _content = $$("div", {
  2592. className: "U_MD_D_KO",
  2593. "onmousedown": U.UF.C.closure(function (obj) {
  2594. //防止拖动图标即打开了桌面应用
  2595. U.MD.D.click(this, obj);
  2596. }, [_x320101StudentDeskIconInfo[i]]),
  2597. "onclick": U.UF.C.closure(function (obj) {
  2598. //防止拖动图标即打开了桌面应用
  2599. U.MD.D.click(this, obj);
  2600. }, [_x320101StudentDeskIconInfo[i]])
  2601. }, _frag); //
  2602. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2603. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2604. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2605. }
  2606. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2607. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2608. _content = $$("div", {
  2609. className: "U_MD_D_KO",
  2610. "onmousedown": U.UF.C.closure(function (obj) {
  2611. //防止拖动图标即打开了桌面应用
  2612. U.MD.D.click(this, obj);
  2613. }, [_trailStudentDeskIconInfo[i]]),
  2614. "onclick": U.UF.C.closure(function (obj) {
  2615. //防止拖动图标即打开了桌面应用
  2616. U.MD.D.click(this, obj);
  2617. }, [_trailStudentDeskIconInfo[i]])
  2618. }, _frag); //
  2619. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2620. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2621. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2622. }
  2623. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2624. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2625. _content = $$("div", {
  2626. className: "U_MD_D_KO",
  2627. "onmousedown": U.UF.C.closure(function (obj) {
  2628. //防止拖动图标即打开了桌面应用
  2629. U.MD.D.click(this, obj);
  2630. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2631. "onclick": U.UF.C.closure(function (obj) {
  2632. //防止拖动图标即打开了桌面应用
  2633. U.MD.D.click(this, obj);
  2634. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2635. }, _frag); //
  2636. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2637. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2638. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2639. }
  2640. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2641. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2642. _content = $$("div", {
  2643. className: "U_MD_D_KO",
  2644. "onmousedown": U.UF.C.closure(function (obj) {
  2645. //防止拖动图标即打开了桌面应用
  2646. U.MD.D.click(this, obj);
  2647. }, [_szsyStudentDeskIconInfo[i]]),
  2648. "onclick": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_szsyStudentDeskIconInfo[i]])
  2652. }, _frag); //
  2653. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2654. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2655. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2656. }
  2657. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2658. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2659. _content = $$("div", {
  2660. className: "U_MD_D_KO",
  2661. "onmousedown": U.UF.C.closure(function (obj) {
  2662. //防止拖动图标即打开了桌面应用
  2663. U.MD.D.click(this, obj);
  2664. }, [_x010608StudentDeskIconInfo[i]]),
  2665. "onclick": U.UF.C.closure(function (obj) {
  2666. //防止拖动图标即打开了桌面应用
  2667. U.MD.D.click(this, obj);
  2668. }, [_x010608StudentDeskIconInfo[i]])
  2669. }, _frag); //
  2670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2673. }
  2674. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2675. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2676. _content = $$("div", {
  2677. className: "U_MD_D_KO",
  2678. "onmousedown": U.UF.C.closure(function (obj) {
  2679. //防止拖动图标即打开了桌面应用
  2680. U.MD.D.click(this, obj);
  2681. }, [_x010611StudentDeskIconInfo[i]]),
  2682. "onclick": U.UF.C.closure(function (obj) {
  2683. //防止拖动图标即打开了桌面应用
  2684. U.MD.D.click(this, obj);
  2685. }, [_x010611StudentDeskIconInfo[i]])
  2686. }, _frag); //
  2687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2690. }
  2691. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2692. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2693. _content = $$("div", {
  2694. className: "U_MD_D_KO",
  2695. "onmousedown": U.UF.C.closure(function (obj) {
  2696. //防止拖动图标即打开了桌面应用
  2697. U.MD.D.click(this, obj);
  2698. }, [_tianyuantudentDeskIconInfo[i]]),
  2699. "onclick": U.UF.C.closure(function (obj) {
  2700. //防止拖动图标即打开了桌面应用
  2701. U.MD.D.click(this, obj);
  2702. }, [_tianyuantudentDeskIconInfo[i]])
  2703. }, _frag); //
  2704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2707. }
  2708. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2709. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2710. _content = $$("div", {
  2711. className: "U_MD_D_KO",
  2712. "onmousedown": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_siesStudentDeskIconInfo[i]]),
  2716. "onclick": U.UF.C.closure(function (obj) {
  2717. //防止拖动图标即打开了桌面应用
  2718. U.MD.D.click(this, obj);
  2719. }, [_siesStudentDeskIconInfo[i]])
  2720. }, _frag); //
  2721. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2722. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2723. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2724. }
  2725. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2726. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2727. _content = $$("div", {
  2728. className: "U_MD_D_KO",
  2729. "onmousedown": U.UF.C.closure(function (obj) {
  2730. //防止拖动图标即打开了桌面应用
  2731. U.MD.D.click(this, obj);
  2732. }, [_guzmsStudentDeskIconInfo[i]]),
  2733. "onclick": U.UF.C.closure(function (obj) {
  2734. //防止拖动图标即打开了桌面应用
  2735. U.MD.D.click(this, obj);
  2736. }, [_guzmsStudentDeskIconInfo[i]])
  2737. }, _frag); //
  2738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2741. }
  2742. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2743. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2744. _content = $$("div", {
  2745. className: "U_MD_D_KO",
  2746. "onmousedown": U.UF.C.closure(function (obj) {
  2747. //防止拖动图标即打开了桌面应用
  2748. U.MD.D.click(this, obj);
  2749. }, [_hkStudentDeskIconInfo[i]]),
  2750. "onclick": U.UF.C.closure(function (obj) {
  2751. //防止拖动图标即打开了桌面应用
  2752. U.MD.D.click(this, obj);
  2753. }, [_hkStudentDeskIconInfo[i]])
  2754. }, _frag); //
  2755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2758. }
  2759. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2760. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2761. _content = $$("div", {
  2762. className: "U_MD_D_KO",
  2763. "onmousedown": U.UF.C.closure(function (obj) {
  2764. //防止拖动图标即打开了桌面应用
  2765. U.MD.D.click(this, obj);
  2766. }, [_hkaceStudentDeskIconInfo[i]]),
  2767. "onclick": U.UF.C.closure(function (obj) {
  2768. //防止拖动图标即打开了桌面应用
  2769. U.MD.D.click(this, obj);
  2770. }, [_hkaceStudentDeskIconInfo[i]])
  2771. }, _frag); //
  2772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2775. }
  2776. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2777. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2778. _content = $$("div", {
  2779. className: "U_MD_D_KO",
  2780. "onmousedown": U.UF.C.closure(function (obj) {
  2781. //防止拖动图标即打开了桌面应用
  2782. U.MD.D.click(this, obj);
  2783. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2784. "onclick": U.UF.C.closure(function (obj) {
  2785. //防止拖动图标即打开了桌面应用
  2786. U.MD.D.click(this, obj);
  2787. }, [_BSDNSstudentDesktopIconInfo[i]])
  2788. }, _frag); //
  2789. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2790. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2791. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2792. }
  2793. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2794. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2795. _content = $$("div", {
  2796. className: "U_MD_D_KO",
  2797. "onmousedown": U.UF.C.closure(function (obj) {
  2798. //防止拖动图标即打开了桌面应用
  2799. U.MD.D.click(this, obj);
  2800. }, [_cocobizStudentDeskIconInfo[i]]),
  2801. "onclick": U.UF.C.closure(function (obj) {
  2802. //防止拖动图标即打开了桌面应用
  2803. U.MD.D.click(this, obj);
  2804. }, [_cocobizStudentDeskIconInfo[i]])
  2805. }, _frag); //
  2806. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2807. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2808. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2809. }
  2810. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2811. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2812. _content = $$("div", {
  2813. className: "U_MD_D_KO",
  2814. "onmousedown": U.UF.C.closure(function (obj) {
  2815. //防止拖动图标即打开了桌面应用
  2816. U.MD.D.click(this, obj);
  2817. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2818. "onclick": U.UF.C.closure(function (obj) {
  2819. //防止拖动图标即打开了桌面应用
  2820. U.MD.D.click(this, obj);
  2821. }, [_xxzjkyStudentDeskIconInfo[i]])
  2822. }, _frag); //
  2823. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2824. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2825. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2826. }
  2827. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2828. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2829. _content = $$("div", {
  2830. className: "U_MD_D_KO",
  2831. "onmousedown": U.UF.C.closure(function (obj) {
  2832. //防止拖动图标即打开了桌面应用
  2833. U.MD.D.click(this, obj);
  2834. }, [_studentDesktopIconInfo[i]]),
  2835. "onclick": U.UF.C.closure(function (obj) {
  2836. //防止拖动图标即打开了桌面应用
  2837. U.MD.D.click(this, obj);
  2838. }, [_studentDesktopIconInfo[i]])
  2839. }, _frag); //
  2840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2843. }
  2844. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2845. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_tcStudentDeskIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_tcStudentDeskIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2862. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2863. _content = $$("div", {
  2864. className: "U_MD_D_KO",
  2865. "onmousedown": U.UF.C.closure(function (obj) {
  2866. //防止拖动图标即打开了桌面应用
  2867. U.MD.D.click(this, obj);
  2868. }, [_szscStudentDeskIconInfo[i]]),
  2869. "onclick": U.UF.C.closure(function (obj) {
  2870. //防止拖动图标即打开了桌面应用
  2871. U.MD.D.click(this, obj);
  2872. }, [_szscStudentDeskIconInfo[i]])
  2873. }, _frag); //
  2874. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2875. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2876. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2877. }
  2878. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2879. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2880. _content = $$("div", {
  2881. className: "U_MD_D_KO",
  2882. "onmousedown": U.UF.C.closure(function (obj) {
  2883. //防止拖动图标即打开了桌面应用
  2884. U.MD.D.click(this, obj);
  2885. }, [_studentDesktopIconInfo3[i]]),
  2886. "onclick": U.UF.C.closure(function (obj) {
  2887. //防止拖动图标即打开了桌面应用
  2888. U.MD.D.click(this, obj);
  2889. }, [_studentDesktopIconInfo3[i]])
  2890. }, _frag); //
  2891. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2892. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2893. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2894. }
  2895. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2896. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2897. _content = $$("div", {
  2898. className: "U_MD_D_KO",
  2899. "onmousedown": U.UF.C.closure(function (obj) {
  2900. //防止拖动图标即打开了桌面应用
  2901. U.MD.D.click(this, obj);
  2902. }, [_studentDesktopIconInfo2[i]]),
  2903. "onclick": U.UF.C.closure(function (obj) {
  2904. //防止拖动图标即打开了桌面应用
  2905. U.MD.D.click(this, obj);
  2906. }, [_studentDesktopIconInfo2[i]])
  2907. }, _frag); //
  2908. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2909. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2910. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2911. }
  2912. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2913. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2914. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2915. continue
  2916. }
  2917. _content = $$("div", {
  2918. className: "U_MD_D_KO",
  2919. "onmousedown": U.UF.C.closure(function (obj) {
  2920. //防止拖动图标即打开了桌面应用
  2921. U.MD.D.click(this, obj);
  2922. }, [_wanketeacherDesktopIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_wanketeacherDesktopIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2933. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_wankeAdminDesktopIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_wankeAdminDesktopIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2950. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2951. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2952. continue
  2953. }
  2954. _content = $$("div", {
  2955. className: "U_MD_D_KO",
  2956. "onmousedown": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2960. "onclick": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_scnuaiTeacherDeskIconInfo[i]])
  2964. }, _frag); //
  2965. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2966. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2967. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2968. }
  2969. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2970. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2971. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2972. continue
  2973. }
  2974. _content = $$("div", {
  2975. className: "U_MD_D_KO",
  2976. "onmousedown": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2980. "onclick": U.UF.C.closure(function (obj) {
  2981. //防止拖动图标即打开了桌面应用
  2982. U.MD.D.click(this, obj);
  2983. }, [_BSDNSteacherDesktopIconInfo[i]])
  2984. }, _frag); //
  2985. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2986. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2987. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2988. }
  2989. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2990. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_scnuaiAdminDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_scnuaiAdminDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3005. }
  3006. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3007. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3008. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_jccssylTeacherDeskIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_jccssylTeacherDeskIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3027. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3028. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_caleTeacherDeskIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_caleTeacherDeskIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3047. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_tpcOrganizerDeskIconInfo[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_tpcOrganizerDeskIconInfo[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3062. }
  3063. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3064. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3065. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3066. continue
  3067. }
  3068. _content = $$("div", {
  3069. className: "U_MD_D_KO",
  3070. "onmousedown": U.UF.C.closure(function (obj) {
  3071. //防止拖动图标即打开了桌面应用
  3072. U.MD.D.click(this, obj);
  3073. }, [_tpcTeacherDeskIconInfo[i]]),
  3074. "onclick": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_tpcTeacherDeskIconInfo[i]])
  3078. }, _frag); //
  3079. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3080. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3081. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3082. }
  3083. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3084. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3085. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3086. continue
  3087. }
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_teacherDesktopIconInfo2[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_teacherDesktopIconInfo2[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3102. }
  3103. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3104. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3105. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3106. continue
  3107. }
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_thuioeTeacherDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_thuioeTeacherDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3124. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3125. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_lotechTeacherDeskIconInfo[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_lotechTeacherDeskIconInfo[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3142. }//
  3143. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3144. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3145. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3146. continue
  3147. }
  3148. _content = $$("div", {
  3149. className: "U_MD_D_KO",
  3150. "onmousedown": U.UF.C.closure(function (obj) {
  3151. //防止拖动图标即打开了桌面应用
  3152. U.MD.D.click(this, obj);
  3153. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3154. "onclick": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3158. }, _frag); //
  3159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3162. }
  3163. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3164. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3165. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3166. continue
  3167. }
  3168. _content = $$("div", {
  3169. className: "U_MD_D_KO",
  3170. "onmousedown": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_siesTeacherDeskIconInfo[i]]),
  3174. "onclick": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_siesTeacherDeskIconInfo[i]])
  3178. }, _frag); //
  3179. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3180. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3181. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3182. }
  3183. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3184. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3185. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3186. continue
  3187. }
  3188. _content = $$("div", {
  3189. className: "U_MD_D_KO",
  3190. "onmousedown": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsTeacherDeskIconInfo[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_guzmsTeacherDeskIconInfo[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3202. }
  3203. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3204. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3205. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3206. continue
  3207. }
  3208. _content = $$("div", {
  3209. className: "U_MD_D_KO",
  3210. "onmousedown": U.UF.C.closure(function (obj) {
  3211. //防止拖动图标即打开了桌面应用
  3212. U.MD.D.click(this, obj);
  3213. }, [_longhuaTeacherDeskIconInfo[i]]),
  3214. "onclick": U.UF.C.closure(function (obj) {
  3215. //防止拖动图标即打开了桌面应用
  3216. U.MD.D.click(this, obj);
  3217. }, [_longhuaTeacherDeskIconInfo[i]])
  3218. }, _frag); //
  3219. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3220. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3221. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3222. }
  3223. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3224. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3225. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3226. continue
  3227. }
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_ytyTeacherDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_ytyTeacherDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3244. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_yunhaiTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. } //_hkStudentDeskIconInfo
  3263. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3264. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3284. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3285. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3286. continue
  3287. }
  3288. _content = $$("div", {
  3289. className: "U_MD_D_KO",
  3290. "onmousedown": U.UF.C.closure(function (obj) {
  3291. //防止拖动图标即打开了桌面应用
  3292. U.MD.D.click(this, obj);
  3293. }, [_hkTeacherDeskIconInfo[i]]),
  3294. "onclick": U.UF.C.closure(function (obj) {
  3295. //防止拖动图标即打开了桌面应用
  3296. U.MD.D.click(this, obj);
  3297. }, [_hkTeacherDeskIconInfo[i]])
  3298. }, _frag); //
  3299. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3300. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3301. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3302. }
  3303. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3304. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3305. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3306. continue
  3307. }
  3308. _content = $$("div", {
  3309. className: "U_MD_D_KO",
  3310. "onmousedown": U.UF.C.closure(function (obj) {
  3311. //防止拖动图标即打开了桌面应用
  3312. U.MD.D.click(this, obj);
  3313. }, [_hkaceTeacherDeskIconInfo[i]]),
  3314. "onclick": U.UF.C.closure(function (obj) {
  3315. //防止拖动图标即打开了桌面应用
  3316. U.MD.D.click(this, obj);
  3317. }, [_hkaceTeacherDeskIconInfo[i]])
  3318. }, _frag); //
  3319. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3320. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3321. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3322. }
  3323. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3324. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3325. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3326. continue
  3327. }
  3328. _content = $$("div", {
  3329. className: "U_MD_D_KO",
  3330. "onmousedown": U.UF.C.closure(function (obj) {
  3331. //防止拖动图标即打开了桌面应用
  3332. U.MD.D.click(this, obj);
  3333. }, [_cocobizTeacherDeskIconInfo[i]]),
  3334. "onclick": U.UF.C.closure(function (obj) {
  3335. //防止拖动图标即打开了桌面应用
  3336. U.MD.D.click(this, obj);
  3337. }, [_cocobizTeacherDeskIconInfo[i]])
  3338. }, _frag); //
  3339. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3340. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3341. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3342. }
  3343. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3344. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3345. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3346. continue
  3347. }
  3348. _content = $$("div", {
  3349. className: "U_MD_D_KO",
  3350. "onmousedown": U.UF.C.closure(function (obj) {
  3351. //防止拖动图标即打开了桌面应用
  3352. U.MD.D.click(this, obj);
  3353. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3354. "onclick": U.UF.C.closure(function (obj) {
  3355. //防止拖动图标即打开了桌面应用
  3356. U.MD.D.click(this, obj);
  3357. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3358. }, _frag); //
  3359. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3360. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3361. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3362. }
  3363. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3364. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3365. _content = $$("div", {
  3366. className: "U_MD_D_KO",
  3367. "onmousedown": U.UF.C.closure(function (obj) {
  3368. //防止拖动图标即打开了桌面应用
  3369. U.MD.D.click(this, obj);
  3370. }, [_gdjgAdminDeskIconInfo[i]]),
  3371. "onclick": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_gdjgAdminDeskIconInfo[i]])
  3375. }, _frag); //
  3376. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3377. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3378. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3379. }
  3380. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3381. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3382. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3383. continue
  3384. }
  3385. _content = $$("div", {
  3386. className: "U_MD_D_KO",
  3387. "onmousedown": U.UF.C.closure(function (obj) {
  3388. //防止拖动图标即打开了桌面应用
  3389. U.MD.D.click(this, obj);
  3390. }, [_gdjgTeacherDeskIconInfo[i]]),
  3391. "onclick": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_gdjgTeacherDeskIconInfo[i]])
  3395. }, _frag); //
  3396. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3397. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3398. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3399. }
  3400. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3401. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3402. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3403. continue
  3404. }
  3405. _content = $$("div", {
  3406. className: "U_MD_D_KO",
  3407. "onmousedown": U.UF.C.closure(function (obj) {
  3408. //防止拖动图标即打开了桌面应用
  3409. U.MD.D.click(this, obj);
  3410. }, [_szherTeacherDeskIconInfo[i]]),
  3411. "onclick": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_szherTeacherDeskIconInfo[i]])
  3415. }, _frag); //
  3416. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3417. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3418. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3419. }
  3420. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3421. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3422. _content = $$("div", {
  3423. className: "U_MD_D_KO",
  3424. "onmousedown": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_heyuannAdminDeskIconInfo[i]]),
  3428. "onclick": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_heyuannAdminDeskIconInfo[i]])
  3432. }, _frag); //
  3433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3436. }
  3437. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3438. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3439. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3440. continue
  3441. }
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_heyuanTeacherDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_heyuanTeacherDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3456. } //
  3457. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3458. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3459. _content = $$("div", {
  3460. className: "U_MD_D_KO",
  3461. "onmousedown": U.UF.C.closure(function (obj) {
  3462. //防止拖动图标即打开了桌面应用
  3463. U.MD.D.click(this, obj);
  3464. }, [_dseiAdminDeskIconInfo[i]]),
  3465. "onclick": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_dseiAdminDeskIconInfo[i]])
  3469. }, _frag); //
  3470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3473. }
  3474. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3475. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3476. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3477. continue
  3478. }
  3479. _content = $$("div", {
  3480. className: "U_MD_D_KO",
  3481. "onmousedown": U.UF.C.closure(function (obj) {
  3482. //防止拖动图标即打开了桌面应用
  3483. U.MD.D.click(this, obj);
  3484. }, [_dseiTeacherDeskIconInfo[i]]),
  3485. "onclick": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_dseiTeacherDeskIconInfo[i]])
  3489. }, _frag); //
  3490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3493. } //
  3494. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3495. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3496. _content = $$("div", {
  3497. className: "U_MD_D_KO",
  3498. "onmousedown": U.UF.C.closure(function (obj) {
  3499. //防止拖动图标即打开了桌面应用
  3500. U.MD.D.click(this, obj);
  3501. }, [_chjyjAdminDeskIconInfo[i]]),
  3502. "onclick": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_chjyjAdminDeskIconInfo[i]])
  3506. }, _frag); //
  3507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3510. }//
  3511. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3512. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3513. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3514. continue
  3515. }
  3516. _content = $$("div", {
  3517. className: "U_MD_D_KO",
  3518. "onmousedown": U.UF.C.closure(function (obj) {
  3519. //防止拖动图标即打开了桌面应用
  3520. U.MD.D.click(this, obj);
  3521. }, [_chjyjTeacherDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_chjyjTeacherDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3530. }
  3531. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3532. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3533. _content = $$("div", {
  3534. className: "U_MD_D_KO",
  3535. "onmousedown": U.UF.C.closure(function (obj) {
  3536. //防止拖动图标即打开了桌面应用
  3537. U.MD.D.click(this, obj);
  3538. }, [_szjkyAdminDeskIconInfo[i]]),
  3539. "onclick": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_szjkyAdminDeskIconInfo[i]])
  3543. }, _frag); //
  3544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3547. }//
  3548. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3549. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3550. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3551. continue
  3552. }
  3553. _content = $$("div", {
  3554. className: "U_MD_D_KO",
  3555. "onmousedown": U.UF.C.closure(function (obj) {
  3556. //防止拖动图标即打开了桌面应用
  3557. U.MD.D.click(this, obj);
  3558. }, [_szjkyTeacherDeskIconInfo[i]]),
  3559. "onclick": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_szjkyTeacherDeskIconInfo[i]])
  3563. }, _frag); //
  3564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3567. }
  3568. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3569. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3570. _content = $$("div", {
  3571. className: "U_MD_D_KO",
  3572. "onmousedown": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_x020201AdminDeskIconInfo[i]]),
  3576. "onclick": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_x020201AdminDeskIconInfo[i]])
  3580. }, _frag); //
  3581. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3582. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3583. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3584. }//
  3585. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3586. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3587. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3588. continue
  3589. }
  3590. _content = $$("div", {
  3591. className: "U_MD_D_KO",
  3592. "onmousedown": U.UF.C.closure(function (obj) {
  3593. //防止拖动图标即打开了桌面应用
  3594. U.MD.D.click(this, obj);
  3595. }, [_x020201TeacherDeskIconInfo[i]]),
  3596. "onclick": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_x020201TeacherDeskIconInfo[i]])
  3600. }, _frag); //
  3601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3604. }
  3605. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3606. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3607. _content = $$("div", {
  3608. className: "U_MD_D_KO",
  3609. "onmousedown": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_SCNUETAdminDeskIconInfo[i]]),
  3613. "onclick": U.UF.C.closure(function (obj) {
  3614. //防止拖动图标即打开了桌面应用
  3615. U.MD.D.click(this, obj);
  3616. }, [_SCNUETAdminDeskIconInfo[i]])
  3617. }, _frag); //
  3618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3621. }//
  3622. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3623. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3624. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3625. continue
  3626. }
  3627. _content = $$("div", {
  3628. className: "U_MD_D_KO",
  3629. "onmousedown": U.UF.C.closure(function (obj) {
  3630. //防止拖动图标即打开了桌面应用
  3631. U.MD.D.click(this, obj);
  3632. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3633. "onclick": U.UF.C.closure(function (obj) {
  3634. //防止拖动图标即打开了桌面应用
  3635. U.MD.D.click(this, obj);
  3636. }, [_SCNUETTeacherDeskIconInfo[i]])
  3637. }, _frag); //
  3638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3641. }
  3642. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3643. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3644. _content = $$("div", {
  3645. className: "U_MD_D_KO",
  3646. "onmousedown": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_futianAdminDeskIconInfo[i]]),
  3650. "onclick": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_futianAdminDeskIconInfo[i]])
  3654. }, _frag); //
  3655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3658. }
  3659. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3660. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3661. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3662. continue
  3663. }
  3664. _content = $$("div", {
  3665. className: "U_MD_D_KO",
  3666. "onmousedown": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_futianTeacherDeskIconInfo[i]]),
  3670. "onclick": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_futianTeacherDeskIconInfo[i]])
  3674. }, _frag); //
  3675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3678. }
  3679. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3680. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3681. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3682. continue
  3683. }
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_MingdeTeacherDeskIcon[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_MingdeTeacherDeskIcon[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3698. }
  3699. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3700. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3701. _content = $$("div", {
  3702. className: "U_MD_D_KO",
  3703. "onmousedown": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_lhsAdminDesktopIconInfo[i]]),
  3707. "onclick": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_lhsAdminDesktopIconInfo[i]])
  3711. }, _frag); //
  3712. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3713. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3714. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3715. }
  3716. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3717. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3718. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3719. continue
  3720. }
  3721. _content = $$("div", {
  3722. className: "U_MD_D_KO",
  3723. "onmousedown": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_lhsteacherDesktopIconInfo[i]]),
  3727. "onclick": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_lhsteacherDesktopIconInfo[i]])
  3731. }, _frag); //
  3732. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3733. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3734. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3735. }
  3736. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3737. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3738. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3739. continue
  3740. }
  3741. _content = $$("div", {
  3742. className: "U_MD_D_KO",
  3743. "onmousedown": U.UF.C.closure(function (obj) {
  3744. //防止拖动图标即打开了桌面应用
  3745. U.MD.D.click(this, obj);
  3746. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3747. "onclick": U.UF.C.closure(function (obj) {
  3748. //防止拖动图标即打开了桌面应用
  3749. U.MD.D.click(this, obj);
  3750. }, [_zhoujiateacherDesktopIconInfo[i]])
  3751. }, _frag); //
  3752. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3753. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3754. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3755. }
  3756. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3757. for (i = 0; i < _hanDeskIcon.length; i++) {
  3758. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3759. continue
  3760. }
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_hanDeskIcon[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_hanDeskIcon[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3775. }
  3776. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3777. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3778. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_orgStemDeskIcon[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_orgStemDeskIcon[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3797. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3798. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3799. continue
  3800. }
  3801. _content = $$("div", {
  3802. className: "U_MD_D_KO",
  3803. "onmousedown": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_szulsDeskIcon[i]]),
  3807. "onclick": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_szulsDeskIcon[i]])
  3811. }, _frag); //
  3812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3815. }
  3816. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3817. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3818. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3819. continue
  3820. }
  3821. _content = $$("div", {
  3822. className: "U_MD_D_KO",
  3823. "onmousedown": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_orgDesktopIconInfo[i]]),
  3827. "onclick": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_orgDesktopIconInfo[i]])
  3831. }, _frag); //
  3832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3835. }
  3836. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3837. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3838. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3839. continue
  3840. }
  3841. _content = $$("div", {
  3842. className: "U_MD_D_KO",
  3843. "onmousedown": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_schoolDesktopIconInfo[i]]),
  3847. "onclick": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_schoolDesktopIconInfo[i]])
  3851. }, _frag); //
  3852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3855. }
  3856. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3857. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3858. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3859. continue
  3860. }
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_GMteacherDesktopIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_GMteacherDesktopIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3877. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3878. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_SONGteacherDesktopIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_SONGteacherDesktopIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3897. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3898. _content = $$("div", {
  3899. className: "U_MD_D_KO",
  3900. "onmousedown": U.UF.C.closure(function (obj) {
  3901. //防止拖动图标即打开了桌面应用
  3902. U.MD.D.click(this, obj);
  3903. }, [_GMstudentDesktopIconInfo[i]]),
  3904. "onclick": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_GMstudentDesktopIconInfo[i]])
  3908. }, _frag); //
  3909. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3910. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3911. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3912. }
  3913. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3914. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3915. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3916. continue
  3917. }
  3918. _content = $$("div", {
  3919. className: "U_MD_D_KO",
  3920. "onmousedown": U.UF.C.closure(function (obj) {
  3921. //防止拖动图标即打开了桌面应用
  3922. U.MD.D.click(this, obj);
  3923. }, [_tcTeacherDeskIconInfo[i]]),
  3924. "onclick": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_tcTeacherDeskIconInfo[i]])
  3928. }, _frag); //
  3929. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3930. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3931. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3932. }
  3933. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3934. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3935. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3936. continue
  3937. }
  3938. _content = $$("div", {
  3939. className: "U_MD_D_KO",
  3940. "onmousedown": U.UF.C.closure(function (obj) {
  3941. //防止拖动图标即打开了桌面应用
  3942. U.MD.D.click(this, obj);
  3943. }, [_tcOrganizerDeskIconInfo[i]]),
  3944. "onclick": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_tcOrganizerDeskIconInfo[i]])
  3948. }, _frag); //
  3949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3952. }
  3953. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3954. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3955. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3956. continue
  3957. }
  3958. _content = $$("div", {
  3959. className: "U_MD_D_KO",
  3960. "onmousedown": U.UF.C.closure(function (obj) {
  3961. //防止拖动图标即打开了桌面应用
  3962. U.MD.D.click(this, obj);
  3963. }, [_szscTeacherDeskIconInfo[i]]),
  3964. "onclick": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szscTeacherDeskIconInfo[i]])
  3968. }, _frag); //
  3969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3972. }
  3973. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3974. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3975. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3976. continue
  3977. }
  3978. _content = $$("div", {
  3979. className: "U_MD_D_KO",
  3980. "onmousedown": U.UF.C.closure(function (obj) {
  3981. //防止拖动图标即打开了桌面应用
  3982. U.MD.D.click(this, obj);
  3983. }, [_szscOrganizerDeskIconInfo[i]]),
  3984. "onclick": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_szscOrganizerDeskIconInfo[i]])
  3988. }, _frag); //
  3989. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3990. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3991. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3992. }
  3993. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3994. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3995. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3996. continue
  3997. }
  3998. _content = $$("div", {
  3999. className: "U_MD_D_KO",
  4000. "onmousedown": U.UF.C.closure(function (obj) {
  4001. //防止拖动图标即打开了桌面应用
  4002. U.MD.D.click(this, obj);
  4003. }, [_nsfxTeacherDeskIconInfo[i]]),
  4004. "onclick": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_nsfxTeacherDeskIconInfo[i]])
  4008. }, _frag); //
  4009. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4010. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4011. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4012. }
  4013. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4014. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4015. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4016. continue
  4017. }
  4018. _content = $$("div", {
  4019. className: "U_MD_D_KO",
  4020. "onmousedown": U.UF.C.closure(function (obj) {
  4021. //防止拖动图标即打开了桌面应用
  4022. U.MD.D.click(this, obj);
  4023. }, [_stiaTeacherDeskIconInfo[i]]),
  4024. "onclick": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_stiaTeacherDeskIconInfo[i]])
  4028. }, _frag); //
  4029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4032. }
  4033. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4034. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4035. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4036. continue
  4037. }
  4038. _content = $$("div", {
  4039. className: "U_MD_D_KO",
  4040. "onmousedown": U.UF.C.closure(function (obj) {
  4041. //防止拖动图标即打开了桌面应用
  4042. U.MD.D.click(this, obj);
  4043. }, [_szdjgTeacherDeskIconInfo[i]]),
  4044. "onclick": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_szdjgTeacherDeskIconInfo[i]])
  4048. }, _frag); //
  4049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4052. }
  4053. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4054. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4055. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4056. continue
  4057. }
  4058. _content = $$("div", {
  4059. className: "U_MD_D_KO",
  4060. "onmousedown": U.UF.C.closure(function (obj) {
  4061. //防止拖动图标即打开了桌面应用
  4062. U.MD.D.click(this, obj);
  4063. }, [_x010607TeacherDeskIconInfo[i]]),
  4064. "onclick": U.UF.C.closure(function (obj) {
  4065. //防止拖动图标即打开了桌面应用
  4066. U.MD.D.click(this, obj);
  4067. }, [_x010607TeacherDeskIconInfo[i]])
  4068. }, _frag); //
  4069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4072. }
  4073. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4074. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4075. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4076. continue
  4077. }
  4078. _content = $$("div", {
  4079. className: "U_MD_D_KO",
  4080. "onmousedown": U.UF.C.closure(function (obj) {
  4081. //防止拖动图标即打开了桌面应用
  4082. U.MD.D.click(this, obj);
  4083. }, [_xhlyTeacherDeskIconInfo[i]]),
  4084. "onclick": U.UF.C.closure(function (obj) {
  4085. //防止拖动图标即打开了桌面应用
  4086. U.MD.D.click(this, obj);
  4087. }, [_xhlyTeacherDeskIconInfo[i]])
  4088. }, _frag); //
  4089. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4090. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4091. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4092. }
  4093. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4094. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4095. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4096. continue
  4097. }
  4098. _content = $$("div", {
  4099. className: "U_MD_D_KO",
  4100. "onmousedown": U.UF.C.closure(function (obj) {
  4101. //防止拖动图标即打开了桌面应用
  4102. U.MD.D.click(this, obj);
  4103. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4104. "onclick": U.UF.C.closure(function (obj) {
  4105. //防止拖动图标即打开了桌面应用
  4106. U.MD.D.click(this, obj);
  4107. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4108. }, _frag); //
  4109. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4110. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4111. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4112. }
  4113. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4114. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4115. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4116. continue
  4117. }
  4118. _content = $$("div", {
  4119. className: "U_MD_D_KO",
  4120. "onmousedown": U.UF.C.closure(function (obj) {
  4121. //防止拖动图标即打开了桌面应用
  4122. U.MD.D.click(this, obj);
  4123. }, [_x010503TeacherDeskIconInfo[i]]),
  4124. "onclick": U.UF.C.closure(function (obj) {
  4125. //防止拖动图标即打开了桌面应用
  4126. U.MD.D.click(this, obj);
  4127. }, [_x010503TeacherDeskIconInfo[i]])
  4128. }, _frag); //
  4129. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4130. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4131. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4132. }
  4133. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4134. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4135. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4136. continue
  4137. }
  4138. _content = $$("div", {
  4139. className: "U_MD_D_KO",
  4140. "onmousedown": U.UF.C.closure(function (obj) {
  4141. //防止拖动图标即打开了桌面应用
  4142. U.MD.D.click(this, obj);
  4143. }, [_x010504TeacherDeskIconInfo[i]]),
  4144. "onclick": U.UF.C.closure(function (obj) {
  4145. //防止拖动图标即打开了桌面应用
  4146. U.MD.D.click(this, obj);
  4147. }, [_x010504TeacherDeskIconInfo[i]])
  4148. }, _frag); //
  4149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4152. }
  4153. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4154. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4155. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4156. continue
  4157. }
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_x010204TeacherDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_x010204TeacherDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4172. }
  4173. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4174. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4175. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_x320101TeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_x320101TeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4194. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4195. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4196. continue
  4197. }
  4198. _content = $$("div", {
  4199. className: "U_MD_D_KO",
  4200. "onmousedown": U.UF.C.closure(function (obj) {
  4201. //防止拖动图标即打开了桌面应用
  4202. U.MD.D.click(this, obj);
  4203. }, [_trailTeacherDeskIconInfo[i]]),
  4204. "onclick": U.UF.C.closure(function (obj) {
  4205. //防止拖动图标即打开了桌面应用
  4206. U.MD.D.click(this, obj);
  4207. }, [_trailTeacherDeskIconInfo[i]])
  4208. }, _frag); //
  4209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4212. }
  4213. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4214. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4215. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4216. continue
  4217. }
  4218. _content = $$("div", {
  4219. className: "U_MD_D_KO",
  4220. "onmousedown": U.UF.C.closure(function (obj) {
  4221. //防止拖动图标即打开了桌面应用
  4222. U.MD.D.click(this, obj);
  4223. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4224. "onclick": U.UF.C.closure(function (obj) {
  4225. //防止拖动图标即打开了桌面应用
  4226. U.MD.D.click(this, obj);
  4227. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4228. }, _frag); //
  4229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4232. }
  4233. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4234. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4235. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4236. continue
  4237. }
  4238. _content = $$("div", {
  4239. className: "U_MD_D_KO",
  4240. "onmousedown": U.UF.C.closure(function (obj) {
  4241. //防止拖动图标即打开了桌面应用
  4242. U.MD.D.click(this, obj);
  4243. }, [_szsyTeacherDeskIconInfo[i]]),
  4244. "onclick": U.UF.C.closure(function (obj) {
  4245. //防止拖动图标即打开了桌面应用
  4246. U.MD.D.click(this, obj);
  4247. }, [_szsyTeacherDeskIconInfo[i]])
  4248. }, _frag); //
  4249. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4250. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4251. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4252. }
  4253. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4254. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4255. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4256. continue
  4257. }
  4258. _content = $$("div", {
  4259. className: "U_MD_D_KO",
  4260. "onmousedown": U.UF.C.closure(function (obj) {
  4261. //防止拖动图标即打开了桌面应用
  4262. U.MD.D.click(this, obj);
  4263. }, [_x010608TeacherDeskIconInfo[i]]),
  4264. "onclick": U.UF.C.closure(function (obj) {
  4265. //防止拖动图标即打开了桌面应用
  4266. U.MD.D.click(this, obj);
  4267. }, [_x010608TeacherDeskIconInfo[i]])
  4268. }, _frag); //
  4269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4272. }
  4273. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4274. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4275. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4276. continue
  4277. }
  4278. _content = $$("div", {
  4279. className: "U_MD_D_KO",
  4280. "onmousedown": U.UF.C.closure(function (obj) {
  4281. //防止拖动图标即打开了桌面应用
  4282. U.MD.D.click(this, obj);
  4283. }, [_x010611TeacherDeskIconInfo[i]]),
  4284. "onclick": U.UF.C.closure(function (obj) {
  4285. //防止拖动图标即打开了桌面应用
  4286. U.MD.D.click(this, obj);
  4287. }, [_x010611TeacherDeskIconInfo[i]])
  4288. }, _frag); //
  4289. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4290. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4291. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4292. }
  4293. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4294. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4295. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4296. continue
  4297. }
  4298. _content = $$("div", {
  4299. className: "U_MD_D_KO",
  4300. "onmousedown": U.UF.C.closure(function (obj) {
  4301. //防止拖动图标即打开了桌面应用
  4302. U.MD.D.click(this, obj);
  4303. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4304. "onclick": U.UF.C.closure(function (obj) {
  4305. //防止拖动图标即打开了桌面应用
  4306. U.MD.D.click(this, obj);
  4307. }, [_tianyuanTeacherDeskIconInfo[i]])
  4308. }, _frag); //
  4309. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4310. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4311. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4312. }
  4313. } else {
  4314. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4315. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4316. continue
  4317. }
  4318. _content = $$("div", {
  4319. className: "U_MD_D_KO",
  4320. "onmousedown": U.UF.C.closure(function (obj) {
  4321. //防止拖动图标即打开了桌面应用
  4322. U.MD.D.click(this, obj);
  4323. }, [_teacherDesktopIconInfo[i]]),
  4324. "onclick": U.UF.C.closure(function (obj) {
  4325. //防止拖动图标即打开了桌面应用
  4326. U.MD.D.click(this, obj);
  4327. }, [_teacherDesktopIconInfo[i]])
  4328. }, _frag); //
  4329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4332. }
  4333. }
  4334. } else {
  4335. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4336. _content = $$("div", {
  4337. className: "U_MD_D_KO",
  4338. style: { 'width': '124px', 'height': '145px' },
  4339. "onmousedown": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_easyDesktopIconInfo[i]]),
  4343. "onclick": U.UF.C.closure(function (obj) {
  4344. //防止拖动图标即打开了桌面应用
  4345. U.MD.D.click(this, obj);
  4346. }, [_easyDesktopIconInfo[i]])
  4347. }, _frag); //
  4348. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4351. }
  4352. }
  4353. if (type == 1) {
  4354. //加载好后给图标定位
  4355. U.MD.D.iconPostion($(_frag).Child());
  4356. } else {
  4357. //加载好后给图标定位
  4358. U.MD.D.iconPostion2($(_frag).Child());
  4359. }
  4360. //把图标加载到页面
  4361. el.appendChild(_frag);
  4362. }
  4363. /**
  4364. * 显示任务栏
  4365. *
  4366. * @param {element} 桌面元素
  4367. */
  4368. U.MD.D.I.displayTaskbar = function (el) {
  4369. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4370. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4371. //任务栏位置变化
  4372. U.selectEl(el).css({ "bottom": "0px" });
  4373. //桌面位置变话
  4374. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4375. }
  4376. }
  4377. //#region 桌面图标拖动逻辑
  4378. /**
  4379. * 桌面排列图标
  4380. *
  4381. * @param {element} 桌面元素
  4382. * @param {object} 上下相距的距离
  4383. * @param {object} 左右相距的距离
  4384. * @return {object} 命名空间
  4385. */
  4386. U.MD.D.iconPostion = function (childs, top, left) {
  4387. var i; //用于循环处理
  4388. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4389. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4390. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4391. for (i = 0; i < childs.length; i++) {
  4392. //如果竖排top超过了范围处理
  4393. if (top + 95 > US.height - 10) {
  4394. //left超过了页面范围处理,则向上重叠打印处理
  4395. if ((left + 180) > US.width) {
  4396. top -= 110;
  4397. left -= 90;
  4398. }
  4399. //没有超过范围,那么left+90添加到下一个竖排打印
  4400. else {
  4401. left += 90;
  4402. top = 15;
  4403. };
  4404. }
  4405. //给图标的位置赋值
  4406. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4407. if (i < childs.length - 1) {
  4408. //页面图标每次向下加95
  4409. top += 95;
  4410. }
  4411. }
  4412. //返回最后调用的图标的位置
  4413. return [top, left];
  4414. }
  4415. /**
  4416. * 桌面排列图标
  4417. *
  4418. * @param {element} 桌面元素
  4419. * @param {object} 上下相距的距离
  4420. * @param {object} 左右相距的距离
  4421. * @return {object} 命名空间
  4422. */
  4423. U.MD.D.iconPostion2 = function (childs, top, left) {
  4424. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4425. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4426. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4427. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4428. for (i = 0; i < childs.length; i++) {
  4429. //如果竖排top超过了范围处理
  4430. if (left + 150 > US.width - 10) {
  4431. //left超过了页面范围处理,则向上重叠打印处理
  4432. if ((top + 180) > US.Height) {
  4433. top -= 150;
  4434. left -= 150;
  4435. }
  4436. //没有超过范围,那么left+90添加到下一个竖排打印
  4437. else {
  4438. top += 150;
  4439. left = ol;
  4440. };
  4441. }
  4442. //给图标的位置赋值
  4443. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4444. if (i < childs.length - 1) {
  4445. //页面图标每次向下加95
  4446. left += 150;
  4447. }
  4448. }
  4449. //返回最后调用的图标的位置
  4450. return [top, left];
  4451. }
  4452. /**
  4453. * 桌面点击事件逻辑
  4454. *
  4455. * @param {element} 桌面元素
  4456. * @param {object} 上下相距的距离
  4457. * @param {object} 左右相距的距离
  4458. * @return {object} 命名空间
  4459. */
  4460. U.MD.D.click = function (el, obj) {
  4461. var _buttonnumber = event.button; //点击的按钮的事件值
  4462. var _userinfo = US.userInfo;
  4463. U.UF.EV.stopBubble(); //阻止向上冒泡
  4464. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4465. if (_buttonnumber < 2) {
  4466. //如果是click事件的处理
  4467. if (event.type == "click") {
  4468. //如果元素在mousemove事件中没有移动则出发click事件
  4469. if (!U.MD.D.I.IsDrag) {
  4470. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4471. U.alert("请先登录您的账号!");
  4472. setTimeout(() => {
  4473. U.MD.U.L.login();
  4474. }, 2000);
  4475. } else {
  4476. //打开应用处理
  4477. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4478. }
  4479. }
  4480. }
  4481. //如果是mouse事件的处理
  4482. else {
  4483. if (US.Config.type == '1') {
  4484. //拖动处理,添加拖动和拖动结束事件
  4485. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4486. }
  4487. }
  4488. U.MD.D.I.IsDrag = false;
  4489. }
  4490. }
  4491. /**
  4492. * 拖动的处理
  4493. *
  4494. */
  4495. U.MD.D.iconMove = function () {
  4496. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4497. U.MD.D.I.IsDrag = true;
  4498. }
  4499. /**
  4500. * 拖动结束后,这里是定位处理,以网状的形式定位
  4501. *
  4502. * @param {element} 拖动的元素
  4503. * @return {object} 命名空间
  4504. */
  4505. U.MD.D.iconUp = function (el) {
  4506. var _top = 15,
  4507. _left = 20,
  4508. _margin,
  4509. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4510. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4511. if (_positioninfo["OT"] > 15) {
  4512. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4513. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4514. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4515. }
  4516. if (_positioninfo["OL"] > 20) {
  4517. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4518. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4519. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4520. }
  4521. //while循环判断么一个重叠的元素
  4522. do {
  4523. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4524. _top = _positioninfo[0] + 95; //得到定位后的top
  4525. _left = _positioninfo[1]; //得到定位后的left
  4526. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4527. }
  4528. /**
  4529. * 判断拖动后图标是否重叠
  4530. *
  4531. * @param {element} 拖动的元素
  4532. * @param {element} 桌面所有的元素
  4533. * @param {array} 拖动元素的位置
  4534. ----------[0] 上 top
  4535. ----------[1] 左 left
  4536. * @return {object} 命名空间
  4537. */
  4538. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4539. //循环所有的图标
  4540. for (var i = 0; i < childs.length; i++) {
  4541. //判断有没有和该图标诶子重叠的元素
  4542. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4543. return childs[i]; //如果有返回
  4544. }
  4545. }
  4546. }
  4547. //#endregion
  4548. //#endregion
  4549. //#region 桌面应用
  4550. /**
  4551. * 打开应用
  4552. *
  4553. * @param {string} 类型
  4554. -----------------Disk 网盘系统
  4555. -----------------PDisk 学习系统网盘
  4556. -----------------Poto 图片
  4557. -----------------Video 视频
  4558. -----------------Music 音乐
  4559. -----------------Word word
  4560. -----------------Excel excel
  4561. -----------------Txt 记事本
  4562. -----------------PB 学习系统
  4563. -----------------Blog 朋友圈系统
  4564. -----------------FTP ftp系统
  4565. -----------------Group 好友群
  4566. -----------------SY 首页系统
  4567. -----------------Set 个人设置
  4568. -----------------XSet 系统设置
  4569. -----------------App 我们所有的app
  4570. -----------------BC c.1473.cn 平台
  4571. -----------------CWeb d.1473.cn 变成平台
  4572. -----------------其他的外联系统 我们统一用iframe打开
  4573. * @param {array} 类型
  4574. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4575. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4576. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4577. 如果第一个参数为其他,则无第二个参数
  4578. * @returns {array}
  4579. */
  4580. window.addEventListener('message', function (e) { // 监听 message 事件
  4581. // alert(e.data.type);
  4582. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4583. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4584. //3是展示全部阶段 2学生 1老师 4专家
  4585. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4586. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4587. //3是展示全部阶段 2学生 1老师 4专家
  4588. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4589. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4590. //3是展示全部阶段 2学生 1老师 4专家
  4591. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4592. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4593. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4594. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4595. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4596. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4597. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4598. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4599. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4600. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4601. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4602. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4603. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4604. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4605. //3是展示全部阶段 2学生 1老师 4专家
  4606. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4607. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4608. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4609. U.MD.D.I.selectUser();
  4610. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4611. var _formel = document.getElementById("study");
  4612. U.UF.F.windowZooming(_formel);
  4613. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4614. var _formel = document.getElementById("studyDetail");
  4615. U.UF.F.windowZooming(_formel);
  4616. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4617. var _formel = document.getElementById("studyDetail");
  4618. U.UF.F.windowZooming(_formel);
  4619. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4620. var _formel = document.getElementById("studentStudy");
  4621. U.UF.F.windowZooming(_formel);
  4622. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4623. // var _formel = document.getElementById("study");
  4624. //如果最大化了,那么就把他缩小
  4625. // if (_formel.ismaximize) {
  4626. // return;
  4627. // }
  4628. // U.UF.F.windowZooming(_formel);
  4629. // U.UF.F.topWindow(_formel);
  4630. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4631. // var _formel = document.getElementById("studyDetail");
  4632. //如果最大化了,那么就把他缩小
  4633. // if (_formel.ismaximize) {
  4634. // return;
  4635. // }
  4636. // U.UF.F.windowZooming(_formel);
  4637. // U.UF.F.topWindow(_formel);
  4638. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4639. // var _formel = document.getElementById("studentStudy");
  4640. // if (_formel.ismaximize) {
  4641. // return;
  4642. // }
  4643. // U.UF.F.windowZooming(_formel);
  4644. // U.UF.F.topWindow(_formel);
  4645. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4646. var _formel = document.getElementById("study");
  4647. // if (_formel.ismaximize) {
  4648. // return;
  4649. // }
  4650. // U.UF.F.windowZooming(_formel);
  4651. U.UF.F.topWindow(_formel);
  4652. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4653. var _formel = document.getElementById("studentIndex");
  4654. U.UF.F.windowZooming(_formel);
  4655. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4656. var _formel = document.getElementById("studyDetailS");
  4657. U.UF.F.windowZooming(_formel);
  4658. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4659. var _formel = document.getElementById("studioIndex");
  4660. U.UF.F.windowZooming(_formel);
  4661. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4662. var _formel = document.getElementById("studyDetailStudio");
  4663. U.UF.F.windowZooming(_formel);
  4664. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4665. var _formel = document.getElementById("studyDetailStudio");
  4666. U.UF.F.windowZooming(_formel);
  4667. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4668. var _formel = document.getElementById("studyDetailNT");
  4669. U.UF.F.windowZooming(_formel);
  4670. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4671. var _formel = document.getElementById("studyDetailS");
  4672. U.UF.F.windowZooming(_formel);
  4673. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4674. var _formel = document.getElementById("studyDetailS");
  4675. U.UF.F.topWindow(_formel);
  4676. } else if (e.data.tools && e.data.tools == "1") {
  4677. // U.MD.D.I.openApplication("whiteboard")
  4678. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4679. } else if (e.data.tools && e.data.tools == "2") {
  4680. U.MD.D.I.openApplication("note")
  4681. } else if (e.data.tools && e.data.tools == "3") {
  4682. // U.MD.D.I.openApplication("mind")
  4683. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4684. } else if (e.data.tools && e.data.tools == "4") {
  4685. U.MD.D.I.openApplication("investigation")
  4686. } else if (e.data.tools && e.data.tools == "6") {
  4687. // U.MD.D.I.openApplication("doc")
  4688. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4689. } else if (e.data.tools && e.data.tools == "7") {
  4690. // U.MD.D.I.openApplication("mindNetwork")
  4691. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4692. } else if (e.data.tools && e.data.tools == "8") {
  4693. U.MD.D.I.openApplication("library")
  4694. } else if (e.data.tools && e.data.tools == "17") {
  4695. U.MD.D.I.openApplication("stuLibrary")
  4696. } else if (e.data.tools && e.data.tools == "18") {
  4697. U.MD.D.I.openApplication("train")
  4698. } else if (e.data.tools && e.data.tools == "21") {
  4699. U.MD.D.I.openApplication("program")
  4700. } else if (e.data.tools && e.data.tools == "22") {
  4701. U.MD.D.I.openApplication("AIprogram2")
  4702. } else if (e.data.tools && e.data.tools == "23") {
  4703. U.MD.D.I.openApplication("Pythonprogram")
  4704. } else if (e.data.tools && e.data.tools == "24") {
  4705. U.MD.D.I.openApplication("AIprogram")
  4706. } else if (e.data.tools && e.data.tools == "25") {
  4707. U.MD.D.I.openApplication("sys")
  4708. } else if (e.data.tools && e.data.tools == "26") {
  4709. // U.MD.D.I.openApplication("courseDesign")
  4710. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4711. } else if (e.data.tools && e.data.tools == "31") {
  4712. U.MD.D.I.openApplication("netWorkPanel")
  4713. } else if (e.data.tools && e.data.tools == "32") {
  4714. U.MD.D.I.openApplication("codeEdit")
  4715. } else if (e.data.tools && e.data.tools == "57") {
  4716. U.MD.D.I.openApplication("CocoPi")
  4717. } else if (e.data.tools && e.data.tools == "63") {
  4718. U.MD.D.I.openApplication("Wood")
  4719. } else if (e.data.tools && e.data.tools == "58") {
  4720. U.MD.D.I.openApplication("car")
  4721. } else if (e.data.tools && e.data.tools == "59") {
  4722. U.MD.D.I.openApplication("lineSearch")
  4723. } else if (e.data.tools && e.data.tools == "60") {
  4724. U.MD.D.I.openApplication("deepLearning")
  4725. } else if (e.data.tools && e.data.tools == "61") {
  4726. U.MD.D.I.openApplication("allHistory")
  4727. } else if (e.data.tools && e.data.tools == "28") {
  4728. U.MD.D.I.openApplication("translation")
  4729. } else if (e.data.tools && e.data.tools == "37") {
  4730. U.MD.D.I.openApplication("mohe")
  4731. } else if (e.data.tools && e.data.tools == "38") {
  4732. U.MD.D.I.openApplication("24game")
  4733. } else if (e.data.tools && e.data.tools == "39") {
  4734. U.MD.D.I.openApplication("GeoGebra")
  4735. } else if (e.data.tools && e.data.tools == "43") {
  4736. U.MD.D.I.openApplication("studentEvaluate")
  4737. } else if (e.data.tools && e.data.tools == "44") {
  4738. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4739. } else if (e.data.tools && e.data.tools == "46") {
  4740. U.MD.D.I.openApplication("project")
  4741. } else if (e.data.tools && e.data.tools == "71") {
  4742. U.MD.D.I.openApplication("aigptCourse")
  4743. } else if (e.data.tools && e.data.tools == "1s") {
  4744. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4745. } else if (e.data.tools && e.data.tools == "3s") {
  4746. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4747. } else if (e.data.tools && e.data.tools == "6s") {
  4748. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4749. } else if (e.data.tools && e.data.tools == "1studio") {
  4750. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4751. } else if (e.data.tools && e.data.tools == "3studio") {
  4752. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4753. } else if (e.data.tools && e.data.tools == "6studio") {
  4754. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4755. } else if (e.data.tools && e.data.tools == "3y") {
  4756. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4757. } else if (e.data.tools && e.data.tools == "1y") {
  4758. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4759. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4760. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4761. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4762. U.MD.D.I.openApplication("AIAnalyse")
  4763. } else if (e.data.tools && e.data.tools == "1teacher") {
  4764. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4765. } else if (e.data.tools && e.data.tools == "3teacher") {
  4766. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4767. } else if (e.data.tools && e.data.tools == "7teacher") {
  4768. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4769. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4770. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4771. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4772. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4773. } else if (e.data.tools && e.data.tools == "1E") {
  4774. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4775. } else if (e.data.tools && e.data.tools == "3E") {
  4776. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4777. } else if (e.data.tools && e.data.tools == "57y") {
  4778. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4779. } else if (e.data.tools && e.data.tools == "57u") {
  4780. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4781. } else if (e.data.tools && e.data.tools == "57teacher") {
  4782. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4783. } else if (e.data.tools && e.data.tools == "64") {
  4784. U.MD.D.I.openApplication("AIChat")
  4785. } else if (e.data.tools && e.data.tools == "66") {
  4786. U.MD.D.I.openApplication("formulaEdi")
  4787. } else if (e.data.tools && e.data.tools == "67") {
  4788. U.MD.D.I.openApplication("molStr")
  4789. } else if (e.data.tools && e.data.tools == "68") {
  4790. U.MD.D.I.openApplication("timeAxis")
  4791. } else if (e.data.tools && e.data.tools == "openCourse") {
  4792. let _data = {
  4793. typea: e.data.typea || '',
  4794. typeb: e.data.typeb || '',
  4795. typed: e.data.typed || '',
  4796. }
  4797. U.MD.D.I.openInApplication("index", _data)
  4798. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4799. let _data = {
  4800. classid: e.data.classid || '',
  4801. }
  4802. U.MD.D.I.openInApplication("dataClass", _data)
  4803. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4804. let _data = {
  4805. cid: e.data.cid || '',
  4806. gid: e.data.gid || '',
  4807. }
  4808. U.MD.D.I.openInApplication("opencCscl", _data)
  4809. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4810. U.MD.D.I.openApplication("dataBoardTest")
  4811. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4812. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4813. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4814. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4815. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4816. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4817. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4818. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4819. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4820. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4821. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4822. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4823. }else if (e.data.tools && e.data.tools == "loginSz") {
  4824. U.MD.D.I.openInApplication("loginSz")
  4825. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4826. if($('#classroom_observation_board')[0]){
  4827. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4828. }
  4829. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4830. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4831. if($('#classroom_observation_ob_comment')[0]){
  4832. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4833. }
  4834. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4835. }else if (e.data.tools && e.data.tools == "logout"){
  4836. U.MD.U.LO.logoutSystem()
  4837. }else if (e.data.tools && e.data.tools == "getLogin"){
  4838. let _iframe = $('#UI_Login')[0];
  4839. if (_iframe) {
  4840. var userInfo = US.userInfo;
  4841. var type = 2
  4842. if(userInfo && userInfo.userid){
  4843. type = 1
  4844. }
  4845. _contentWindow = _iframe.contentWindow;
  4846. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4847. }
  4848. }
  4849. });
  4850. U.MD.D.I.selectUser = function () {
  4851. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4852. if (res.value[0].length > 0) {
  4853. US.userInfo = res.value[0][0];
  4854. $(".userName")[0].innerHTML = US.userInfo.username;
  4855. }
  4856. }, [], { "type": "GET", "withCredentials": true });
  4857. }
  4858. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4859. var _userinfo = US.userInfo, //登录用户信息
  4860. _userid = US.userInfo.userid, //登录用户id
  4861. _oid = _userinfo.organizeid,
  4862. _type = US.userInfo.type,
  4863. _org = US.userInfo.org,
  4864. _role = US.userInfo.role,
  4865. _classId = US.userInfo.classid;
  4866. if (_type == 4) {
  4867. tType = 4
  4868. }
  4869. switch (str) {
  4870. case "studyDetailNT": //无终端模式
  4871. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4872. setTimeout(() => {
  4873. U.MD.U.L.login();
  4874. }, 2000);
  4875. } else {
  4876. _formdiv = new U.UF.UI.form(
  4877. "课程详情",
  4878. $$("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 }), {
  4879. "id": "studyDetailNT",
  4880. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4881. "onresize": function () { }
  4882. }, {
  4883. closecallback: function () { }
  4884. }, { "style": { "height": "36px" } }).form; //创建窗体
  4885. _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); } }
  4886. break;
  4887. }
  4888. case "studyDetail":
  4889. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4890. setTimeout(() => {
  4891. U.MD.U.L.login();
  4892. }, 2000);
  4893. } else {
  4894. _formdiv = new U.UF.UI.form(
  4895. "课程详情",
  4896. $$("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 }), {
  4897. "id": "studyDetail",
  4898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4899. "onresize": function () { }
  4900. }, {
  4901. closecallback: function () { }
  4902. }, { "style": { "height": "36px" } }).form; //创建窗体
  4903. _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); } }
  4904. break;
  4905. }
  4906. case "studyDetailTrain":
  4907. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4908. setTimeout(() => {
  4909. U.MD.U.L.login();
  4910. }, 2000);
  4911. } else {
  4912. _formdiv = new U.UF.UI.form(
  4913. "培训详情",
  4914. $$("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 }), {
  4915. "id": "studyDetailTrain",
  4916. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4917. "onresize": function () { }
  4918. }, {
  4919. closecallback: function () { }
  4920. }, { "style": { "height": "36px" } }).form; //创建窗体
  4921. _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); } }
  4922. break;
  4923. }
  4924. case "studyDetailS":
  4925. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4926. setTimeout(() => {
  4927. U.MD.U.L.login();
  4928. }, 2000);
  4929. } else {
  4930. _formdiv = new U.UF.UI.form(
  4931. "项目详情",
  4932. $$("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 }), {
  4933. "id": "studyDetailS",
  4934. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4935. "onresize": function () { }
  4936. }, {
  4937. closecallback: function () { }
  4938. }, { "style": { "height": "36px" } }).form; //创建窗体
  4939. _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); } }
  4940. break;
  4941. }
  4942. case "studyDetailStudio":
  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-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4951. "id": "studyDetailStudio",
  4952. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4953. "onresize": function () { }
  4954. }, {
  4955. closecallback: function () { }
  4956. }, { "style": { "height": "36px" } }).form; //创建窗体
  4957. _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); } }
  4958. break;
  4959. }
  4960. case "studyDetailS5":
  4961. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4962. setTimeout(() => {
  4963. U.MD.U.L.login();
  4964. }, 2000);
  4965. } else {
  4966. _formdiv = new U.UF.UI.form(
  4967. "项目详情",
  4968. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4969. "id": "studyDetailS",
  4970. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4971. "onresize": function () { }
  4972. }, {
  4973. closecallback: function () { }
  4974. }, { "style": { "height": "36px" } }).form; //创建窗体
  4975. _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); } }
  4976. break;
  4977. }
  4978. case "studyDetailGM":
  4979. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4980. setTimeout(() => {
  4981. U.MD.U.L.login();
  4982. }, 2000);
  4983. } else {
  4984. _formdiv = new U.UF.UI.form(
  4985. "课程详情",
  4986. $$("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 }), {
  4987. "id": "studyDetail",
  4988. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4989. "onresize": function () { }
  4990. }, {
  4991. closecallback: function () { }
  4992. }, { "style": { "height": "36px" } }).form; //创建窗体
  4993. _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); } }
  4994. break;
  4995. }
  4996. case "hanUrl":
  4997. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4998. setTimeout(() => {
  4999. U.MD.U.L.login();
  5000. }, 2000);
  5001. } else {
  5002. _formdiv = new U.UF.UI.form(
  5003. "汉字宫",
  5004. $$("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" }), {
  5005. "id": "hanUrl",
  5006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5007. "onresize": function () { }
  5008. }, {
  5009. closecallback: function () { }
  5010. }, { "style": { "height": "36px" } }).form; //创建窗体
  5011. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5012. break;
  5013. }
  5014. case "index":
  5015. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5016. setTimeout(() => {
  5017. U.MD.U.L.login();
  5018. }, 2000);
  5019. } else {
  5020. _formdiv = new U.UF.UI.form(
  5021. "课程中心",
  5022. $$("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 }), {
  5023. "id": "study",
  5024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5025. "onresize": function () { }
  5026. }, {
  5027. closecallback: function () { }
  5028. }, { "style": { "height": "36px" } }).form; //创建窗体
  5029. _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); } }
  5030. break;
  5031. }
  5032. case "dataClass":
  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/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5041. "id": "dataClass",
  5042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5043. "onresize": function () { }
  5044. }, {
  5045. closecallback: function () { }
  5046. }, { "style": { "height": "36px" } }).form; //创建窗体
  5047. _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); } }
  5048. break;
  5049. }
  5050. case "opencCscl":
  5051. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5052. setTimeout(() => {
  5053. U.MD.U.L.login();
  5054. }, 2000);
  5055. } else {
  5056. _formdiv = new U.UF.UI.form(
  5057. "协同建构",
  5058. $$("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 }), {
  5059. "id": "futureClass",
  5060. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5061. "onresize": function () { }
  5062. }, {
  5063. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5064. }, { "style": { "height": "36px" } }).form; //创建窗体
  5065. _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); } }
  5066. break;
  5067. }
  5068. case "openCourseUpdate":
  5069. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5070. setTimeout(() => {
  5071. U.MD.U.L.login();
  5072. }, 2000);
  5073. } else {
  5074. _formdiv = new U.UF.UI.form(
  5075. "课程管理",
  5076. $$("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 }), {
  5077. "id": "openCourseUpdate",
  5078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5079. "onresize": function () { }
  5080. }, {
  5081. closecallback: function () { }
  5082. }, { "style": { "height": "36px" } }).form; //创建窗体
  5083. break;
  5084. }
  5085. case "openNewCourseUpdate":
  5086. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5087. setTimeout(() => {
  5088. U.MD.U.L.login();
  5089. }, 2000);
  5090. } else {
  5091. _formdiv = new U.UF.UI.form(
  5092. "课程管理",
  5093. $$("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 }), {
  5094. "id": "openCourseUpdate",
  5095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5096. "onresize": function () { }
  5097. }, {
  5098. closecallback: function () { }
  5099. }, { "style": { "height": "36px" } }).form; //创建窗体
  5100. break;
  5101. }
  5102. case "openCourseEUpdate":
  5103. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5104. setTimeout(() => {
  5105. U.MD.U.L.login();
  5106. }, 2000);
  5107. } else {
  5108. _formdiv = new U.UF.UI.form(
  5109. "课程管理",
  5110. $$("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 }), {
  5111. "id": "openCourseUpdate",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. break;
  5118. }
  5119. case "openCourseAiUpdate":
  5120. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5121. setTimeout(() => {
  5122. U.MD.U.L.login();
  5123. }, 2000);
  5124. } else {
  5125. _formdiv = new U.UF.UI.form(
  5126. "课程管理",
  5127. $$("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 }), {
  5128. "id": "openCourseUpdate",
  5129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5130. "onresize": function () { }
  5131. }, {
  5132. closecallback: function () { }
  5133. }, { "style": { "height": "36px" } }).form; //创建窗体
  5134. break;
  5135. }
  5136. case "openCourseAiUpdate2":
  5137. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5138. setTimeout(() => {
  5139. U.MD.U.L.login();
  5140. }, 2000);
  5141. } else {
  5142. _formdiv = new U.UF.UI.form(
  5143. "课程管理",
  5144. $$("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/#/addCourseEAi?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5145. "id": "openCourseUpdate",
  5146. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5147. "onresize": function () { }
  5148. }, {
  5149. closecallback: function () { }
  5150. }, { "style": { "height": "36px" } }).form; //创建窗体
  5151. break;
  5152. }
  5153. case "openCourseNewUpdate":
  5154. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5155. setTimeout(() => {
  5156. U.MD.U.L.login();
  5157. }, 2000);
  5158. } else {
  5159. _formdiv = new U.UF.UI.form(
  5160. "课程管理",
  5161. $$("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 }), {
  5162. "id": "openCourseUpdate",
  5163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5164. "onresize": function () { }
  5165. }, {
  5166. closecallback: function () { }
  5167. }, { "style": { "height": "36px" } }).form; //创建窗体
  5168. break;
  5169. }
  5170. case "inviteLoginSz":
  5171. _formdiv = new U.UF.UI.form(
  5172. "随机码登录",
  5173. $$("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 }), {
  5174. "id": "loginSz",
  5175. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. break;
  5181. case "loginSz":
  5182. _formdiv = new U.UF.UI.form(
  5183. "教师登录",
  5184. $$("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" }), {
  5185. "id": "loginSz",
  5186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5187. "onresize": function () { }
  5188. }, {
  5189. closecallback: function () { }
  5190. }, { "style": { "height": "36px" } }).form; //创建窗体
  5191. break;
  5192. case "teacher":
  5193. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5194. setTimeout(() => {
  5195. U.MD.U.L.login();
  5196. }, 2000);
  5197. } else {
  5198. _formdiv = new U.UF.UI.form(
  5199. "教师管理",
  5200. $$("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 }), {
  5201. "id": "teacher",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. break;
  5208. }
  5209. case "dataBoardSZArea":
  5210. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5211. setTimeout(() => {
  5212. U.MD.U.L.login();
  5213. }, 2000);
  5214. } else {
  5215. _formdiv = new U.UF.UI.form(
  5216. "综合数据看板",
  5217. $$("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 }), {
  5218. "id": "dataBoardSZArea",
  5219. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5220. "onresize": function () { }
  5221. }, {
  5222. closecallback: function () { }
  5223. }, { "style": { "height": "36px" } }).form; //创建窗体
  5224. break;
  5225. }
  5226. case "dataBoardSZCity":
  5227. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5228. setTimeout(() => {
  5229. U.MD.U.L.login();
  5230. }, 2000);
  5231. } else {
  5232. _formdiv = new U.UF.UI.form(
  5233. "综合数据看板",
  5234. $$("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 }), {
  5235. "id": "dataBoardSZCity",
  5236. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. break;
  5242. }
  5243. case "classroom_observation_board":
  5244. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5245. setTimeout(() => {
  5246. U.MD.U.L.login();
  5247. }, 2000);
  5248. } else {
  5249. _formdiv = new U.UF.UI.form(
  5250. "课堂观察",
  5251. $$("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/#/classroom_observation_board?tid="+data }), {
  5252. "id": "classroom_observation_board",
  5253. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5254. "onresize": function () { }
  5255. }, {
  5256. closecallback: function () { }
  5257. }, { "style": { "height": "36px" } }).form; //创建窗体
  5258. break;
  5259. }
  5260. case "classroom_observation_ob_comment":
  5261. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5262. setTimeout(() => {
  5263. U.MD.U.L.login();
  5264. }, 2000);
  5265. } else {
  5266. _formdiv = new U.UF.UI.form(
  5267. "课堂审核",
  5268. $$("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/#/classroom_observation_ob_comment?tid="+data }), {
  5269. "id": "classroom_observation_ob_comment",
  5270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5271. "onresize": function () { }
  5272. }, {
  5273. closecallback: function () { }
  5274. }, { "style": { "height": "36px" } }).form; //创建窗体
  5275. break;
  5276. }
  5277. }
  5278. }
  5279. U.MD.D.I.openApplication = function (str, obj, info) {
  5280. obj = obj || {};
  5281. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5282. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5283. _userinfo = US.userInfo, //登录用户信息
  5284. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5285. _oid = obj.organizeid || _userinfo.organizeid,
  5286. _type = US.userInfo.type,
  5287. _org = US.userInfo.org,
  5288. _role = US.userInfo.role,
  5289. _classId = US.userInfo.classid,
  5290. _TscreenType = 1
  5291. _screenType = 2,
  5292. _SscreenType = 3;
  5293. let iframeBool = true
  5294. if(U.UF.UI.form.allForm[str]){
  5295. iframeBool = false
  5296. }
  5297. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5298. return;
  5299. }
  5300. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5301. switch (str) {
  5302. case "studnetProject": //好友打开
  5303. _formdiv = new U.UF.UI.form(
  5304. "我的项目",
  5305. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5306. "id": "studnetProject",
  5307. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5308. "onresize": function () { }
  5309. }, {
  5310. closecallback: function () { }
  5311. }, { "style": { "height": "36px" } }).form; //创建窗体
  5312. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5313. break;
  5314. case "studentEvaluate": //好友打开
  5315. _formdiv = new U.UF.UI.form(
  5316. "我的评价",
  5317. $$("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 }), {
  5318. "id": "studentEvaluate",
  5319. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5320. "onresize": function () { }
  5321. }, {
  5322. closecallback: function () { }
  5323. }, { "style": { "height": "36px" } }).form; //创建窗体
  5324. _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); } }
  5325. break;
  5326. case "my":
  5327. _formdiv = new U.UF.UI.form(
  5328. "我的资料",
  5329. $$("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 }), {
  5330. "id": "my",
  5331. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. _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); } }
  5337. break;
  5338. case "program":
  5339. _formdiv = new U.UF.UI.form(
  5340. "编程平台",
  5341. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5342. "id": "program",
  5343. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5344. "onresize": function () { }
  5345. }, {
  5346. closecallback: function () { }
  5347. }, { "style": { "height": "36px" } }).form; //创建窗体
  5348. _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); } }
  5349. break;
  5350. case "library":
  5351. _formdiv = new U.UF.UI.form(
  5352. "素材库",
  5353. $$("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 }), {
  5354. "id": "library",
  5355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5356. "onresize": function () { }
  5357. }, {
  5358. closecallback: function () { }
  5359. }, { "style": { "height": "36px" } }).form; //创建窗体
  5360. _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); } }
  5361. break;
  5362. case "whiteboard":
  5363. _formdiv = new U.UF.UI.form(
  5364. "电子白板",
  5365. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5366. "id": "whiteboard",
  5367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5368. "onresize": function () { }
  5369. }, {
  5370. closecallback: function () { }
  5371. }, { "style": { "height": "36px" } }).form; //创建窗体
  5372. _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); } }
  5373. break;
  5374. case "investigation":
  5375. _formdiv = new U.UF.UI.form(
  5376. "问卷调查",
  5377. $$("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 }), {
  5378. "id": "investigation",
  5379. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5380. "onresize": function () { }
  5381. }, {
  5382. closecallback: function () { }
  5383. }, { "style": { "height": "36px" } }).form; //创建窗体
  5384. _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); } }
  5385. break;
  5386. case "note":
  5387. _formdiv = new U.UF.UI.form(
  5388. "便签分类",
  5389. $$("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 }), {
  5390. "id": "note",
  5391. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _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); } }
  5397. break;
  5398. // case "score":
  5399. // _formdiv = new U.UF.UI.form(
  5400. // "量规评分",
  5401. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5402. // "id": "score",
  5403. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5404. // "onresize": function() {}
  5405. // }, {
  5406. // closecallback: function() {}
  5407. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5408. // _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); } }
  5409. // break;
  5410. case "mind":
  5411. _formdiv = new U.UF.UI.form(
  5412. "思维导图",
  5413. $$("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"
  5414. "id": "mind",
  5415. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5416. "onresize": function () { }
  5417. }, {
  5418. closecallback: function () { }
  5419. }, { "style": { "height": "36px" } }).form; //创建窗体
  5420. _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); } }
  5421. break;
  5422. case "doc":
  5423. // U.MD.D.I.isRoom();
  5424. _formdiv = new U.UF.UI.form(
  5425. "协同文档",
  5426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5427. "id": "doc",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5434. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5435. // })
  5436. _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); } }
  5437. break;
  5438. case "studentStudy":
  5439. _formdiv = new U.UF.UI.form(
  5440. "课程中心",
  5441. $$("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
  5442. "id": "studentStudy",
  5443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5444. "onresize": function () { }
  5445. }, {
  5446. closecallback: function () { }
  5447. }, { "style": { "height": "36px" } }).form; //创建窗体
  5448. _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); } }
  5449. break;
  5450. case "train": //好友打开
  5451. _formdiv = new U.UF.UI.form(
  5452. "训练平台",
  5453. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5454. "id": "train",
  5455. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5456. "onresize": function () { }
  5457. }, {
  5458. closecallback: function () { }
  5459. }, { "style": { "height": "36px" } }).form; //创建窗体
  5460. _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); } }
  5461. break;
  5462. case "mindNetwork": //好友打开
  5463. _formdiv = new U.UF.UI.form(
  5464. "思维网格",
  5465. $$("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 }), {
  5466. "id": "mindNetwork",
  5467. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5468. "onresize": function () { }
  5469. }, {
  5470. closecallback: function () { }
  5471. }, { "style": { "height": "36px" } }).form; //创建窗体
  5472. _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); } }
  5473. break;
  5474. case "studentClassRoom": //好友打开
  5475. _formdiv = new U.UF.UI.form(
  5476. "实时课堂",
  5477. $$("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 }), {
  5478. "id": "studentClassRoom",
  5479. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5480. "onresize": function () { }
  5481. }, {
  5482. closecallback: function () { }
  5483. }, { "style": { "height": "36px" } }).form; //创建窗体
  5484. _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); } }
  5485. setTimeout(() => {
  5486. U.UF.F.windowZooming(_formdiv)
  5487. }, 0);
  5488. break;
  5489. }
  5490. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5491. switch (str) {
  5492. case "studnetProject": //好友打开
  5493. _formdiv = new U.UF.UI.form(
  5494. "我的项目",
  5495. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5496. "id": "studnetProject",
  5497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5498. "onresize": function () { }
  5499. }, {
  5500. closecallback: function () { }
  5501. }, { "style": { "height": "36px" } }).form; //创建窗体
  5502. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5503. break;
  5504. case "studentEvaluate": //好友打开
  5505. _formdiv = new U.UF.UI.form(
  5506. "我的评价",
  5507. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5508. "id": "studentEvaluate",
  5509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5510. "onresize": function () { }
  5511. }, {
  5512. closecallback: function () { }
  5513. }, { "style": { "height": "36px" } }).form; //创建窗体
  5514. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5515. break;
  5516. case "my":
  5517. _formdiv = new U.UF.UI.form(
  5518. "我的资料",
  5519. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5520. "id": "my",
  5521. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5522. "onresize": function () { }
  5523. }, {
  5524. closecallback: function () { }
  5525. }, { "style": { "height": "36px" } }).form; //创建窗体
  5526. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5527. break;
  5528. case "program":
  5529. _formdiv = new U.UF.UI.form(
  5530. "编程平台",
  5531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5532. "id": "program",
  5533. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5534. "onresize": function () { }
  5535. }, {
  5536. closecallback: function () { }
  5537. }, { "style": { "height": "36px" } }).form; //创建窗体
  5538. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5539. break;
  5540. case "library":
  5541. _formdiv = new U.UF.UI.form(
  5542. "素材库",
  5543. $$("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 }), {
  5544. "id": "library",
  5545. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5546. "onresize": function () { }
  5547. }, {
  5548. closecallback: function () { }
  5549. }, { "style": { "height": "36px" } }).form; //创建窗体
  5550. _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); } }
  5551. break;
  5552. case "whiteboard":
  5553. _formdiv = new U.UF.UI.form(
  5554. "电子白板",
  5555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5556. "id": "whiteboard",
  5557. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5558. "onresize": function () { }
  5559. }, {
  5560. closecallback: function () { }
  5561. }, { "style": { "height": "36px" } }).form; //创建窗体
  5562. _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); } }
  5563. break;
  5564. case "investigation":
  5565. _formdiv = new U.UF.UI.form(
  5566. "问卷调查",
  5567. $$("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 }), {
  5568. "id": "investigation",
  5569. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5570. "onresize": function () { }
  5571. }, {
  5572. closecallback: function () { }
  5573. }, { "style": { "height": "36px" } }).form; //创建窗体
  5574. _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); } }
  5575. break;
  5576. case "note":
  5577. _formdiv = new U.UF.UI.form(
  5578. "便签分类",
  5579. $$("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 }), {
  5580. "id": "note",
  5581. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5582. "onresize": function () { }
  5583. }, {
  5584. closecallback: function () { }
  5585. }, { "style": { "height": "36px" } }).form; //创建窗体
  5586. _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); } }
  5587. break;
  5588. // case "score":
  5589. // _formdiv = new U.UF.UI.form(
  5590. // "量规评分",
  5591. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5592. // "id": "score",
  5593. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5594. // "onresize": function() {}
  5595. // }, {
  5596. // closecallback: function() {}
  5597. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5598. // _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); } }
  5599. // break;
  5600. case "mind":
  5601. _formdiv = new U.UF.UI.form(
  5602. "思维导图",
  5603. $$("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"
  5604. "id": "mind",
  5605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, { "style": { "height": "36px" } }).form; //创建窗体
  5610. _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); } }
  5611. break;
  5612. case "doc":
  5613. // U.MD.D.I.isRoom();
  5614. _formdiv = new U.UF.UI.form(
  5615. "协同文档",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5617. "id": "doc",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5624. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5625. })
  5626. _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); } }
  5627. break;
  5628. case "train": //好友打开
  5629. _formdiv = new U.UF.UI.form(
  5630. "训练平台",
  5631. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5632. "id": "train",
  5633. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5634. "onresize": function () { }
  5635. }, {
  5636. closecallback: function () { }
  5637. }, { "style": { "height": "36px" } }).form; //创建窗体
  5638. _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); } }
  5639. break;
  5640. case "studentStudy":
  5641. _formdiv = new U.UF.UI.form(
  5642. "课程中心",
  5643. $$("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
  5644. "id": "studentStudy",
  5645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5646. "onresize": function () { }
  5647. }, {
  5648. closecallback: function () { }
  5649. }, { "style": { "height": "36px" } }).form; //创建窗体
  5650. _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); } }
  5651. break;
  5652. case "mindNetwork": //好友打开
  5653. _formdiv = new U.UF.UI.form(
  5654. "思维网格",
  5655. $$("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 }), {
  5656. "id": "mindNetwork",
  5657. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5658. "onresize": function () { }
  5659. }, {
  5660. closecallback: function () { }
  5661. }, { "style": { "height": "36px" } }).form; //创建窗体
  5662. _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); } }
  5663. break;
  5664. case "studentClassRoom": //好友打开
  5665. _formdiv = new U.UF.UI.form(
  5666. "实时课堂",
  5667. $$("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 }), {
  5668. "id": "studentClassRoom",
  5669. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5670. "onresize": function () { }
  5671. }, {
  5672. closecallback: function () { }
  5673. }, { "style": { "height": "36px" } }).form; //创建窗体
  5674. _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); } }
  5675. setTimeout(() => {
  5676. U.UF.F.windowZooming(_formdiv)
  5677. }, 0);
  5678. break;
  5679. }
  5680. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5681. //选择应用处理
  5682. switch (str) {
  5683. case "project": //好友打开
  5684. _formdiv = new U.UF.UI.form(
  5685. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5686. $$("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 }), {
  5687. "id": "project",
  5688. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5689. "onresize": function () { }
  5690. }, {
  5691. closecallback: function () { }
  5692. }, { "style": { "height": "36px" } }).form; //创建窗体
  5693. _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); } }
  5694. break;
  5695. case "student":
  5696. _formdiv = new U.UF.UI.form(
  5697. "学生管理",
  5698. $$("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 }), {
  5699. "id": "student",
  5700. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5701. "onresize": function () { }
  5702. }, {
  5703. closecallback: function () { }
  5704. }, { "style": { "height": "36px" } }).form; //创建窗体
  5705. _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); } }
  5706. break;
  5707. case "evaluate":
  5708. _formdiv = new U.UF.UI.form(
  5709. "学生评价",
  5710. $$("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 }), {
  5711. "id": "evaluate",
  5712. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. _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); } }
  5718. break;
  5719. case "sys":
  5720. _formdiv = new U.UF.UI.form(
  5721. "目标管理",
  5722. $$("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 }), {
  5723. "id": "sys",
  5724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5725. "onresize": function () { }
  5726. }, {
  5727. closecallback: function () { }
  5728. }, { "style": { "height": "36px" } }).form; //创建窗体
  5729. _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); } }
  5730. break;
  5731. case "courseDesign":
  5732. _formdiv = new U.UF.UI.form(
  5733. "项目设计",
  5734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5735. "id": "courseDesign",
  5736. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5737. "onresize": function () { }
  5738. }, {
  5739. closecallback: function () { }
  5740. }, { "style": { "height": "36px" } }).form; //创建窗体
  5741. _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); } }
  5742. break;
  5743. case "program":
  5744. _formdiv = new U.UF.UI.form(
  5745. "编程平台",
  5746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5747. "id": "program",
  5748. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5749. "onresize": function () { }
  5750. }, {
  5751. closecallback: function () { }
  5752. }, { "style": { "height": "36px" } }).form; //创建窗体
  5753. _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); } }
  5754. break;
  5755. case "class":
  5756. _formdiv = new U.UF.UI.form(
  5757. "班级管理",
  5758. $$("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 }), {
  5759. "id": "class",
  5760. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5761. "onresize": function () { }
  5762. }, {
  5763. closecallback: function () { }
  5764. }, { "style": { "height": "36px" } }).form; //创建窗体
  5765. _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); } }
  5766. break;
  5767. case "Grade":
  5768. _formdiv = new U.UF.UI.form(
  5769. "年级管理",
  5770. $$("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 }), {
  5771. "id": "Grade",
  5772. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5773. "onresize": function () { }
  5774. }, {
  5775. closecallback: function () { }
  5776. }, { "style": { "height": "36px" } }).form; //创建窗体
  5777. _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); } }
  5778. break;
  5779. case "teacherOffice":
  5780. _formdiv = new U.UF.UI.form(
  5781. "教研室",
  5782. $$("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 }), {
  5783. "id": "teacherOffice",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //创建窗体
  5789. _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); } }
  5790. break;
  5791. case "my":
  5792. _formdiv = new U.UF.UI.form(
  5793. "我的资料",
  5794. $$("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 }), {
  5795. "id": "my",
  5796. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //创建窗体
  5801. _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); } }
  5802. break;
  5803. case "notice":
  5804. _formdiv = new U.UF.UI.form(
  5805. "通知公告",
  5806. $$("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 }), {
  5807. "id": "notice",
  5808. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5809. "onresize": function () { }
  5810. }, {
  5811. closecallback: function () { }
  5812. }, { "style": { "height": "36px" } }).form; //创建窗体
  5813. _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); } }
  5814. break;
  5815. case "library":
  5816. _formdiv = new U.UF.UI.form(
  5817. "素材库",
  5818. $$("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 }), {
  5819. "id": "library",
  5820. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5821. "onresize": function () { }
  5822. }, {
  5823. closecallback: function () { }
  5824. }, { "style": { "height": "36px" } }).form; //创建窗体
  5825. _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); } }
  5826. break;
  5827. case "whiteboard":
  5828. _formdiv = new U.UF.UI.form(
  5829. "电子白板",
  5830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5831. "id": "whiteboard",
  5832. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5833. "onresize": function () { }
  5834. }, {
  5835. closecallback: function () { }
  5836. }, { "style": { "height": "36px" } }).form; //创建窗体
  5837. _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); } }
  5838. break;
  5839. case "investigation":
  5840. _formdiv = new U.UF.UI.form(
  5841. "问卷调查",
  5842. $$("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 }), {
  5843. "id": "investigation",
  5844. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5845. "onresize": function () { }
  5846. }, {
  5847. closecallback: function () { }
  5848. }, { "style": { "height": "36px" } }).form; //创建窗体
  5849. _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); } }
  5850. break;
  5851. case "note":
  5852. _formdiv = new U.UF.UI.form(
  5853. "便签分类",
  5854. $$("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 }), {
  5855. "id": "note",
  5856. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5857. "onresize": function () { }
  5858. }, {
  5859. closecallback: function () { }
  5860. }, { "style": { "height": "36px" } }).form; //创建窗体
  5861. _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); } }
  5862. break;
  5863. // case "score":
  5864. // _formdiv = new U.UF.UI.form(
  5865. // "量规评分",
  5866. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5867. // "id": "score",
  5868. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5869. // "onresize": function() {}
  5870. // }, {
  5871. // closecallback: function() {}
  5872. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5873. // _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); } }
  5874. // break;
  5875. case "mind":
  5876. _formdiv = new U.UF.UI.form(
  5877. "思维导图",
  5878. $$("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"
  5879. "id": "mind",
  5880. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5881. "onresize": function () { }
  5882. }, {
  5883. closecallback: function () { }
  5884. }, { "style": { "height": "36px" } }).form; //创建窗体
  5885. _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); } }
  5886. break;
  5887. case "doc":
  5888. // U.MD.D.I.isRoom();
  5889. _formdiv = new U.UF.UI.form(
  5890. "协同文档",
  5891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5892. "id": "doc",
  5893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5899. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5900. })
  5901. _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); } }
  5902. break;
  5903. case "study":
  5904. _formdiv = new U.UF.UI.form(
  5905. "课程中心",
  5906. $$("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
  5907. "id": "study",
  5908. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5909. "onresize": function () { }
  5910. }, {
  5911. closecallback: function () { }
  5912. }, { "style": { "height": "36px" } }).form; //创建窗体
  5913. _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); } }
  5914. break;
  5915. case "mindNetwork": //好友打开
  5916. _formdiv = new U.UF.UI.form(
  5917. "思维网格",
  5918. $$("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 }), {
  5919. "id": "mindNetwork",
  5920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5921. "onresize": function () { }
  5922. }, {
  5923. closecallback: function () { }
  5924. }, { "style": { "height": "36px" } }).form; //创建窗体
  5925. _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); } }
  5926. break;
  5927. case "train": //好友打开
  5928. _formdiv = new U.UF.UI.form(
  5929. "训练平台",
  5930. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5931. "id": "mindNetwork",
  5932. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5933. "onresize": function () { }
  5934. }, {
  5935. closecallback: function () { }
  5936. }, { "style": { "height": "36px" } }).form; //创建窗体
  5937. _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); } }
  5938. break;
  5939. case "teacherClassRoom": //好友打开
  5940. _formdiv = new U.UF.UI.form(
  5941. "实时课堂",
  5942. $$("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 }), {
  5943. "id": "teacherClassRoom",
  5944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5945. "onresize": function () { }
  5946. }, {
  5947. closecallback: function () { }
  5948. }, { "style": { "height": "36px" } }).form; //创建窗体
  5949. _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); } }
  5950. setTimeout(() => {
  5951. U.UF.F.windowZooming(_formdiv)
  5952. }, 0);
  5953. break;
  5954. }
  5955. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5956. switch (str) {
  5957. case "project": //好友打开
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程管理",
  5960. $$("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 }), {
  5961. "id": "project",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. _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); } }
  5968. break;
  5969. case "evaluate":
  5970. _formdiv = new U.UF.UI.form(
  5971. "学生评价",
  5972. $$("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 }), {
  5973. "id": "evaluate",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. _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); } }
  5980. break;
  5981. case "notice":
  5982. _formdiv = new U.UF.UI.form(
  5983. "通知公告",
  5984. $$("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 }), {
  5985. "id": "notice",
  5986. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5987. "onresize": function () { }
  5988. }, {
  5989. closecallback: function () { }
  5990. }, { "style": { "height": "36px" } }).form; //创建窗体
  5991. _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); } }
  5992. break;
  5993. case "stuLibrary":
  5994. _formdiv = new U.UF.UI.form(
  5995. "学习资料",
  5996. $$("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 }), {
  5997. "id": "stuLibrary",
  5998. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5999. "onresize": function () { }
  6000. }, {
  6001. closecallback: function () { }
  6002. }, { "style": { "height": "36px" } }).form; //创建窗体
  6003. _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); } }
  6004. break;
  6005. case "program":
  6006. _formdiv = new U.UF.UI.form(
  6007. "编程平台",
  6008. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6009. "id": "program",
  6010. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6011. "onresize": function () { }
  6012. }, {
  6013. closecallback: function () { }
  6014. }, { "style": { "height": "36px" } }).form; //创建窗体
  6015. _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); } }
  6016. break;
  6017. case "whiteboard":
  6018. _formdiv = new U.UF.UI.form(
  6019. "电子白板",
  6020. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6021. "id": "whiteboard",
  6022. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6023. "onresize": function () { }
  6024. }, {
  6025. closecallback: function () { }
  6026. }, { "style": { "height": "36px" } }).form; //创建窗体
  6027. _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); } }
  6028. break;
  6029. case "investigation":
  6030. _formdiv = new U.UF.UI.form(
  6031. "问卷调查",
  6032. $$("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 }), {
  6033. "id": "investigation",
  6034. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6035. "onresize": function () { }
  6036. }, {
  6037. closecallback: function () { }
  6038. }, { "style": { "height": "36px" } }).form; //创建窗体
  6039. _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); } }
  6040. break;
  6041. case "mind":
  6042. _formdiv = new U.UF.UI.form(
  6043. "思维导图",
  6044. $$("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"
  6045. "id": "mind",
  6046. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6047. "onresize": function () { }
  6048. }, {
  6049. closecallback: function () { }
  6050. }, { "style": { "height": "36px" } }).form; //创建窗体
  6051. _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); } }
  6052. break;
  6053. case "doc":
  6054. // U.MD.D.I.isRoom();
  6055. _formdiv = new U.UF.UI.form(
  6056. "协同文档",
  6057. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6058. "id": "doc",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6065. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6066. })
  6067. _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); } }
  6068. break;
  6069. case "study":
  6070. _formdiv = new U.UF.UI.form(
  6071. "课程中心",
  6072. $$("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
  6073. "id": "study",
  6074. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. _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); } }
  6080. break;
  6081. case "mindNetwork": //好友打开
  6082. _formdiv = new U.UF.UI.form(
  6083. "思维网格",
  6084. $$("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 }), {
  6085. "id": "mindNetwork",
  6086. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "train": //好友打开
  6094. _formdiv = new U.UF.UI.form(
  6095. "训练平台",
  6096. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6097. "id": "train",
  6098. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "sys":
  6106. _formdiv = new U.UF.UI.form(
  6107. "目标管理",
  6108. $$("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 }), {
  6109. "id": "sys",
  6110. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break;
  6117. case "courseDesign":
  6118. _formdiv = new U.UF.UI.form(
  6119. "项目设计",
  6120. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6121. "id": "courseDesign",
  6122. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. }
  6130. } else if (!_type) {
  6131. switch (str) {
  6132. case "my":
  6133. _formdiv = new U.UF.UI.form(
  6134. "我的资料",
  6135. $$("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 }), {
  6136. "id": "my",
  6137. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6143. break;
  6144. }
  6145. }
  6146. switch (str) {
  6147. // AIprogram2 AI体验 aihub.cocorobo.cn
  6148. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6149. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6150. case "formulaEdi": //公式编辑
  6151. _formdiv = new U.UF.UI.form(
  6152. "公式编辑",
  6153. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6154. "id": "formulaEdi",
  6155. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6156. "onresize": function () { }
  6157. }, {
  6158. closecallback: function () { }
  6159. }, { "style": { "height": "36px" } }).form; //创建窗体
  6160. _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); } }
  6161. break;
  6162. case "molStr": //分子结构
  6163. _formdiv = new U.UF.UI.form(
  6164. "分子结构",
  6165. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6166. "id": "molStr",
  6167. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6168. "onresize": function () { }
  6169. }, {
  6170. closecallback: function () { }
  6171. }, { "style": { "height": "36px" } }).form; //创建窗体
  6172. _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); } }
  6173. break;
  6174. case "timeAxis": //时间轴
  6175. _formdiv = new U.UF.UI.form(
  6176. "时间轴",
  6177. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6178. "id": "timeAxis",
  6179. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6180. "onresize": function () { }
  6181. }, {
  6182. closecallback: function () { }
  6183. }, { "style": { "height": "36px" } }).form; //创建窗体
  6184. _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); } }
  6185. break;
  6186. case "AIprogram2": //AI体验
  6187. _formdiv = new U.UF.UI.form(
  6188. "AI体验",
  6189. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6190. "id": "AIprogram2",
  6191. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6192. "onresize": function () { }
  6193. }, {
  6194. closecallback: function () { }
  6195. }, { "style": { "height": "36px" } }).form; //创建窗体
  6196. _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); } }
  6197. break;
  6198. case "Pythonprogram": //python编程
  6199. _formdiv = new U.UF.UI.form(
  6200. "Python编程",
  6201. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6202. "id": "Pythonprogram",
  6203. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6204. "onresize": function () { }
  6205. }, {
  6206. closecallback: function () { }
  6207. }, { "style": { "height": "36px" } }).form; //创建窗体
  6208. _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); } }
  6209. break;
  6210. case "AIprogram": //ai编程
  6211. _formdiv = new U.UF.UI.form(
  6212. "AI编程平台",
  6213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6214. "id": "AIprogram",
  6215. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6216. "onresize": function () { }
  6217. }, {
  6218. closecallback: function () { }
  6219. }, { "style": { "height": "36px" } }).form; //创建窗体
  6220. _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); } }
  6221. break;
  6222. case "CocoPi": //CocoPi
  6223. _formdiv = new U.UF.UI.form(
  6224. "CocoPi",
  6225. $$("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" }), {
  6226. "id": "CocoPi",
  6227. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6228. "onresize": function () { }
  6229. }, {
  6230. closecallback: function () { }
  6231. }, { "style": { "height": "36px" } }).form; //创建窗体
  6232. _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); } }
  6233. break;
  6234. case "Wood": //Wood
  6235. _formdiv = new U.UF.UI.form(
  6236. "海龟编程",
  6237. $$("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/" }), {
  6238. "id": "Wood",
  6239. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6240. "onresize": function () { }
  6241. }, {
  6242. closecallback: function () { }
  6243. }, { "style": { "height": "36px" } }).form; //创建窗体
  6244. _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); } }
  6245. break;
  6246. case "car": //模拟驾驶
  6247. _formdiv = new U.UF.UI.form(
  6248. "模拟驾驶",
  6249. $$("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/" }), {
  6250. "id": "car",
  6251. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6252. "onresize": function () { }
  6253. }, {
  6254. closecallback: function () { }
  6255. }, { "style": { "height": "36px" } }).form; //创建窗体
  6256. _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); } }
  6257. break;
  6258. case "lineSearch": //路径搜索
  6259. _formdiv = new U.UF.UI.form(
  6260. "路径搜索",
  6261. $$("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/" }), {
  6262. "id": "lineSearch",
  6263. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6264. "onresize": function () { }
  6265. }, {
  6266. closecallback: function () { }
  6267. }, { "style": { "height": "36px" } }).form; //创建窗体
  6268. _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); } }
  6269. break;
  6270. case "deepLearning": //深度学习
  6271. _formdiv = new U.UF.UI.form(
  6272. "深度学习",
  6273. $$("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/#" }), {
  6274. "id": "deepLearning",
  6275. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6276. "onresize": function () { }
  6277. }, {
  6278. closecallback: function () { }
  6279. }, { "style": { "height": "36px" } }).form; //创建窗体
  6280. _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); } }
  6281. break;
  6282. case "allHistory": //深度学习
  6283. _formdiv = new U.UF.UI.form(
  6284. "全历史",
  6285. $$("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/" }), {
  6286. "id": "allHistory",
  6287. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6288. "onresize": function () { }
  6289. }, {
  6290. closecallback: function () { }
  6291. }, { "style": { "height": "36px" } }).form; //创建窗体
  6292. _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); } }
  6293. break;
  6294. case "chatPDF": //ai编程
  6295. _formdiv = new U.UF.UI.form(
  6296. "chatPDF",
  6297. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6298. "id": "chatPDF",
  6299. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6300. "onresize": function () { }
  6301. }, {
  6302. closecallback: function () { }
  6303. }, { "style": { "height": "36px" } }).form; //创建窗体
  6304. _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); } }
  6305. break;
  6306. case "resources": //国家教育
  6307. _formdiv = new U.UF.UI.form(
  6308. "国家教育",
  6309. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6310. "id": "resources",
  6311. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6312. "onresize": function () { }
  6313. }, {
  6314. closecallback: function () { }
  6315. }, { "style": { "height": "36px" } }).form; //创建窗体
  6316. _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); } }
  6317. break;
  6318. case "codeEdit": //源码编辑
  6319. _formdiv = new U.UF.UI.form(
  6320. "源码编辑",
  6321. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6322. "id": "codeEdit",
  6323. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6324. "onresize": function () { }
  6325. }, {
  6326. closecallback: function () { }
  6327. }, { "style": { "height": "36px" } }).form; //创建窗体
  6328. _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); } }
  6329. break; //
  6330. case "MindMap": //MindMap
  6331. _formdiv = new U.UF.UI.form(
  6332. "MindMap",
  6333. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6334. "id": "MindMap",
  6335. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6336. "onresize": function () { }
  6337. }, {
  6338. closecallback: function () { }
  6339. }, { "style": { "height": "36px" } }).form; //创建窗体
  6340. _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); } }
  6341. break;
  6342. case "netWorkPanel": //netWorkPanel
  6343. _formdiv = new U.UF.UI.form(
  6344. "netWorkPanel",
  6345. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6346. "id": "netWorkPanel",
  6347. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6348. "onresize": function () { }
  6349. }, {
  6350. closecallback: function () { }
  6351. }, { "style": { "height": "36px" } }).form; //创建窗体
  6352. _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); } }
  6353. break;
  6354. case "GeoGebra": //GeoGebra
  6355. _formdiv = new U.UF.UI.form(
  6356. "GeoGebra",
  6357. $$("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" }), {
  6358. "id": "GeoGebra",
  6359. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6360. "onresize": function () { }
  6361. }, {
  6362. closecallback: function () { }
  6363. }, { "style": { "height": "36px" } }).form; //创建窗体
  6364. _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); } }
  6365. break;
  6366. case "translation": //翻译
  6367. _formdiv = new U.UF.UI.form(
  6368. "翻译",
  6369. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6370. "id": "translation",
  6371. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _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); } }
  6377. break;
  6378. case "mohe": //魔盒
  6379. _formdiv = new U.UF.UI.form(
  6380. "魔盒识字",
  6381. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6382. "id": "mohe",
  6383. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6384. "onresize": function () { }
  6385. }, {
  6386. closecallback: function () { }
  6387. }, { "style": { "height": "36px" } }).form; //创建窗体
  6388. _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); } }
  6389. break;
  6390. case "24game": //24点
  6391. _formdiv = new U.UF.UI.form(
  6392. "24点",
  6393. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6394. "id": "24game",
  6395. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6401. break;
  6402. case "case":
  6403. _formdiv = new U.UF.UI.form(
  6404. "课程进展",
  6405. $$("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 }), {
  6406. "id": "case",
  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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6413. break;
  6414. case "snf":
  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": "//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" }), {
  6418. "id": "snf",
  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/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6425. break;
  6426. case "hanFamily":
  6427. _formdiv = new U.UF.UI.form(
  6428. "汉字家族",
  6429. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6430. "id": "hanFamily",
  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/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6437. break;
  6438. case "hanClassics":
  6439. _formdiv = new U.UF.UI.form(
  6440. "国学经典",
  6441. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6442. "id": "hanClassics",
  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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6449. break;
  6450. case "hanTraining":
  6451. _formdiv = new U.UF.UI.form(
  6452. "笔画训练",
  6453. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6454. "id": "hanTraining",
  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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6461. break;
  6462. case "hanClass":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6466. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6473. break;
  6474. case "han":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6478. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6485. break;
  6486. case "projectGM": //课程管理
  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/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6490. "id": "projectGM",
  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/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6497. break;
  6498. case "studyGM": //课程中心
  6499. _formdiv = new U.UF.UI.form(
  6500. "课程中心",
  6501. $$("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
  6502. "id": "study",
  6503. "style": { "width": "100%", "height": "100%", "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/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6509. break;
  6510. // studentGM
  6511. case "studentGM": //学生管理
  6512. _formdiv = new U.UF.UI.form(
  6513. "学生管理",
  6514. $$("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 }), {
  6515. "id": "studentGM",
  6516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _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); } }
  6522. break;
  6523. case "evaluateGM": //学生评价
  6524. _formdiv = new U.UF.UI.form(
  6525. "学生评价",
  6526. $$("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 }), {
  6527. "id": "evaluateGM",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _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); } }
  6534. break;
  6535. // classGM
  6536. case "classGM": //班级管理
  6537. _formdiv = new U.UF.UI.form(
  6538. "班级管理",
  6539. $$("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 }), {
  6540. "id": "classGM",
  6541. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6542. "onresize": function () { }
  6543. }, {
  6544. closecallback: function () { }
  6545. }, { "style": { "height": "36px" } }).form; //创建窗体
  6546. _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); } }
  6547. break;
  6548. // dataGM
  6549. case "dataGM":
  6550. _formdiv = new U.UF.UI.form(
  6551. "我的资料",
  6552. $$("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 }), {
  6553. "id": "dataGM",
  6554. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6555. "onresize": function () { }
  6556. }, {
  6557. closecallback: function () { }
  6558. }, { "style": { "height": "36px" } }).form; //创建窗体
  6559. _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); } }
  6560. break;
  6561. // caseGM
  6562. case "caseGM": //课程进展
  6563. _formdiv = new U.UF.UI.form(
  6564. "课程进展",
  6565. $$("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 }), {
  6566. "id": "caseGM",
  6567. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6568. "onresize": function () { }
  6569. }, {
  6570. closecallback: function () { }
  6571. }, { "style": { "height": "36px" } }).form; //创建窗体
  6572. _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); } }
  6573. break;
  6574. // meterialGM
  6575. case "meterialGM": //素材库
  6576. _formdiv = new U.UF.UI.form(
  6577. "素材库",
  6578. $$("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 }), {
  6579. "id": "meterialGM",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. _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); } }
  6586. break;
  6587. // evaluateSGM
  6588. case "evaluateSGM": //我的评价
  6589. _formdiv = new U.UF.UI.form(
  6590. "我的评价",
  6591. $$("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 }), {
  6592. "id": "evaluateSGM",
  6593. "style": { "width": "70%", "height": "90%", "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/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6599. break;
  6600. case "jupyter": //jupyter
  6601. _formdiv = new U.UF.UI.form(
  6602. "jupyter",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6604. "id": "jupyter",
  6605. "style": { "width": "90%", "height": "90%", "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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6611. break;
  6612. case "number": //数字实验室
  6613. _formdiv = new U.UF.UI.form(
  6614. "数字实验室",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6616. "id": "number",
  6617. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _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); } }
  6623. break;
  6624. case "studentCourse": //项目管理 学生
  6625. _formdiv = new U.UF.UI.form(
  6626. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6627. $$("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 }), {
  6628. "id": "studentCourse",
  6629. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _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); } }
  6635. break;
  6636. case "studentCourseS": //项目管理 老师
  6637. _formdiv = new U.UF.UI.form(
  6638. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6639. $$("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 }), {
  6640. "id": "studentCourseS",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _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); } }
  6647. break;
  6648. case "studentIndex": //项目中心
  6649. _formdiv = new U.UF.UI.form(
  6650. "项目中心",
  6651. $$("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 }), {
  6652. "id": "studentIndex",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _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); } }
  6659. break;
  6660. case "CaseDesignS":
  6661. _formdiv = new U.UF.UI.form(
  6662. "项目进展",
  6663. $$("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 }), {
  6664. "id": "case",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _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); } }
  6671. break;
  6672. case "tcStudent": //腾讯学生管理
  6673. _formdiv = new U.UF.UI.form(
  6674. "学生管理",
  6675. $$("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 }), {
  6676. "id": "tcStudent",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _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); } }
  6683. break;
  6684. case "tcSchool": //腾讯学校管理
  6685. _formdiv = new U.UF.UI.form(
  6686. "学校管理",
  6687. $$("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 }), {
  6688. "id": "tcSchool",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _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); } }
  6695. break;
  6696. case "tcTeacher": //腾讯学校管理
  6697. _formdiv = new U.UF.UI.form(
  6698. "教师管理",
  6699. $$("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 }), {
  6700. "id": "tcTeacher",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _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); } }
  6707. break;
  6708. case "teacher":
  6709. _formdiv = new U.UF.UI.form(
  6710. "教师管理",
  6711. $$("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 }), {
  6712. "id": "teacher",
  6713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _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); } }
  6719. break;
  6720. case "tcData": //腾讯我的资料
  6721. _formdiv = new U.UF.UI.form(
  6722. "我的资料",
  6723. $$("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 }), {
  6724. "id": "tcData",
  6725. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _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); } }
  6731. break;
  6732. case "tcNotice": //腾讯消息通知
  6733. _formdiv = new U.UF.UI.form(
  6734. "消息通知",
  6735. $$("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 }), {
  6736. "id": "tcNotice",
  6737. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _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); } }
  6743. break;
  6744. case "myReport": //好友打开
  6745. _formdiv = new U.UF.UI.form(
  6746. "我的评价",
  6747. $$("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 }), {
  6748. "id": "myReport",
  6749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6750. "onresize": function () { }
  6751. }, {
  6752. closecallback: function () { }
  6753. }, { "style": { "height": "36px" } }).form; //创建窗体
  6754. _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); } }
  6755. break;
  6756. case "learnAna": //好友打开
  6757. _formdiv = new U.UF.UI.form(
  6758. "学习分析",
  6759. $$("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 }), {
  6760. "id": "learnAna",
  6761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6762. "onresize": function () { }
  6763. }, {
  6764. closecallback: function () { }
  6765. }, { "style": { "height": "36px" } }).form; //创建窗体
  6766. _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); } }
  6767. break;
  6768. case "AIChat": //AI共创
  6769. _formdiv = new U.UF.UI.form(
  6770. "AI共创",
  6771. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6772. "id": "AIChat",
  6773. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6774. "onresize": function () { }
  6775. }, {
  6776. istop: true,
  6777. closecallback: function () { $("#aichat_icon").remove(); },
  6778. narrowcallback: function () {
  6779. if (!$("#aichat_icon")[0]) {
  6780. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6781. }
  6782. },
  6783. }, { "style": { "height": "36px" } }).form; //创建窗体
  6784. _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); } }
  6785. break;
  6786. case "ainew": //AI共创
  6787. _formdiv = new U.UF.UI.form(
  6788. "AI协同",
  6789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6790. "id": "ainew",
  6791. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6792. "onresize": function () { }
  6793. }, {
  6794. closecallback: function () { }
  6795. }, { "style": { "height": "36px" } }).form; //创建窗体
  6796. _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); } }
  6797. break;
  6798. case "gpt4": //gpt4
  6799. _formdiv = new U.UF.UI.form(
  6800. "AI助手",
  6801. $$("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 }), {
  6802. "id": "gpt4",
  6803. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6804. "onresize": function () { }
  6805. }, {
  6806. closecallback: function () { }
  6807. }, { "style": { "height": "36px" } }).form; //创建窗体
  6808. _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); } }
  6809. break;
  6810. case "aigpt": //gpt4
  6811. _formdiv = new U.UF.UI.form(
  6812. "AI助手+",
  6813. $$("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 }), {
  6814. "id": "aigpt",
  6815. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6816. "onresize": function () { }
  6817. }, {
  6818. closecallback: function () {
  6819. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6820. }
  6821. }, { "style": { "height": "36px" } }).form; //创建窗体
  6822. _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); } }
  6823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6824. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6825. })
  6826. break;
  6827. case "aiKnowledge": //aiKnowledge
  6828. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6829. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6830. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6831. }
  6832. _formdiv = new U.UF.UI.form(
  6833. "知识建构",
  6834. $$("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": _url }), {
  6835. "id": "aiKnowledge",
  6836. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6837. "onresize": function () { }
  6838. }, {
  6839. closecallback: function () { }
  6840. }, { "style": { "height": "36px" } }).form; //创建窗体
  6841. _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); } }
  6842. break;
  6843. case "futureClass": //AI共创
  6844. _formdiv = new U.UF.UI.form(
  6845. "协同建构",
  6846. $$("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
  6847. "id": "synergyCourse",
  6848. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6849. "onresize": function () { }
  6850. }, {
  6851. closecallback: function () {
  6852. $("iframe", _formdiv)[0].contentWindow.loginout();
  6853. }
  6854. }, { "style": { "height": "36px" } }).form; //创建窗体
  6855. _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); } }
  6856. break;
  6857. case "aiagent": //ai agent
  6858. _formdiv = new U.UF.UI.form(
  6859. "AI Agent",
  6860. $$("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" }), {
  6861. "id": "AIAgent",
  6862. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6863. "onresize": function () { }
  6864. }, {
  6865. closecallback: function () { }
  6866. }, { "style": { "height": "36px" } }).form; //创建窗体
  6867. _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); } }
  6868. break;
  6869. case "dataBoard": //数据看板
  6870. _formdiv = new U.UF.UI.form(
  6871. "数据看板",
  6872. $$("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 }), {
  6873. "id": "dataBoard",
  6874. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6875. "onresize": function () { }
  6876. }, {
  6877. closecallback: function () { }
  6878. }, { "style": { "height": "36px" } }).form; //创建窗体
  6879. _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); } }
  6880. break;
  6881. case "dataBoardSies": //数据融合
  6882. _formdiv = new U.UF.UI.form(
  6883. "数据融合",
  6884. $$("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 }), {
  6885. "id": "dataBoardSies",
  6886. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6887. "onresize": function () { }
  6888. }, {
  6889. closecallback: function () { }
  6890. }, { "style": { "height": "36px" } }).form; //创建窗体
  6891. _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); } }
  6892. break;
  6893. case "dataBoardNew": //数据看板
  6894. _formdiv = new U.UF.UI.form(
  6895. "综合看板",
  6896. $$("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 }), {
  6897. "id": "dataBoardNew",
  6898. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. _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); } }
  6904. break;
  6905. case "dataBoardTest": //数据看板
  6906. _formdiv = new U.UF.UI.form(
  6907. "评测看板",
  6908. $$("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 }), {
  6909. "id": "dataBoardTest",
  6910. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6911. "onresize": function () { }
  6912. }, {
  6913. closecallback: function () { }
  6914. }, { "style": { "height": "36px" } }).form; //创建窗体
  6915. _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); } }
  6916. break;
  6917. case "AIAnalyse": //AI共创
  6918. _formdiv = new U.UF.UI.form(
  6919. "AI分析",
  6920. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6921. "id": "AIAnalyse",
  6922. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6923. "onresize": function () { }
  6924. }, {
  6925. closecallback: function () { }
  6926. }, { "style": { "height": "36px" } }).form; //创建窗体
  6927. _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); } }
  6928. break;
  6929. case "studioCourse": //AI共创
  6930. _formdiv = new U.UF.UI.form(
  6931. "工作管理",
  6932. $$("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 }), {
  6933. "id": "studioCourse",
  6934. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6935. "onresize": function () { }
  6936. }, {
  6937. closecallback: function () { }
  6938. }, { "style": { "height": "36px" } }).form; //创建窗体
  6939. _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); } }
  6940. break;
  6941. case "studioIndex": //AI共创
  6942. _formdiv = new U.UF.UI.form(
  6943. "工作中心",
  6944. $$("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 }), {
  6945. "id": "studioIndex",
  6946. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6947. "onresize": function () { }
  6948. }, {
  6949. closecallback: function () { }
  6950. }, { "style": { "height": "36px" } }).form; //创建窗体
  6951. _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); } }
  6952. break;
  6953. case "source":
  6954. _formdiv = new U.UF.UI.form(
  6955. "教学资源",
  6956. $$("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 }), {
  6957. "id": "source",
  6958. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6959. "onresize": function () { }
  6960. }, {
  6961. closecallback: function () { }
  6962. }, { "style": { "height": "36px" } }).form; //创建窗体
  6963. _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); } }
  6964. break;
  6965. case "testTeacher":
  6966. _formdiv = new U.UF.UI.form(
  6967. "智能表单",
  6968. $$("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 }), {
  6969. "id": "testTeacher",
  6970. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6971. "onresize": function () { }
  6972. }, {
  6973. closecallback: function () { }
  6974. }, { "style": { "height": "36px" } }).form; //创建窗体
  6975. _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); } }
  6976. break;
  6977. case "testStudent":
  6978. _formdiv = new U.UF.UI.form(
  6979. "教师中心",
  6980. $$("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 }), {
  6981. "id": "testStudent",
  6982. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6983. "onresize": function () { }
  6984. }, {
  6985. closecallback: function () { }
  6986. }, { "style": { "height": "36px" } }).form; //创建窗体
  6987. _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); } }
  6988. break;
  6989. case "testTeacherSies":
  6990. _formdiv = new U.UF.UI.form(
  6991. "教师管理",
  6992. $$("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 }), {
  6993. "id": "testTeacherSies",
  6994. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "testStudentSies":
  7002. _formdiv = new U.UF.UI.form(
  7003. "教师中心",
  7004. $$("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 }), {
  7005. "id": "testStudentSies",
  7006. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _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); } }
  7012. break;
  7013. case "ytpbl": //消息通知
  7014. _formdiv = new U.UF.UI.form(
  7015. "案例征集",
  7016. $$("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 }), {
  7017. "id": "ytpbl",
  7018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _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); } }
  7024. // 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");
  7025. break;
  7026. case "aiCourseResource": //人工智能窗体
  7027. _formdiv = new U.UF.UI.form(
  7028. false,
  7029. $$("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 }), {
  7030. "id": "aiCourseResource",
  7031. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7032. "onresize": function () { },
  7033. "isdrag": false,
  7034. }, {
  7035. closecallback: function () { }
  7036. }, { "style": { "height": "36px" } }).form; //创建窗体
  7037. _taskbar = ''
  7038. break;
  7039. case "szdjgCocooroboX": //图形化编程
  7040. _formdiv = new U.UF.UI.form(
  7041. "图形化编程",
  7042. $$("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" }), {
  7043. "id": "szdjgCocooroboX",
  7044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7045. "onresize": function () { }
  7046. }, {
  7047. closecallback: function () { }
  7048. }, { "style": { "height": "36px" } }).form; //创建窗体
  7049. _taskbar = ''
  7050. break;
  7051. case "szdjgPython": //python编程
  7052. _formdiv = new U.UF.UI.form(
  7053. "Python编程",
  7054. $$("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" }), {
  7055. "id": "szdjgPython",
  7056. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7057. "onresize": function () { }
  7058. }, {
  7059. closecallback: function () { }
  7060. }, { "style": { "height": "36px" } }).form; //创建窗体
  7061. _taskbar = ''
  7062. break;
  7063. case "Record":
  7064. _formdiv = new U.UF.UI.form(
  7065. "观察记录",
  7066. $$("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 }), {
  7067. "id": "Record",
  7068. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7069. "onresize": function () { }
  7070. }, {
  7071. closecallback: function () { }
  7072. }, { "style": { "height": "36px" } }).form; //创建窗体
  7073. _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); } }
  7074. break;
  7075. case "aigptCourse":
  7076. _formdiv = new U.UF.UI.form(
  7077. "AI智能体",
  7078. $$("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' }), {
  7079. "id": "aigptCourse",
  7080. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7081. "onresize": function () { }
  7082. }, {
  7083. closecallback: function () { }
  7084. }, { "style": { "height": "36px" } }).form; //创建窗体
  7085. _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); } }
  7086. break;
  7087. case "classroomObservation":
  7088. _formdiv = new U.UF.UI.form(
  7089. "课堂观察",
  7090. $$("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 }), {
  7091. "id": "classroomObservation",
  7092. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7093. "onresize": function () { }
  7094. }, {
  7095. closecallback: function () { }
  7096. }, { "style": { "height": "36px" } }).form; //创建窗体
  7097. _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); } }
  7098. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7099. break;
  7100. case "pblCourse":
  7101. _formdiv = new U.UF.UI.form(
  7102. "学生PBL",
  7103. $$("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 }), {
  7104. "id": "pblCourse",
  7105. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7106. "onresize": function () { }
  7107. }, {
  7108. closecallback: function () { }
  7109. }, { "style": { "height": "36px" } }).form; //创建窗体
  7110. _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); } }
  7111. break;
  7112. case "appStore":
  7113. _formdiv = new U.UF.UI.form(
  7114. "CocoFlow",
  7115. $$("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": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7116. "id": "appStore",
  7117. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7118. "onresize": function () { }
  7119. }, {
  7120. closecallback: function () { }
  7121. }, { "style": { "height": "36px" } }).form; //创建窗体
  7122. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7123. break;
  7124. case "sassPlatform":
  7125. _formdiv = new U.UF.UI.form(
  7126. "Sass通用后台管理",
  7127. $$("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/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7128. "id": "sassPlatform",
  7129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //创建窗体
  7134. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7135. break;
  7136. case "EDU":
  7137. _formdiv = new U.UF.UI.form(
  7138. "EDU",
  7139. $$("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": "//edu.cocorobo.cn" }), {
  7140. "id": "EDU",
  7141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () { }
  7145. }, { "style": { "height": "36px" } }).form; //创建窗体
  7146. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7147. break;
  7148. case "knowledge":
  7149. _formdiv = new U.UF.UI.form(
  7150. "知识库",
  7151. $$("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://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7152. "id": "knowledge",
  7153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //创建窗体
  7158. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/knowledge.png)" }, "name": "knowledge", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7159. break;
  7160. case "userExamine":
  7161. _formdiv = new U.UF.UI.form(
  7162. "账号申请",
  7163. $$("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": "//user.cocorobo.cn/#/examineDialog" }), {
  7164. "id": "userExamine",
  7165. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7166. "onresize": function () { }
  7167. }, {
  7168. closecallback: function () { }
  7169. }, { "style": { "height": "36px" } }).form; //创建窗体
  7170. break;
  7171. }
  7172. //U.MD.D.I.openClick(str);
  7173. //如果有任务栏信息
  7174. if (_taskbar) {
  7175. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7176. }
  7177. // if(iframeBool){
  7178. // U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7179. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7180. // console.log("iframe进入");
  7181. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7182. // };
  7183. // }
  7184. }
  7185. // U.MD.D.I.openClick = function(str){
  7186. // var click = '';
  7187. // switch(str){
  7188. // case 'friend':
  7189. // click = '我的好友';
  7190. // break;
  7191. // case 'domain':
  7192. // click = '域名管理';
  7193. // break;
  7194. // case 'disk':
  7195. // click = '我的云盘';
  7196. // break;
  7197. // case 'word':
  7198. // click = 'Word';
  7199. // break;
  7200. // case 'excel':
  7201. // click = 'Execl';
  7202. // break;
  7203. // case 'txt':
  7204. // click = '文本文件';
  7205. // break;
  7206. // case 'lookupFriend':
  7207. // click = '查找好友';
  7208. // break;
  7209. // case 'ftp':
  7210. // click = 'FTP';
  7211. // break;
  7212. // case 'group':
  7213. // click = '群组';
  7214. // break;
  7215. // case 'set':
  7216. // click = '我的设置';
  7217. // break;
  7218. // case 'systemSet':
  7219. // click = '系统设置';
  7220. // break;
  7221. // case 'boomYun':
  7222. // click = '互联办公';
  7223. // break;
  7224. // case 'xz':
  7225. // click = '云端下载';
  7226. // break;
  7227. // case 'client':
  7228. // click = '有思浏览器';
  7229. // break;
  7230. // case 'backEndProgramming':
  7231. // click = '在线后台编程';
  7232. // break;
  7233. // case 'frontEndProgramming':
  7234. // click = '在线前端编程';
  7235. // break;
  7236. // default: break;
  7237. // }
  7238. // if(U.MD.D.I.Ip && click){
  7239. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7240. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7241. // })
  7242. // }
  7243. // }
  7244. /**
  7245. *函数作用:ajax简易函数,使用post格式
  7246. *@param url {data} 后台地址
  7247. *@param data {data} 参数json
  7248. *@param fn {data} 回调函数
  7249. *
  7250. */
  7251. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7252. // var xhr = new XMLHttpRequest();
  7253. // xhr.open("GET",url,true);
  7254. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7255. // xhr.onreadystatechange = function(){
  7256. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7257. // fn.call(this,xhr.responseText);
  7258. // }
  7259. // };
  7260. // xhr.send();
  7261. // }
  7262. /*判断是否是内网IP*/
  7263. // U.MD.D.I.isInnerIPFn = function(str){
  7264. // var curPageUrl = str;
  7265. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7266. // curPageUrl =curPageUrl.replace(reg1,'');
  7267. // // console.log('curPageUrl-1 '+curPageUrl);
  7268. // var reg2 = /\:+/g;//替换冒号为一点
  7269. // curPageUrl =curPageUrl.replace(reg2,'.');
  7270. // // console.log('curPageUrl-2 '+curPageUrl);
  7271. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7272. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7273. // if(curPageUrl[2] != '16'){
  7274. // return ipAddress;
  7275. // }else{
  7276. // return false;
  7277. // }
  7278. // }
  7279. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7280. // //compatibility for firefox and chrome
  7281. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7282. // var pc = new myPeerConnection({
  7283. // iceServers: []
  7284. // }),
  7285. // noop = function() {},
  7286. // localIPs = {},
  7287. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7288. // key;
  7289. // function iterateIP(ip) {
  7290. // if (!localIPs[ip]) onNewIP(ip);
  7291. // localIPs[ip] = true;
  7292. // }
  7293. // //create a bogus data channel
  7294. // pc.createDataChannel("");
  7295. // // create offer and set local description
  7296. // pc.createOffer().then(function(sdp) {
  7297. // sdp.sdp.split('\n').forEach(function(line) {
  7298. // if (line.indexOf('candidate') < 0) return;
  7299. // line.match(ipRegex).forEach(iterateIP);
  7300. // });
  7301. // pc.setLocalDescription(sdp, noop, noop);
  7302. // }).catch(function(reason) {
  7303. // // An error occurred, so handle the failure to connect
  7304. // });
  7305. // //sten for candidate events
  7306. // pc.onicecandidate = function(ice) {
  7307. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7308. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7309. // };
  7310. // }
  7311. // U.MD.D.I.getUserIpBool = function(callback){
  7312. // U.MD.D.I.getUserIP(function(ip){
  7313. // alert("Got IP! :" + ip);
  7314. // });
  7315. //}
  7316. //#endregion
  7317. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7318. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7319. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7320. _userinfo = US.userInfo, //登录用户信息
  7321. _userid = US.userInfo.userid //登录用户id
  7322. let _iframe;
  7323. let _cid = cid,
  7324. _stage = stage,
  7325. _task = task,
  7326. _tool = tool;
  7327. var _jie = $$("div", {
  7328. "style": {
  7329. "position": "absolute",
  7330. "bottom": "50px",
  7331. "right": "50px",
  7332. "zIndex": "9999",
  7333. "backgroundColor": "#2268bc",
  7334. "color": "#fff",
  7335. "padding": "12px 20px",
  7336. "cursor": "pointer",
  7337. "borderRadius": "4px",
  7338. },
  7339. "innerHTML": "提交作业"
  7340. })
  7341. let aTool = ''
  7342. let _loading = document.createElement('div')
  7343. _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;"
  7344. // _loading.id = "";
  7345. let _lchild = document.createElement('div')
  7346. let _limg = document.createElement('img')
  7347. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7348. _limg.style = "width: 26px;margin-right: 10px;"
  7349. _lchild.appendChild(_limg)
  7350. let _lspan = document.createElement('span')
  7351. _lspan.innerHTML = "上传中..."
  7352. _lchild.appendChild(_lspan)
  7353. _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%);"
  7354. _loading.appendChild(_lchild)
  7355. var _box = $$('div', {
  7356. "style": {
  7357. "position": "relative",
  7358. "width": "100%",
  7359. "height": "100%",
  7360. },
  7361. })
  7362. _box.appendChild(_loading)
  7363. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7364. switch (str) {
  7365. case "whiteboard":
  7366. aTool = 1;
  7367. _iframe = $$("iframe", {
  7368. "frameborder": "no",
  7369. "border": "0",
  7370. "scrolling ": "no",
  7371. "style": {
  7372. "cssText": "border:0;width:100%;height:100%"
  7373. },
  7374. "src": "https://beta.iwb.cocorobo.cn/"
  7375. })
  7376. _box.appendChild(_iframe);
  7377. _box.appendChild(_jie);
  7378. _formdiv = new U.UF.UI.form(
  7379. "电子白板",
  7380. _box, {
  7381. "id": "whiteboard" + cid + stage + task + tool,
  7382. "style": {
  7383. "width": "90%",
  7384. "height": "90%",
  7385. "overflow": 'hidden'
  7386. },
  7387. "onresize": function () { }
  7388. }, {
  7389. closecallback: function () { }
  7390. }, {
  7391. "style": {
  7392. "height": "36px"
  7393. }
  7394. }).form; //创建窗体
  7395. _taskbar = {
  7396. "id": str + _formdiv.id,
  7397. "style": {
  7398. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7399. },
  7400. "name": "电子白板",
  7401. "forms": _formdiv,
  7402. "click": function () {
  7403. U.MD.D.I.openApplication(str, obj, info);
  7404. }
  7405. }
  7406. break;
  7407. case "mind":
  7408. aTool = 3;
  7409. _iframe = $$("iframe", {
  7410. "frameborder": "no",
  7411. "border": "0",
  7412. "scrolling ": "no",
  7413. "style": {
  7414. "cssText": "border:0;width:100%;height:100%"
  7415. },
  7416. "src": "/kityminder-editor/dist/index.html"
  7417. })
  7418. _box.appendChild(_iframe);
  7419. _box.appendChild(_jie);
  7420. _formdiv = new U.UF.UI.form(
  7421. "思维导图",
  7422. _box, { //"/jsmind/example/demo.html"
  7423. "id": "mind" + cid + stage + task + tool,
  7424. "style": {
  7425. "width": "90%",
  7426. "height": "90%",
  7427. "overflow": 'hidden'
  7428. },
  7429. "onresize": function () { }
  7430. }, {
  7431. closecallback: function () { }
  7432. }, {
  7433. "style": {
  7434. "height": "36px"
  7435. }
  7436. }).form; //创建窗体
  7437. _taskbar = {
  7438. "id": str + _formdiv.id,
  7439. "style": {
  7440. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7441. },
  7442. "name": "思维导图",
  7443. "forms": _formdiv,
  7444. "click": function () {
  7445. U.MD.D.I.openApplication(str, obj, info);
  7446. }
  7447. }
  7448. break;
  7449. case "MindMap":
  7450. aTool = 3;
  7451. _iframe = $$("iframe", {
  7452. "frameborder": "no",
  7453. "border": "0",
  7454. "scrolling ": "no",
  7455. "style": {
  7456. "cssText": "border:0;width:100%;height:100%"
  7457. },
  7458. "src": "//cloud.cocorobo.cn/mind/"
  7459. })
  7460. _box.appendChild(_iframe);
  7461. _box.appendChild(_jie);
  7462. _formdiv = new U.UF.UI.form(
  7463. "思维导图",
  7464. _box, { //"/jsmind/example/demo.html"
  7465. "id": "mind" + cid + stage + task + tool,
  7466. "style": {
  7467. "width": "90%",
  7468. "height": "90%",
  7469. "overflow": 'hidden'
  7470. },
  7471. "onresize": function () { }
  7472. }, {
  7473. closecallback: function () { }
  7474. }, {
  7475. "style": {
  7476. "height": "36px"
  7477. }
  7478. }).form; //创建窗体
  7479. _taskbar = {
  7480. "id": str + _formdiv.id,
  7481. "style": {
  7482. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7483. },
  7484. "name": "思维导图",
  7485. "forms": _formdiv,
  7486. "click": function () {
  7487. U.MD.D.I.openApplication(str, obj, info);
  7488. }
  7489. }
  7490. break;
  7491. case "doc":
  7492. aTool = 6;
  7493. _iframe = $$("iframe", {
  7494. "frameborder": "no",
  7495. "border": "0",
  7496. "scrolling ": "no",
  7497. "style": {
  7498. "cssText": "border:0;width:100%;height:100%"
  7499. },
  7500. "src": "/Office/Word/WordEditArea.htm"
  7501. })
  7502. _box.appendChild(_iframe);
  7503. _box.appendChild(_jie);
  7504. _formdiv = new U.UF.UI.form(
  7505. "协同文档",
  7506. _box, {
  7507. "id": "doc" + cid + stage + task + tool,
  7508. "style": {
  7509. "width": "90%",
  7510. "height": "90%",
  7511. "overflow": 'hidden'
  7512. },
  7513. "onresize": function () { }
  7514. }, {
  7515. closecallback: function () { }
  7516. }, {
  7517. "style": {
  7518. "height": "36px"
  7519. }
  7520. }).form; //创建窗体
  7521. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7522. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7523. })
  7524. _taskbar = {
  7525. "id": str + _formdiv.id,
  7526. "style": {
  7527. "backgroundImage": "url(/img/icon/doc.png)"
  7528. },
  7529. "name": "协同文档",
  7530. "forms": _formdiv,
  7531. "click": function () {
  7532. U.MD.D.I.openApplication(str, obj, info);
  7533. }
  7534. }
  7535. break;
  7536. case "mindNetwork": //好友打开
  7537. aTool = 7;
  7538. _iframe = $$("iframe", {
  7539. "webkitallowfullscreen": "",
  7540. "mozallowfullscreen": "",
  7541. "allowfullscreen": "",
  7542. "frameborder": "no",
  7543. "border": "0",
  7544. "scrolling ": "no",
  7545. "style": {
  7546. "cssText": "border:0; width:100%; height:100%;"
  7547. },
  7548. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7549. })
  7550. _box.appendChild(_iframe);
  7551. _box.appendChild(_jie);
  7552. _formdiv = new U.UF.UI.form(
  7553. "思维网格",
  7554. _box, {
  7555. "id": "mindNetwork" + cid + stage + task + tool,
  7556. "style": {
  7557. "width": "90%",
  7558. "height": "90%",
  7559. "overflow": 'hidden'
  7560. },
  7561. "onresize": function () { }
  7562. }, {
  7563. closecallback: function () { }
  7564. }, {
  7565. "style": {
  7566. "height": "36px"
  7567. }
  7568. }).form; //创建窗体
  7569. _taskbar = {
  7570. "id": str + _formdiv.id,
  7571. "style": {
  7572. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7573. },
  7574. "name": "思维网格",
  7575. "forms": _formdiv,
  7576. "click": function () {
  7577. U.MD.D.I.openApplication(str, obj, info);
  7578. }
  7579. }
  7580. break;
  7581. case "courseDesign":
  7582. _iframe = $$("iframe", {
  7583. "webkitallowfullscreen": "",
  7584. "mozallowfullscreen": "",
  7585. "allowfullscreen": "",
  7586. "frameborder": "no",
  7587. "border": "0",
  7588. "scrolling ": "no",
  7589. "style": {
  7590. "cssText": "border:0; width:100%; height:100%;"
  7591. },
  7592. "src": "/course-design-vue"
  7593. })
  7594. _box.appendChild(_iframe);
  7595. _box.appendChild(_jie);
  7596. _formdiv = new U.UF.UI.form(
  7597. "项目设计",
  7598. _box, {
  7599. "id": "courseDesign" + cid + stage + task + tool,
  7600. "style": {
  7601. "width": "90%",
  7602. "height": "90%",
  7603. "overflow": 'hidden'
  7604. },
  7605. "onresize": function () { }
  7606. }, {
  7607. closecallback: function () { }
  7608. }, {
  7609. "style": {
  7610. "height": "36px"
  7611. }
  7612. }).form; //创建窗体
  7613. _taskbar = {
  7614. "id": str + _formdiv.id,
  7615. "style": {
  7616. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7617. },
  7618. "name": "项目设计",
  7619. "forms": _formdiv,
  7620. "click": function () {
  7621. U.MD.D.I.openApplication(str, obj, info);
  7622. }
  7623. }
  7624. break;
  7625. }
  7626. const script1 = document.createElement("script");
  7627. script1.type = "text/javascript";
  7628. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7629. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7630. const script2 = document.createElement("script");
  7631. script2.type = "text/javascript";
  7632. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7633. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7634. const script3 = document.createElement("script");
  7635. script3.type = "text/javascript";
  7636. script3.charset = "UTF-8";
  7637. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7638. const script4 = document.createElement("script");
  7639. script4.type = "text/javascript";
  7640. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7641. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7642. if (_iframe) {
  7643. if (str == 'doc') {
  7644. _iframe = _formdiv.querySelector('iframe')
  7645. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7646. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7647. _iframe.contentWindow.document.body.appendChild(script1);
  7648. _iframe.contentWindow.document.body.appendChild(script2);
  7649. // _iframe.contentWindow.document.body.appendChild(script3);
  7650. _iframe.contentWindow.document.body.appendChild(script4);
  7651. })
  7652. if (onloadListener) {
  7653. _iframe.contentDocument.location.reload()
  7654. } else {
  7655. _iframe.contentDocument.location.reload()
  7656. }
  7657. } else if (str == 'courseDesign') {
  7658. U.UF.DL.iframeLoad(_iframe, function () {
  7659. // _iframe.contentWindow.U.MD.O.W.load();
  7660. // _iframe.contentWindow.document.body.appendChild(script1);
  7661. _iframe.contentWindow.document.body.appendChild(script2);
  7662. _iframe.contentWindow.document.body.appendChild(script4);
  7663. })
  7664. } else if (str == 'mind') {
  7665. _iframe = _formdiv.querySelector('iframe')
  7666. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7667. //
  7668. _iframe.contentWindow.document.body.appendChild(script1);
  7669. _iframe.contentWindow.document.body.appendChild(script2);
  7670. _iframe.contentWindow.document.body.appendChild(script4);
  7671. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7672. })
  7673. if (onloadListener) {
  7674. _iframe.contentDocument.location.reload()
  7675. } else {
  7676. _iframe.contentDocument.location.reload()
  7677. }
  7678. } else if (str == 'whiteboard') {
  7679. _iframe = _formdiv.querySelector('iframe')
  7680. let onloadListener = _iframe.onload = () => {
  7681. _iframe.contentWindow.document.body.appendChild(script1);
  7682. _iframe.contentWindow.document.body.appendChild(script2);
  7683. _iframe.contentWindow.document.body.appendChild(script4);
  7684. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7685. };
  7686. // if (onloadListener) {
  7687. // try {
  7688. // _iframe.src += "?cocorobo="+new Date().getTime()
  7689. // _iframe.contentWindow.document.location.reload()
  7690. // } catch (error) {
  7691. // }
  7692. // } else {
  7693. // _iframe.contentDocument.location.reload()
  7694. // }
  7695. } else {
  7696. _iframe.onload = () => {
  7697. _iframe.contentWindow.document.body.appendChild(script1);
  7698. _iframe.contentWindow.document.body.appendChild(script2);
  7699. // _iframe.contentWindow.document.body.appendChild(script3);
  7700. _iframe.contentWindow.document.body.appendChild(script4);
  7701. };
  7702. }
  7703. _jie.onclick = async () => {
  7704. let text = ''
  7705. if (aTool == 1) {
  7706. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7707. } else if (aTool == 6) {
  7708. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7709. } else if (aTool == 3) {
  7710. text = await U.MD.D.I.getEditorContent(_iframe);
  7711. }
  7712. _loading.style.display = 'flex'
  7713. console.log(_loading);
  7714. var _ajs = _iframe.contentWindow.document.createElement("script");
  7715. _ajs.type = "text/javascript";
  7716. _ajs.innerHTML =
  7717. // 'console.log(' + _loading + ');\n' +
  7718. 'var _js = document.createElement("script");\n' +
  7719. '_js.type="text/javascript";\n' +
  7720. '_js.charset="UTF-8";\n' +
  7721. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7722. "_js.onload = function(){\n" +
  7723. ' var a = document.getElementsByTagName("img")\n' +
  7724. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7725. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7726. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7727. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7728. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7729. "beforeUpload_shishi(file," +
  7730. "'" +
  7731. _userid +
  7732. "'" +
  7733. ", " +
  7734. "'" +
  7735. _cid +
  7736. "'" +
  7737. ", " +
  7738. "'" +
  7739. _stage +
  7740. "'" +
  7741. ", " +
  7742. "'" +
  7743. _task +
  7744. "'" +
  7745. ", " +
  7746. "'" +
  7747. _tool +
  7748. "'" +
  7749. ", " +
  7750. "'" +
  7751. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7752. "'" +
  7753. ", " +
  7754. "'" +
  7755. aTool +
  7756. "'" +
  7757. ", " +
  7758. "`" +
  7759. text +
  7760. "`" +
  7761. ")\n" +
  7762. " });\n" +
  7763. "}\n" +
  7764. "document.head.appendChild(_js);\n";
  7765. _iframe.contentWindow.document.head.appendChild(_ajs);
  7766. }
  7767. }
  7768. //U.MD.D.I.openClick(str);
  7769. //如果有任务栏信息
  7770. // if (_taskbar) {
  7771. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7772. // }
  7773. }
  7774. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7775. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7776. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7777. _userinfo = US.userInfo, //登录用户信息
  7778. _userid = US.userInfo.userid //登录用户id
  7779. let _iframe;
  7780. let _cid = cid,
  7781. _stage = stage,
  7782. _task = task,
  7783. _tool = tool;
  7784. var _jie = $$("div", {
  7785. "style": {
  7786. "position": "absolute",
  7787. "bottom": "50px",
  7788. "right": "50px",
  7789. "zIndex": "9999",
  7790. "backgroundColor": "#2268bc",
  7791. "color": "#fff",
  7792. "padding": "12px 20px",
  7793. "cursor": "pointer",
  7794. "borderRadius": "4px",
  7795. },
  7796. "innerHTML": "提交作业"
  7797. })
  7798. let aTool = ''
  7799. let _loading = document.createElement('div')
  7800. _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;"
  7801. // _loading.id = "";
  7802. let _lchild = document.createElement('div')
  7803. let _limg = document.createElement('img')
  7804. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7805. _limg.style = "width: 26px;margin-right: 10px;"
  7806. _lchild.appendChild(_limg)
  7807. let _lspan = document.createElement('span')
  7808. _lspan.innerHTML = "上传中..."
  7809. _lchild.appendChild(_lspan)
  7810. _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%);"
  7811. _loading.appendChild(_lchild)
  7812. let _box = $$('div', {
  7813. "style": {
  7814. "position": "relative",
  7815. "width": "100%",
  7816. "height": "100%",
  7817. },
  7818. })
  7819. _box.appendChild(_loading)
  7820. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7821. switch (str) {
  7822. case "whiteboard":
  7823. aTool = 1;
  7824. _iframe = $$("iframe", {
  7825. "frameborder": "no",
  7826. "border": "0",
  7827. "scrolling ": "no",
  7828. "style": {
  7829. "cssText": "border:0;width:100%;height:100%"
  7830. },
  7831. "src": "https://beta.iwb.cocorobo.cn/"
  7832. })
  7833. _box.appendChild(_iframe);
  7834. _box.appendChild(_jie);
  7835. _formdiv = new U.UF.UI.form(
  7836. "电子白板",
  7837. _box, {
  7838. "id": "whiteboard" + cid + stage + task + tool,
  7839. "style": {
  7840. "width": "90%",
  7841. "height": "90%",
  7842. "overflow": 'hidden'
  7843. },
  7844. "onresize": function () { }
  7845. }, {
  7846. closecallback: function () { }
  7847. }, {
  7848. "style": {
  7849. "height": "36px"
  7850. }
  7851. }).form; //创建窗体
  7852. _taskbar = {
  7853. "id": str + _formdiv.id,
  7854. "style": {
  7855. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7856. },
  7857. "name": "电子白板",
  7858. "forms": _formdiv,
  7859. "click": function () {
  7860. U.MD.D.I.openApplication(str, obj, info);
  7861. }
  7862. }
  7863. break;
  7864. case "mind":
  7865. aTool = 3;
  7866. _iframe = $$("iframe", {
  7867. "frameborder": "no",
  7868. "border": "0",
  7869. "scrolling ": "no",
  7870. "style": {
  7871. "cssText": "border:0;width:100%;height:100%"
  7872. },
  7873. "src": "/kityminder-editor/dist/index.html"
  7874. })
  7875. _box.appendChild(_iframe);
  7876. _box.appendChild(_jie);
  7877. _formdiv = new U.UF.UI.form(
  7878. "思维导图",
  7879. _box, { //"/jsmind/example/demo.html"
  7880. "id": "mind" + cid + stage + task + tool,
  7881. "style": {
  7882. "width": "90%",
  7883. "height": "90%",
  7884. "overflow": 'hidden'
  7885. },
  7886. "onresize": function () { }
  7887. }, {
  7888. closecallback: function () { }
  7889. }, {
  7890. "style": {
  7891. "height": "36px"
  7892. }
  7893. }).form; //创建窗体
  7894. _taskbar = {
  7895. "id": str + _formdiv.id,
  7896. "style": {
  7897. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7898. },
  7899. "name": "思维导图",
  7900. "forms": _formdiv,
  7901. "click": function () {
  7902. U.MD.D.I.openApplication(str, obj, info);
  7903. }
  7904. }
  7905. break;
  7906. case "MindMap":
  7907. aTool = 3;
  7908. _iframe = $$("iframe", {
  7909. "frameborder": "no",
  7910. "border": "0",
  7911. "scrolling ": "no",
  7912. "style": {
  7913. "cssText": "border:0;width:100%;height:100%"
  7914. },
  7915. "src": "//cloud.cocorobo.cn/mind/"
  7916. })
  7917. _box.appendChild(_iframe);
  7918. _box.appendChild(_jie);
  7919. _formdiv = new U.UF.UI.form(
  7920. "思维导图",
  7921. _box, { //"/jsmind/example/demo.html"
  7922. "id": "mind" + cid + stage + task + tool,
  7923. "style": {
  7924. "width": "90%",
  7925. "height": "90%",
  7926. "overflow": 'hidden'
  7927. },
  7928. "onresize": function () { }
  7929. }, {
  7930. closecallback: function () { }
  7931. }, {
  7932. "style": {
  7933. "height": "36px"
  7934. }
  7935. }).form; //创建窗体
  7936. _taskbar = {
  7937. "id": str + _formdiv.id,
  7938. "style": {
  7939. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7940. },
  7941. "name": "思维导图",
  7942. "forms": _formdiv,
  7943. "click": function () {
  7944. U.MD.D.I.openApplication(str, obj, info);
  7945. }
  7946. }
  7947. break;
  7948. case "doc":
  7949. aTool = 6;
  7950. _iframe = $$("iframe", {
  7951. "frameborder": "no",
  7952. "border": "0",
  7953. "scrolling ": "no",
  7954. "style": {
  7955. "cssText": "border:0;width:100%;height:100%"
  7956. },
  7957. "src": "/Office/Word/WordEditArea.htm"
  7958. })
  7959. _box.appendChild(_iframe);
  7960. _box.appendChild(_jie);
  7961. _formdiv = new U.UF.UI.form(
  7962. "协同文档",
  7963. _box, {
  7964. "id": "doc" + cid + stage + task + tool,
  7965. "style": {
  7966. "width": "90%",
  7967. "height": "90%",
  7968. "overflow": 'hidden'
  7969. },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, {
  7974. "style": {
  7975. "height": "36px"
  7976. }
  7977. }).form; //创建窗体
  7978. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7979. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7980. })
  7981. _taskbar = {
  7982. "id": str + _formdiv.id,
  7983. "style": {
  7984. "backgroundImage": "url(/img/icon/doc.png)"
  7985. },
  7986. "name": "协同文档",
  7987. "forms": _formdiv,
  7988. "click": function () {
  7989. U.MD.D.I.openApplication(str, obj, info);
  7990. }
  7991. }
  7992. break;
  7993. case "mindNetwork": //好友打开
  7994. aTool = 7;
  7995. _iframe = $$("iframe", {
  7996. "webkitallowfullscreen": "",
  7997. "mozallowfullscreen": "",
  7998. "allowfullscreen": "",
  7999. "frameborder": "no",
  8000. "border": "0",
  8001. "scrolling ": "no",
  8002. "style": {
  8003. "cssText": "border:0; width:100%; height:100%;"
  8004. },
  8005. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8006. })
  8007. _box.appendChild(_iframe);
  8008. _box.appendChild(_jie);
  8009. _formdiv = new U.UF.UI.form(
  8010. "思维网格",
  8011. _box, {
  8012. "id": "mindNetwork" + cid + stage + task + tool,
  8013. "style": {
  8014. "width": "90%",
  8015. "height": "90%",
  8016. "overflow": 'hidden'
  8017. },
  8018. "onresize": function () { }
  8019. }, {
  8020. closecallback: function () { }
  8021. }, {
  8022. "style": {
  8023. "height": "36px"
  8024. }
  8025. }).form; //创建窗体
  8026. _taskbar = {
  8027. "id": str + _formdiv.id,
  8028. "style": {
  8029. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8030. },
  8031. "name": "思维网格",
  8032. "forms": _formdiv,
  8033. "click": function () {
  8034. U.MD.D.I.openApplication(str, obj, info);
  8035. }
  8036. }
  8037. break;
  8038. case "courseDesign":
  8039. _iframe = $$("iframe", {
  8040. "webkitallowfullscreen": "",
  8041. "mozallowfullscreen": "",
  8042. "allowfullscreen": "",
  8043. "frameborder": "no",
  8044. "border": "0",
  8045. "scrolling ": "no",
  8046. "style": {
  8047. "cssText": "border:0; width:100%; height:100%;"
  8048. },
  8049. "src": "/course-design-vue"
  8050. })
  8051. _box.appendChild(_iframe);
  8052. _box.appendChild(_jie);
  8053. _formdiv = new U.UF.UI.form(
  8054. "项目设计",
  8055. _box, {
  8056. "id": "courseDesign" + cid + stage + task + tool,
  8057. "style": {
  8058. "width": "90%",
  8059. "height": "90%",
  8060. "overflow": 'hidden'
  8061. },
  8062. "onresize": function () { }
  8063. }, {
  8064. closecallback: function () { }
  8065. }, {
  8066. "style": {
  8067. "height": "36px"
  8068. }
  8069. }).form; //创建窗体
  8070. _taskbar = {
  8071. "id": str + _formdiv.id,
  8072. "style": {
  8073. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8074. },
  8075. "name": "项目设计",
  8076. "forms": _formdiv,
  8077. "click": function () {
  8078. U.MD.D.I.openApplication(str, obj, info);
  8079. }
  8080. }
  8081. break;
  8082. }
  8083. const script1 = document.createElement("script");
  8084. script1.type = "text/javascript";
  8085. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8086. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8087. const script2 = document.createElement("script");
  8088. script2.type = "text/javascript";
  8089. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8090. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8091. const script3 = document.createElement("script");
  8092. script3.type = "text/javascript";
  8093. script3.charset = "UTF-8";
  8094. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8095. const script4 = document.createElement("script");
  8096. script4.type = "text/javascript";
  8097. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8098. script4.src = window.origin + "/js/Common/jietu2E.js";
  8099. if (_iframe) {
  8100. if (str == 'doc') {
  8101. _iframe = _formdiv.querySelector('iframe')
  8102. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8103. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8104. _iframe.contentWindow.document.body.appendChild(script1);
  8105. _iframe.contentWindow.document.body.appendChild(script2);
  8106. // _iframe.contentWindow.document.body.appendChild(script3);
  8107. _iframe.contentWindow.document.body.appendChild(script4);
  8108. })
  8109. if (onloadListener) {
  8110. _iframe.contentDocument.location.reload()
  8111. } else {
  8112. _iframe.contentDocument.location.reload()
  8113. }
  8114. } else if (str == 'courseDesign') {
  8115. U.UF.DL.iframeLoad(_iframe, function () {
  8116. // _iframe.contentWindow.U.MD.O.W.load();
  8117. // _iframe.contentWindow.document.body.appendChild(script1);
  8118. _iframe.contentWindow.document.body.appendChild(script2);
  8119. _iframe.contentWindow.document.body.appendChild(script4);
  8120. })
  8121. } else if (str == 'mind') {
  8122. _iframe = _formdiv.querySelector('iframe')
  8123. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8124. //
  8125. _iframe.contentWindow.document.body.appendChild(script1);
  8126. _iframe.contentWindow.document.body.appendChild(script2);
  8127. _iframe.contentWindow.document.body.appendChild(script4);
  8128. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8129. })
  8130. if (onloadListener) {
  8131. _iframe.contentDocument.location.reload()
  8132. } else {
  8133. _iframe.contentDocument.location.reload()
  8134. }
  8135. } else if (str == 'whiteboard') {
  8136. _iframe = _formdiv.querySelector('iframe')
  8137. let onloadListener = _iframe.onload = () => {
  8138. _iframe.contentWindow.document.body.appendChild(script1);
  8139. _iframe.contentWindow.document.body.appendChild(script2);
  8140. _iframe.contentWindow.document.body.appendChild(script4);
  8141. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8142. };
  8143. // if (onloadListener) {
  8144. // try {
  8145. // _iframe.src += "?cocorobo="+new Date().getTime()
  8146. // _iframe.contentWindow.document.location.reload()
  8147. // } catch (error) {
  8148. // }
  8149. // } else {
  8150. // _iframe.contentDocument.location.reload()
  8151. // }
  8152. } else {
  8153. _iframe.onload = () => {
  8154. _iframe.contentWindow.document.body.appendChild(script1);
  8155. _iframe.contentWindow.document.body.appendChild(script2);
  8156. // _iframe.contentWindow.document.body.appendChild(script3);
  8157. _iframe.contentWindow.document.body.appendChild(script4);
  8158. };
  8159. }
  8160. _jie.onclick = async () => {
  8161. let text = ''
  8162. if (aTool == 1) {
  8163. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8164. } else if (aTool == 6) {
  8165. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8166. } else if (aTool == 3) {
  8167. text = await U.MD.D.I.getEditorContent(_iframe);
  8168. }
  8169. _loading.style.display = 'flex'
  8170. console.log(_loading);
  8171. var _ajs = _iframe.contentWindow.document.createElement("script");
  8172. _ajs.type = "text/javascript";
  8173. _ajs.innerHTML =
  8174. // 'console.log(' + _loading + ');\n' +
  8175. 'var _js = document.createElement("script");\n' +
  8176. '_js.type="text/javascript";\n' +
  8177. '_js.charset="UTF-8";\n' +
  8178. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8179. "_js.onload = function(){\n" +
  8180. ' var a = document.getElementsByTagName("img")\n' +
  8181. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8182. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8183. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8184. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8185. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8186. "beforeUpload_shishi(file," +
  8187. "'" +
  8188. _userid +
  8189. "'" +
  8190. ", " +
  8191. "'" +
  8192. _cid +
  8193. "'" +
  8194. ", " +
  8195. "'" +
  8196. _stage +
  8197. "'" +
  8198. ", " +
  8199. "'" +
  8200. _task +
  8201. "'" +
  8202. ", " +
  8203. "'" +
  8204. _tool +
  8205. "'" +
  8206. ", " +
  8207. "'" +
  8208. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8209. "'" +
  8210. ", " +
  8211. "'" +
  8212. aTool +
  8213. "'" +
  8214. ", " +
  8215. "`" +
  8216. text +
  8217. "`" +
  8218. ")\n" +
  8219. " });\n" +
  8220. "}\n" +
  8221. "document.head.appendChild(_js);\n";
  8222. _iframe.contentWindow.document.head.appendChild(_ajs);
  8223. }
  8224. }
  8225. //U.MD.D.I.openClick(str);
  8226. //如果有任务栏信息
  8227. // if (_taskbar) {
  8228. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8229. // }
  8230. }
  8231. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8232. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8233. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8234. _userid = student.userid, //登录用户id
  8235. _username = student.student //用户名字
  8236. let _iframe;
  8237. let _cid = cid,
  8238. _stage = stage,
  8239. _task = task,
  8240. _tool = tool;
  8241. var _jie = $$("div", {
  8242. "style": {
  8243. "position": "absolute",
  8244. "bottom": "50px",
  8245. "right": "50px",
  8246. "zIndex": "9999",
  8247. "backgroundColor": "#2268bc",
  8248. "color": "#fff",
  8249. "padding": "12px 20px",
  8250. "cursor": "pointer",
  8251. "borderRadius": "4px",
  8252. },
  8253. "innerHTML": "提交作业"
  8254. })
  8255. let aTool = ''
  8256. let _loading = document.createElement('div')
  8257. _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;"
  8258. // _loading.id = "";
  8259. let _lchild = document.createElement('div')
  8260. let _limg = document.createElement('img')
  8261. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8262. _limg.style = "width: 26px;margin-right: 10px;"
  8263. _lchild.appendChild(_limg)
  8264. let _lspan = document.createElement('span')
  8265. _lspan.innerHTML = "上传中..."
  8266. _lchild.appendChild(_lspan)
  8267. _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%);"
  8268. _loading.appendChild(_lchild)
  8269. var _box = $$('div', {
  8270. "style": {
  8271. "position": "relative",
  8272. "width": "100%",
  8273. "height": "100%",
  8274. },
  8275. })
  8276. _box.appendChild(_loading)
  8277. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8278. switch (str) {
  8279. case "whiteboard":
  8280. aTool = 1;
  8281. _iframe = $$("iframe", {
  8282. "frameborder": "no",
  8283. "border": "0",
  8284. "scrolling ": "no",
  8285. "style": {
  8286. "cssText": "border:0;width:100%;height:100%"
  8287. },
  8288. "src": "https://beta.iwb.cocorobo.cn/"
  8289. })
  8290. _box.appendChild(_iframe);
  8291. _box.appendChild(_jie);
  8292. _formdiv = new U.UF.UI.form(
  8293. "电子白板-" + _username,
  8294. _box, {
  8295. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8296. "style": {
  8297. "width": "90%",
  8298. "height": "90%",
  8299. "overflow": 'hidden'
  8300. },
  8301. "onresize": function () { }
  8302. }, {
  8303. closecallback: function () { }
  8304. }, {
  8305. "style": {
  8306. "height": "36px"
  8307. }
  8308. }).form; //创建窗体
  8309. _taskbar = {
  8310. "id": str + _formdiv.id,
  8311. "style": {
  8312. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8313. },
  8314. "name": "电子白板",
  8315. "forms": _formdiv,
  8316. "click": function () {
  8317. U.MD.D.I.openApplication(str, obj, info);
  8318. }
  8319. }
  8320. break;
  8321. case "mind":
  8322. aTool = 3;
  8323. _iframe = $$("iframe", {
  8324. "frameborder": "no",
  8325. "border": "0",
  8326. "scrolling ": "no",
  8327. "style": {
  8328. "cssText": "border:0;width:100%;height:100%"
  8329. },
  8330. "src": "/kityminder-editor/dist/index.html"
  8331. })
  8332. _box.appendChild(_iframe);
  8333. _box.appendChild(_jie);
  8334. _formdiv = new U.UF.UI.form(
  8335. "思维导图-" + _username,
  8336. _box, { //"/jsmind/example/demo.html"
  8337. "id": "mind" + cid + stage + task + tool + _userid,
  8338. "style": {
  8339. "width": "90%",
  8340. "height": "90%",
  8341. "overflow": 'hidden'
  8342. },
  8343. "onresize": function () { }
  8344. }, {
  8345. closecallback: function () { }
  8346. }, {
  8347. "style": {
  8348. "height": "36px"
  8349. }
  8350. }).form; //创建窗体
  8351. _taskbar = {
  8352. "id": str + _formdiv.id,
  8353. "style": {
  8354. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8355. },
  8356. "name": "思维导图",
  8357. "forms": _formdiv,
  8358. "click": function () {
  8359. U.MD.D.I.openApplication(str, obj, info);
  8360. }
  8361. }
  8362. break;
  8363. case "MindMap":
  8364. aTool = 3;
  8365. _iframe = $$("iframe", {
  8366. "frameborder": "no",
  8367. "border": "0",
  8368. "scrolling ": "no",
  8369. "style": {
  8370. "cssText": "border:0;width:100%;height:100%"
  8371. },
  8372. "src": "//cloud.cocorobo.cn/mind/"
  8373. })
  8374. _box.appendChild(_iframe);
  8375. _box.appendChild(_jie);
  8376. _formdiv = new U.UF.UI.form(
  8377. "思维导图-" + _username,
  8378. _box, { //"/jsmind/example/demo.html"
  8379. "id": "mind" + cid + stage + task + tool + _userid,
  8380. "style": {
  8381. "width": "90%",
  8382. "height": "90%",
  8383. "overflow": 'hidden'
  8384. },
  8385. "onresize": function () { }
  8386. }, {
  8387. closecallback: function () { }
  8388. }, {
  8389. "style": {
  8390. "height": "36px"
  8391. }
  8392. }).form; //创建窗体
  8393. _taskbar = {
  8394. "id": str + _formdiv.id,
  8395. "style": {
  8396. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8397. },
  8398. "name": "思维导图",
  8399. "forms": _formdiv,
  8400. "click": function () {
  8401. U.MD.D.I.openApplication(str, obj, info);
  8402. }
  8403. }
  8404. break;
  8405. case "doc":
  8406. aTool = 6;
  8407. _iframe = $$("iframe", {
  8408. "frameborder": "no",
  8409. "border": "0",
  8410. "scrolling ": "no",
  8411. "style": {
  8412. "cssText": "border:0;width:100%;height:100%"
  8413. },
  8414. "src": "/Office/Word/WordEditArea.htm"
  8415. })
  8416. _box.appendChild(_iframe);
  8417. _box.appendChild(_jie);
  8418. _formdiv = new U.UF.UI.form(
  8419. "协同文档-" + _username,
  8420. _box, {
  8421. "id": "doc" + cid + stage + task + tool + _userid,
  8422. "style": {
  8423. "width": "90%",
  8424. "height": "90%",
  8425. "overflow": 'hidden'
  8426. },
  8427. "onresize": function () { }
  8428. }, {
  8429. closecallback: function () { }
  8430. }, {
  8431. "style": {
  8432. "height": "36px"
  8433. }
  8434. }).form; //创建窗体
  8435. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8436. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8437. })
  8438. _taskbar = {
  8439. "id": str + _formdiv.id,
  8440. "style": {
  8441. "backgroundImage": "url(/img/icon/doc.png)"
  8442. },
  8443. "name": "协同文档",
  8444. "forms": _formdiv,
  8445. "click": function () {
  8446. U.MD.D.I.openApplication(str, obj, info);
  8447. }
  8448. }
  8449. break;
  8450. case "mindNetwork": //好友打开
  8451. aTool = 7;
  8452. _iframe = $$("iframe", {
  8453. "webkitallowfullscreen": "",
  8454. "mozallowfullscreen": "",
  8455. "allowfullscreen": "",
  8456. "frameborder": "no",
  8457. "border": "0",
  8458. "scrolling ": "no",
  8459. "style": {
  8460. "cssText": "border:0; width:100%; height:100%;"
  8461. },
  8462. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8463. })
  8464. _box.appendChild(_iframe);
  8465. _box.appendChild(_jie);
  8466. _formdiv = new U.UF.UI.form(
  8467. "思维网格-" + _username,
  8468. _box, {
  8469. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8470. "style": {
  8471. "width": "90%",
  8472. "height": "90%",
  8473. "overflow": 'hidden'
  8474. },
  8475. "onresize": function () { }
  8476. }, {
  8477. closecallback: function () { }
  8478. }, {
  8479. "style": {
  8480. "height": "36px"
  8481. }
  8482. }).form; //创建窗体
  8483. _taskbar = {
  8484. "id": str + _formdiv.id,
  8485. "style": {
  8486. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8487. },
  8488. "name": "思维网格",
  8489. "forms": _formdiv,
  8490. "click": function () {
  8491. U.MD.D.I.openApplication(str, obj, info);
  8492. }
  8493. }
  8494. break;
  8495. case "courseDesign":
  8496. _iframe = $$("iframe", {
  8497. "webkitallowfullscreen": "",
  8498. "mozallowfullscreen": "",
  8499. "allowfullscreen": "",
  8500. "frameborder": "no",
  8501. "border": "0",
  8502. "scrolling ": "no",
  8503. "style": {
  8504. "cssText": "border:0; width:100%; height:100%;"
  8505. },
  8506. "src": "/course-design-vue"
  8507. })
  8508. _box.appendChild(_iframe);
  8509. _box.appendChild(_jie);
  8510. _formdiv = new U.UF.UI.form(
  8511. "项目设计-" + _username,
  8512. _box, {
  8513. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8514. "style": {
  8515. "width": "90%",
  8516. "height": "90%",
  8517. "overflow": 'hidden'
  8518. },
  8519. "onresize": function () { }
  8520. }, {
  8521. closecallback: function () { }
  8522. }, {
  8523. "style": {
  8524. "height": "36px"
  8525. }
  8526. }).form; //创建窗体
  8527. _taskbar = {
  8528. "id": str + _formdiv.id,
  8529. "style": {
  8530. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8531. },
  8532. "name": "项目设计",
  8533. "forms": _formdiv,
  8534. "click": function () {
  8535. U.MD.D.I.openApplication(str, obj, info);
  8536. }
  8537. }
  8538. break;
  8539. }
  8540. const script1 = document.createElement("script");
  8541. script1.type = "text/javascript";
  8542. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8543. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8544. const script2 = document.createElement("script");
  8545. script2.type = "text/javascript";
  8546. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8547. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8548. const script3 = document.createElement("script");
  8549. script3.type = "text/javascript";
  8550. script3.charset = "UTF-8";
  8551. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8552. const script4 = document.createElement("script");
  8553. script4.type = "text/javascript";
  8554. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8555. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8556. if (_iframe) {
  8557. if (str == 'doc') {
  8558. _iframe = _formdiv.querySelector('iframe')
  8559. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8560. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8561. _iframe.contentWindow.document.body.appendChild(script1);
  8562. _iframe.contentWindow.document.body.appendChild(script2);
  8563. // _iframe.contentWindow.document.body.appendChild(script3);
  8564. _iframe.contentWindow.document.body.appendChild(script4);
  8565. })
  8566. if (onloadListener) {
  8567. _iframe.contentDocument.location.reload()
  8568. } else {
  8569. _iframe.contentDocument.location.reload()
  8570. }
  8571. } else if (str == 'courseDesign') {
  8572. U.UF.DL.iframeLoad(_iframe, function () {
  8573. // _iframe.contentWindow.U.MD.O.W.load();
  8574. // _iframe.contentWindow.document.body.appendChild(script1);
  8575. _iframe.contentWindow.document.body.appendChild(script2);
  8576. _iframe.contentWindow.document.body.appendChild(script4);
  8577. })
  8578. } else if (str == 'mind') {
  8579. _iframe = _formdiv.querySelector('iframe')
  8580. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8581. //
  8582. _iframe.contentWindow.document.body.appendChild(script1);
  8583. _iframe.contentWindow.document.body.appendChild(script2);
  8584. _iframe.contentWindow.document.body.appendChild(script4);
  8585. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8586. })
  8587. if (onloadListener) {
  8588. _iframe.contentDocument.location.reload()
  8589. } else {
  8590. _iframe.contentDocument.location.reload()
  8591. }
  8592. } else if (str == 'whiteboard') {
  8593. _iframe = _formdiv.querySelector('iframe')
  8594. let onloadListener = _iframe.onload = () => {
  8595. _iframe.contentWindow.document.body.appendChild(script1);
  8596. _iframe.contentWindow.document.body.appendChild(script2);
  8597. _iframe.contentWindow.document.body.appendChild(script4);
  8598. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8599. };
  8600. // if (onloadListener) {
  8601. // try {
  8602. // _iframe.src += "?cocorobo="+new Date().getTime()
  8603. // _iframe.contentWindow.document.location.reload()
  8604. // } catch (error) {
  8605. // }
  8606. // } else {
  8607. // _iframe.contentDocument.location.reload()
  8608. // }
  8609. } else {
  8610. _iframe.onload = () => {
  8611. _iframe.contentWindow.document.body.appendChild(script1);
  8612. _iframe.contentWindow.document.body.appendChild(script2);
  8613. // _iframe.contentWindow.document.body.appendChild(script3);
  8614. _iframe.contentWindow.document.body.appendChild(script4);
  8615. };
  8616. }
  8617. _jie.onclick = async () => {
  8618. let text = ''
  8619. if (aTool == 1) {
  8620. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8621. } else if (aTool == 6) {
  8622. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8623. } else if (aTool == 3) {
  8624. text = await U.MD.D.I.getEditorContent(_iframe);
  8625. }
  8626. _loading.style.display = 'flex'
  8627. console.log(_loading);
  8628. var _ajs = _iframe.contentWindow.document.createElement("script");
  8629. _ajs.type = "text/javascript";
  8630. _ajs.innerHTML =
  8631. // 'console.log(' + _loading + ');\n' +
  8632. 'var _js = document.createElement("script");\n' +
  8633. '_js.type="text/javascript";\n' +
  8634. '_js.charset="UTF-8";\n' +
  8635. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8636. "_js.onload = function(){\n" +
  8637. ' var a = document.getElementsByTagName("img")\n' +
  8638. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8639. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8640. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8641. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8642. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8643. "beforeUpload_shishi(file," +
  8644. "'" +
  8645. _userid +
  8646. "'" +
  8647. ", " +
  8648. "'" +
  8649. _cid +
  8650. "'" +
  8651. ", " +
  8652. "'" +
  8653. _stage +
  8654. "'" +
  8655. ", " +
  8656. "'" +
  8657. _task +
  8658. "'" +
  8659. ", " +
  8660. "'" +
  8661. _tool +
  8662. "'" +
  8663. ", " +
  8664. "'" +
  8665. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8666. "'" +
  8667. ", " +
  8668. "'" +
  8669. aTool +
  8670. "'" +
  8671. ", " +
  8672. "`" +
  8673. text +
  8674. "`" +
  8675. ")\n" +
  8676. " });\n" +
  8677. "}\n" +
  8678. "document.head.appendChild(_js);\n";
  8679. _iframe.contentWindow.document.head.appendChild(_ajs);
  8680. }
  8681. }
  8682. }
  8683. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8684. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8685. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8686. _userid = student.userid, //登录用户id
  8687. _username = student.student //用户名字
  8688. let _iframe;
  8689. let _cid = cid,
  8690. _stage = stage,
  8691. _task = task,
  8692. _tool = tool;
  8693. var _jie = $$("div", {
  8694. "style": {
  8695. "position": "absolute",
  8696. "bottom": "50px",
  8697. "right": "50px",
  8698. "zIndex": "9999",
  8699. "backgroundColor": "#2268bc",
  8700. "color": "#fff",
  8701. "padding": "12px 20px",
  8702. "cursor": "pointer",
  8703. "borderRadius": "4px",
  8704. },
  8705. "innerHTML": "提交作业"
  8706. })
  8707. let aTool = ''
  8708. let _loading = document.createElement('div')
  8709. _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;"
  8710. // _loading.id = "";
  8711. let _lchild = document.createElement('div')
  8712. let _limg = document.createElement('img')
  8713. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8714. _limg.style = "width: 26px;margin-right: 10px;"
  8715. _lchild.appendChild(_limg)
  8716. let _lspan = document.createElement('span')
  8717. _lspan.innerHTML = "上传中..."
  8718. _lchild.appendChild(_lspan)
  8719. _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%);"
  8720. _loading.appendChild(_lchild)
  8721. var _box = $$('div', {
  8722. "style": {
  8723. "position": "relative",
  8724. "width": "100%",
  8725. "height": "100%",
  8726. },
  8727. })
  8728. _box.appendChild(_loading)
  8729. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8730. switch (str) {
  8731. case "whiteboard":
  8732. aTool = 1;
  8733. _iframe = $$("iframe", {
  8734. "frameborder": "no",
  8735. "border": "0",
  8736. "scrolling ": "no",
  8737. "style": {
  8738. "cssText": "border:0;width:100%;height:100%"
  8739. },
  8740. "src": "https://beta.iwb.cocorobo.cn/"
  8741. })
  8742. _box.appendChild(_iframe);
  8743. _box.appendChild(_jie);
  8744. _formdiv = new U.UF.UI.form(
  8745. "电子白板-" + _username,
  8746. _box, {
  8747. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8748. "style": {
  8749. "width": "90%",
  8750. "height": "90%",
  8751. "overflow": 'hidden'
  8752. },
  8753. "onresize": function () { }
  8754. }, {
  8755. closecallback: function () { }
  8756. }, {
  8757. "style": {
  8758. "height": "36px"
  8759. }
  8760. }).form; //创建窗体
  8761. _taskbar = {
  8762. "id": str + _formdiv.id,
  8763. "style": {
  8764. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8765. },
  8766. "name": "电子白板",
  8767. "forms": _formdiv,
  8768. "click": function () {
  8769. U.MD.D.I.openApplication(str, obj, info);
  8770. }
  8771. }
  8772. break;
  8773. case "mind":
  8774. aTool = 3;
  8775. _iframe = $$("iframe", {
  8776. "frameborder": "no",
  8777. "border": "0",
  8778. "scrolling ": "no",
  8779. "style": {
  8780. "cssText": "border:0;width:100%;height:100%"
  8781. },
  8782. "src": "/kityminder-editor/dist/index.html"
  8783. })
  8784. _box.appendChild(_iframe);
  8785. _box.appendChild(_jie);
  8786. _formdiv = new U.UF.UI.form(
  8787. "思维导图-" + _username,
  8788. _box, { //"/jsmind/example/demo.html"
  8789. "id": "mind" + cid + stage + task + tool + _userid,
  8790. "style": {
  8791. "width": "90%",
  8792. "height": "90%",
  8793. "overflow": 'hidden'
  8794. },
  8795. "onresize": function () { }
  8796. }, {
  8797. closecallback: function () { }
  8798. }, {
  8799. "style": {
  8800. "height": "36px"
  8801. }
  8802. }).form; //创建窗体
  8803. _taskbar = {
  8804. "id": str + _formdiv.id,
  8805. "style": {
  8806. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8807. },
  8808. "name": "思维导图",
  8809. "forms": _formdiv,
  8810. "click": function () {
  8811. U.MD.D.I.openApplication(str, obj, info);
  8812. }
  8813. }
  8814. break;
  8815. case "MindMap":
  8816. aTool = 3;
  8817. _iframe = $$("iframe", {
  8818. "frameborder": "no",
  8819. "border": "0",
  8820. "scrolling ": "no",
  8821. "style": {
  8822. "cssText": "border:0;width:100%;height:100%"
  8823. },
  8824. "src": "//cloud.cocorobo.cn/mind/"
  8825. })
  8826. _box.appendChild(_iframe);
  8827. _box.appendChild(_jie);
  8828. _formdiv = new U.UF.UI.form(
  8829. "思维导图-" + _username,
  8830. _box, { //"/jsmind/example/demo.html"
  8831. "id": "mind" + cid + stage + task + tool + _userid,
  8832. "style": {
  8833. "width": "90%",
  8834. "height": "90%",
  8835. "overflow": 'hidden'
  8836. },
  8837. "onresize": function () { }
  8838. }, {
  8839. closecallback: function () { }
  8840. }, {
  8841. "style": {
  8842. "height": "36px"
  8843. }
  8844. }).form; //创建窗体
  8845. _taskbar = {
  8846. "id": str + _formdiv.id,
  8847. "style": {
  8848. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8849. },
  8850. "name": "思维导图",
  8851. "forms": _formdiv,
  8852. "click": function () {
  8853. U.MD.D.I.openApplication(str, obj, info);
  8854. }
  8855. }
  8856. break;
  8857. case "doc":
  8858. aTool = 6;
  8859. _iframe = $$("iframe", {
  8860. "frameborder": "no",
  8861. "border": "0",
  8862. "scrolling ": "no",
  8863. "style": {
  8864. "cssText": "border:0;width:100%;height:100%"
  8865. },
  8866. "src": "/Office/Word/WordEditArea.htm"
  8867. })
  8868. _box.appendChild(_iframe);
  8869. _box.appendChild(_jie);
  8870. _formdiv = new U.UF.UI.form(
  8871. "协同文档-" + _username,
  8872. _box, {
  8873. "id": "doc" + cid + stage + task + tool + _userid,
  8874. "style": {
  8875. "width": "90%",
  8876. "height": "90%",
  8877. "overflow": 'hidden'
  8878. },
  8879. "onresize": function () { }
  8880. }, {
  8881. closecallback: function () { }
  8882. }, {
  8883. "style": {
  8884. "height": "36px"
  8885. }
  8886. }).form; //创建窗体
  8887. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8888. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8889. })
  8890. _taskbar = {
  8891. "id": str + _formdiv.id,
  8892. "style": {
  8893. "backgroundImage": "url(/img/icon/doc.png)"
  8894. },
  8895. "name": "协同文档",
  8896. "forms": _formdiv,
  8897. "click": function () {
  8898. U.MD.D.I.openApplication(str, obj, info);
  8899. }
  8900. }
  8901. break;
  8902. case "mindNetwork": //好友打开
  8903. aTool = 7;
  8904. _iframe = $$("iframe", {
  8905. "webkitallowfullscreen": "",
  8906. "mozallowfullscreen": "",
  8907. "allowfullscreen": "",
  8908. "frameborder": "no",
  8909. "border": "0",
  8910. "scrolling ": "no",
  8911. "style": {
  8912. "cssText": "border:0; width:100%; height:100%;"
  8913. },
  8914. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8915. })
  8916. _box.appendChild(_iframe);
  8917. _box.appendChild(_jie);
  8918. _formdiv = new U.UF.UI.form(
  8919. "思维网格-" + _username,
  8920. _box, {
  8921. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8922. "style": {
  8923. "width": "90%",
  8924. "height": "90%",
  8925. "overflow": 'hidden'
  8926. },
  8927. "onresize": function () { }
  8928. }, {
  8929. closecallback: function () { }
  8930. }, {
  8931. "style": {
  8932. "height": "36px"
  8933. }
  8934. }).form; //创建窗体
  8935. _taskbar = {
  8936. "id": str + _formdiv.id,
  8937. "style": {
  8938. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8939. },
  8940. "name": "思维网格",
  8941. "forms": _formdiv,
  8942. "click": function () {
  8943. U.MD.D.I.openApplication(str, obj, info);
  8944. }
  8945. }
  8946. break;
  8947. case "courseDesign":
  8948. _iframe = $$("iframe", {
  8949. "webkitallowfullscreen": "",
  8950. "mozallowfullscreen": "",
  8951. "allowfullscreen": "",
  8952. "frameborder": "no",
  8953. "border": "0",
  8954. "scrolling ": "no",
  8955. "style": {
  8956. "cssText": "border:0; width:100%; height:100%;"
  8957. },
  8958. "src": "/course-design-vue"
  8959. })
  8960. _box.appendChild(_iframe);
  8961. _box.appendChild(_jie);
  8962. _formdiv = new U.UF.UI.form(
  8963. "项目设计-" + _username,
  8964. _box, {
  8965. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8966. "style": {
  8967. "width": "90%",
  8968. "height": "90%",
  8969. "overflow": 'hidden'
  8970. },
  8971. "onresize": function () { }
  8972. }, {
  8973. closecallback: function () { }
  8974. }, {
  8975. "style": {
  8976. "height": "36px"
  8977. }
  8978. }).form; //创建窗体
  8979. _taskbar = {
  8980. "id": str + _formdiv.id,
  8981. "style": {
  8982. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8983. },
  8984. "name": "项目设计",
  8985. "forms": _formdiv,
  8986. "click": function () {
  8987. U.MD.D.I.openApplication(str, obj, info);
  8988. }
  8989. }
  8990. break;
  8991. }
  8992. const script1 = document.createElement("script");
  8993. script1.type = "text/javascript";
  8994. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8995. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8996. const script2 = document.createElement("script");
  8997. script2.type = "text/javascript";
  8998. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8999. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9000. const script3 = document.createElement("script");
  9001. script3.type = "text/javascript";
  9002. script3.charset = "UTF-8";
  9003. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9004. const script4 = document.createElement("script");
  9005. script4.type = "text/javascript";
  9006. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9007. script4.src = window.origin + "/js/Common/jietu2E.js";
  9008. if (_iframe) {
  9009. if (str == 'doc') {
  9010. _iframe = _formdiv.querySelector('iframe')
  9011. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9012. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9013. _iframe.contentWindow.document.body.appendChild(script1);
  9014. _iframe.contentWindow.document.body.appendChild(script2);
  9015. // _iframe.contentWindow.document.body.appendChild(script3);
  9016. _iframe.contentWindow.document.body.appendChild(script4);
  9017. })
  9018. if (onloadListener) {
  9019. _iframe.contentDocument.location.reload()
  9020. } else {
  9021. _iframe.contentDocument.location.reload()
  9022. }
  9023. } else if (str == 'courseDesign') {
  9024. U.UF.DL.iframeLoad(_iframe, function () {
  9025. // _iframe.contentWindow.U.MD.O.W.load();
  9026. // _iframe.contentWindow.document.body.appendChild(script1);
  9027. _iframe.contentWindow.document.body.appendChild(script2);
  9028. _iframe.contentWindow.document.body.appendChild(script4);
  9029. })
  9030. } else if (str == 'mind') {
  9031. _iframe = _formdiv.querySelector('iframe')
  9032. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9033. //
  9034. _iframe.contentWindow.document.body.appendChild(script1);
  9035. _iframe.contentWindow.document.body.appendChild(script2);
  9036. _iframe.contentWindow.document.body.appendChild(script4);
  9037. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9038. })
  9039. if (onloadListener) {
  9040. _iframe.contentDocument.location.reload()
  9041. } else {
  9042. _iframe.contentDocument.location.reload()
  9043. }
  9044. } else if (str == 'whiteboard') {
  9045. _iframe = _formdiv.querySelector('iframe')
  9046. let onloadListener = _iframe.onload = () => {
  9047. _iframe.contentWindow.document.body.appendChild(script1);
  9048. _iframe.contentWindow.document.body.appendChild(script2);
  9049. _iframe.contentWindow.document.body.appendChild(script4);
  9050. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9051. };
  9052. // if (onloadListener) {
  9053. // try {
  9054. // _iframe.src += "?cocorobo="+new Date().getTime()
  9055. // _iframe.contentWindow.document.location.reload()
  9056. // } catch (error) {
  9057. // }
  9058. // } else {
  9059. // _iframe.contentDocument.location.reload()
  9060. // }
  9061. } else {
  9062. _iframe.onload = () => {
  9063. _iframe.contentWindow.document.body.appendChild(script1);
  9064. _iframe.contentWindow.document.body.appendChild(script2);
  9065. // _iframe.contentWindow.document.body.appendChild(script3);
  9066. _iframe.contentWindow.document.body.appendChild(script4);
  9067. };
  9068. }
  9069. _jie.onclick = async () => {
  9070. let text = ''
  9071. if (aTool == 1) {
  9072. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9073. } else if (aTool == 6) {
  9074. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9075. } else if (aTool == 3) {
  9076. text = await U.MD.D.I.getEditorContent(_iframe);
  9077. }
  9078. _loading.style.display = 'flex'
  9079. console.log(_loading);
  9080. var _ajs = _iframe.contentWindow.document.createElement("script");
  9081. _ajs.type = "text/javascript";
  9082. _ajs.innerHTML =
  9083. // 'console.log(' + _loading + ');\n' +
  9084. 'var _js = document.createElement("script");\n' +
  9085. '_js.type="text/javascript";\n' +
  9086. '_js.charset="UTF-8";\n' +
  9087. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9088. "_js.onload = function(){\n" +
  9089. ' var a = document.getElementsByTagName("img")\n' +
  9090. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9091. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9092. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9093. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9094. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9095. "beforeUpload_shishi(file," +
  9096. "'" +
  9097. _userid +
  9098. "'" +
  9099. ", " +
  9100. "'" +
  9101. _cid +
  9102. "'" +
  9103. ", " +
  9104. "'" +
  9105. _stage +
  9106. "'" +
  9107. ", " +
  9108. "'" +
  9109. _task +
  9110. "'" +
  9111. ", " +
  9112. "'" +
  9113. _tool +
  9114. "'" +
  9115. ", " +
  9116. "'" +
  9117. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9118. "'" +
  9119. ", " +
  9120. "'" +
  9121. aTool +
  9122. "'" +
  9123. ", " +
  9124. "`" +
  9125. text +
  9126. "`" +
  9127. ")\n" +
  9128. " });\n" +
  9129. "}\n" +
  9130. "document.head.appendChild(_js);\n";
  9131. _iframe.contentWindow.document.head.appendChild(_ajs);
  9132. }
  9133. }
  9134. }
  9135. U.MD.D.I.getEditorContent = function (iframe) {
  9136. return new Promise((resolve, reject) => {
  9137. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9138. console.log(content);
  9139. resolve(content)
  9140. });
  9141. });
  9142. }
  9143. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9144. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9145. // if (res.value[0].length > 0) {
  9146. // // resolve(res.value[0][0].text);
  9147. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9148. // $(fileInput).val('');
  9149. // });
  9150. // }
  9151. // }, [], { "type": "GET", "withCredentials": true });
  9152. var xmlhttp;
  9153. var Mac, Sn, DeviceId
  9154. if (window.XMLHttpRequest) {
  9155. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9156. xmlhttp = new XMLHttpRequest();
  9157. } else {
  9158. // IE6, IE5 浏览器执行代码
  9159. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9160. }
  9161. xmlhttp.onreadystatechange = function () {
  9162. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9163. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9164. // resolve(res.value[0][0].text);
  9165. if (type == '2') {
  9166. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9167. } else if (type == '3') {
  9168. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9169. }
  9170. } else {
  9171. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9172. }
  9173. }
  9174. }
  9175. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9176. xmlhttp.send();
  9177. }
  9178. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9179. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9180. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9181. _userinfo = US.userInfo, //登录用户信息
  9182. _userid = US.userInfo.userid //登录用户id
  9183. let _iframe;
  9184. let _cid = cid,
  9185. _stage = stage,
  9186. _task = task,
  9187. _tool = tool;
  9188. var _jie = $$("div", {
  9189. "style": {
  9190. "position": "absolute",
  9191. "bottom": "50px",
  9192. "right": "50px",
  9193. "zIndex": "9999",
  9194. "backgroundColor": "#2268bc",
  9195. "color": "#fff",
  9196. "padding": "12px 20px",
  9197. "cursor": "pointer",
  9198. "borderRadius": "4px",
  9199. },
  9200. "innerHTML": "确认并提交"
  9201. })
  9202. let aTool = ''
  9203. let _loading = document.createElement('div')
  9204. _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;"
  9205. // _loading.id = "";
  9206. let _lchild = document.createElement('div')
  9207. let _limg = document.createElement('img')
  9208. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9209. _limg.style = "width: 26px;margin-right: 10px;"
  9210. _lchild.appendChild(_limg)
  9211. let _lspan = document.createElement('span')
  9212. _lspan.innerHTML = "上传中..."
  9213. _lchild.appendChild(_lspan)
  9214. _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%);"
  9215. _loading.appendChild(_lchild)
  9216. var _box = $$('div', {
  9217. "style": {
  9218. "position": "relative",
  9219. "width": "100%",
  9220. "height": "100%",
  9221. },
  9222. })
  9223. _box.appendChild(_loading)
  9224. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9225. switch (str) {
  9226. case "whiteboard":
  9227. aTool = 1;
  9228. _iframe = $$("iframe", {
  9229. "frameborder": "no",
  9230. "border": "0",
  9231. "scrolling ": "no",
  9232. "style": {
  9233. "cssText": "border:0;width:100%;height:100%"
  9234. },
  9235. "src": "https://beta.iwb.cocorobo.cn/"
  9236. })
  9237. _box.appendChild(_iframe);
  9238. _box.appendChild(_jie);
  9239. _formdiv = new U.UF.UI.form(
  9240. "电子白板",
  9241. _box, {
  9242. "id": "whiteboards" + cid + stage + task + tool,
  9243. "style": {
  9244. "width": "90%",
  9245. "height": "90%",
  9246. "overflow": 'hidden'
  9247. },
  9248. "onresize": function () { }
  9249. }, {
  9250. closecallback: function () { }
  9251. }, {
  9252. "style": {
  9253. "height": "36px"
  9254. }
  9255. }).form; //创建窗体
  9256. _taskbar = {
  9257. "id": str + _formdiv.id,
  9258. "style": {
  9259. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9260. },
  9261. "name": "电子白板",
  9262. "forms": _formdiv,
  9263. "click": function () {
  9264. U.MD.D.I.openApplication(str, obj, info);
  9265. }
  9266. }
  9267. break;
  9268. case "mind":
  9269. aTool = 3;
  9270. _iframe = $$("iframe", {
  9271. "frameborder": "no",
  9272. "border": "0",
  9273. "scrolling ": "no",
  9274. "style": {
  9275. "cssText": "border:0;width:100%;height:100%"
  9276. },
  9277. "src": "/kityminder-editor/dist/index.html"
  9278. });
  9279. _box.appendChild(_iframe);
  9280. _box.appendChild(_jie);
  9281. _formdiv = new U.UF.UI.form(
  9282. "思维导图",
  9283. _box, { //"/jsmind/example/demo.html"
  9284. "id": "minds" + cid + stage + task + tool,
  9285. "style": {
  9286. "width": "90%",
  9287. "height": "90%",
  9288. "overflow": 'hidden'
  9289. },
  9290. "onresize": function () { }
  9291. }, {
  9292. closecallback: function () { }
  9293. }, {
  9294. "style": {
  9295. "height": "36px"
  9296. }
  9297. }).form; //创建窗体
  9298. _taskbar = {
  9299. "id": str + _formdiv.id,
  9300. "style": {
  9301. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9302. },
  9303. "name": "思维导图",
  9304. "forms": _formdiv,
  9305. "click": function () {
  9306. U.MD.D.I.openApplication(str, obj, info);
  9307. }
  9308. }
  9309. break;
  9310. case "doc":
  9311. aTool = 6;
  9312. _iframe = $$("iframe", {
  9313. "frameborder": "no",
  9314. "border": "0",
  9315. "scrolling ": "no",
  9316. "style": {
  9317. "cssText": "border:0;width:100%;height:100%"
  9318. },
  9319. "src": "/Office/Word/WordEditArea.htm"
  9320. })
  9321. _box.appendChild(_iframe);
  9322. _box.appendChild(_jie);
  9323. _formdiv = new U.UF.UI.form(
  9324. "协同文档",
  9325. _box, {
  9326. "id": "docs" + cid + stage + task + tool,
  9327. "style": {
  9328. "width": "90%",
  9329. "height": "90%",
  9330. "overflow": 'hidden'
  9331. },
  9332. "onresize": function () { }
  9333. }, {
  9334. closecallback: function () { }
  9335. }, {
  9336. "style": {
  9337. "height": "36px"
  9338. }
  9339. }).form; //创建窗体
  9340. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9341. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9342. })
  9343. _taskbar = {
  9344. "id": str + _formdiv.id,
  9345. "style": {
  9346. "backgroundImage": "url(/img/icon/doc.png)"
  9347. },
  9348. "name": "协同文档",
  9349. "forms": _formdiv,
  9350. "click": function () {
  9351. U.MD.D.I.openApplication(str, obj, info);
  9352. }
  9353. }
  9354. break;
  9355. }
  9356. const script1 = document.createElement("script");
  9357. script1.type = "text/javascript";
  9358. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9359. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9360. const script2 = document.createElement("script");
  9361. script2.type = "text/javascript";
  9362. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9363. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9364. const script3 = document.createElement("script");
  9365. script3.type = "text/javascript";
  9366. script3.charset = "UTF-8";
  9367. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9368. const script4 = document.createElement("script");
  9369. script4.type = "text/javascript";
  9370. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9371. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9372. if (_iframe) {
  9373. if (str == 'doc') {
  9374. _iframe = _formdiv.querySelector('iframe')
  9375. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9376. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9377. _iframe.contentWindow.document.body.appendChild(script1);
  9378. _iframe.contentWindow.document.body.appendChild(script2);
  9379. // _iframe.contentWindow.document.body.appendChild(script3);
  9380. _iframe.contentWindow.document.body.appendChild(script4);
  9381. })
  9382. if (onloadListener) {
  9383. _iframe.contentDocument.location.reload()
  9384. } else {
  9385. _iframe.contentDocument.location.reload()
  9386. }
  9387. } else if (str == 'mind') {
  9388. _iframe = _formdiv.querySelector('iframe')
  9389. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9390. _iframe.contentWindow.document.body.appendChild(script1);
  9391. _iframe.contentWindow.document.body.appendChild(script2);
  9392. _iframe.contentWindow.document.body.appendChild(script4);
  9393. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9394. })
  9395. if (onloadListener) {
  9396. _iframe.contentDocument.location.reload()
  9397. } else {
  9398. _iframe.contentDocument.location.reload()
  9399. }
  9400. } else {
  9401. _iframe.onload = () => {
  9402. _iframe.contentWindow.document.body.appendChild(script1);
  9403. _iframe.contentWindow.document.body.appendChild(script2);
  9404. // _iframe.contentWindow.document.body.appendChild(script3);
  9405. _iframe.contentWindow.document.body.appendChild(script4);
  9406. };
  9407. }
  9408. _jie.onclick = async () => {
  9409. let text = ''
  9410. if (aTool == 6) {
  9411. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9412. } else if (aTool == 3) {
  9413. text = await U.MD.D.I.getEditorContent(_iframe);
  9414. }
  9415. _loading.style.display = 'flex'
  9416. console.log(_loading);
  9417. var _ajs = _iframe.contentWindow.document.createElement("script");
  9418. _ajs.type = "text/javascript";
  9419. _ajs.innerHTML =
  9420. // 'console.log(' + _loading + ');\n' +
  9421. 'var _js = document.createElement("script");\n' +
  9422. '_js.type="text/javascript";\n' +
  9423. '_js.charset="UTF-8";\n' +
  9424. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9425. "_js.onload = function(){\n" +
  9426. ' var a = document.getElementsByTagName("img")\n' +
  9427. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9428. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9429. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9430. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9431. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9432. "beforeUpload_shishi(file," +
  9433. "'" +
  9434. _userid +
  9435. "'" +
  9436. ", " +
  9437. "'" +
  9438. _cid +
  9439. "'" +
  9440. ", " +
  9441. "'" +
  9442. _stage +
  9443. "'" +
  9444. ", " +
  9445. "'" +
  9446. _task +
  9447. "'" +
  9448. ", " +
  9449. "'" +
  9450. _tool +
  9451. "'" +
  9452. ", " +
  9453. "'" +
  9454. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9455. "'" +
  9456. ", " +
  9457. "'" +
  9458. aTool +
  9459. "'" +
  9460. ", " +
  9461. "`" +
  9462. text +
  9463. "`" +
  9464. ")\n" +
  9465. " });\n" +
  9466. "}\n" +
  9467. "document.head.appendChild(_js);\n";
  9468. _iframe.contentWindow.document.head.appendChild(_ajs);
  9469. }
  9470. }
  9471. //U.MD.D.I.openClick(str);
  9472. //如果有任务栏信息
  9473. // if (_taskbar) {
  9474. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9475. // }
  9476. }
  9477. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9478. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9479. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9480. _userinfo = US.userInfo, //登录用户信息
  9481. _userid = US.userInfo.userid //登录用户id
  9482. let _iframe;
  9483. let _cid = cid,
  9484. _stage = stage,
  9485. _task = task,
  9486. _tool = tool;
  9487. var _jie = $$("div", {
  9488. "style": {
  9489. "position": "absolute",
  9490. "bottom": "50px",
  9491. "right": "50px",
  9492. "zIndex": "9999",
  9493. "backgroundColor": "#2268bc",
  9494. "color": "#fff",
  9495. "padding": "12px 20px",
  9496. "cursor": "pointer",
  9497. "borderRadius": "4px",
  9498. },
  9499. "innerHTML": "确认并提交"
  9500. })
  9501. let aTool = ''
  9502. let _loading = document.createElement('div')
  9503. _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;"
  9504. // _loading.id = "";
  9505. let _lchild = document.createElement('div')
  9506. let _limg = document.createElement('img')
  9507. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9508. _limg.style = "width: 26px;margin-right: 10px;"
  9509. _lchild.appendChild(_limg)
  9510. let _lspan = document.createElement('span')
  9511. _lspan.innerHTML = "上传中..."
  9512. _lchild.appendChild(_lspan)
  9513. _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%);"
  9514. _loading.appendChild(_lchild)
  9515. var _box = $$('div', {
  9516. "style": {
  9517. "position": "relative",
  9518. "width": "100%",
  9519. "height": "100%",
  9520. },
  9521. })
  9522. _box.appendChild(_loading)
  9523. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9524. switch (str) {
  9525. case "whiteboard":
  9526. aTool = 1;
  9527. _iframe = $$("iframe", {
  9528. "frameborder": "no",
  9529. "border": "0",
  9530. "scrolling ": "no",
  9531. "style": {
  9532. "cssText": "border:0;width:100%;height:100%"
  9533. },
  9534. "src": "https://beta.iwb.cocorobo.cn/"
  9535. })
  9536. _box.appendChild(_iframe);
  9537. _box.appendChild(_jie);
  9538. _formdiv = new U.UF.UI.form(
  9539. "电子白板",
  9540. _box, {
  9541. "id": "whiteboards" + cid + stage + task + tool,
  9542. "style": {
  9543. "width": "90%",
  9544. "height": "90%",
  9545. "overflow": 'hidden'
  9546. },
  9547. "onresize": function () { }
  9548. }, {
  9549. closecallback: function () { }
  9550. }, {
  9551. "style": {
  9552. "height": "36px"
  9553. }
  9554. }).form; //创建窗体
  9555. _taskbar = {
  9556. "id": str + _formdiv.id,
  9557. "style": {
  9558. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9559. },
  9560. "name": "电子白板",
  9561. "forms": _formdiv,
  9562. "click": function () {
  9563. U.MD.D.I.openApplication(str, obj, info);
  9564. }
  9565. }
  9566. break;
  9567. case "mind":
  9568. aTool = 3;
  9569. _iframe = $$("iframe", {
  9570. "frameborder": "no",
  9571. "border": "0",
  9572. "scrolling ": "no",
  9573. "style": {
  9574. "cssText": "border:0;width:100%;height:100%"
  9575. },
  9576. "src": "/kityminder-editor/dist/index.html"
  9577. });
  9578. _box.appendChild(_iframe);
  9579. _box.appendChild(_jie);
  9580. _formdiv = new U.UF.UI.form(
  9581. "思维导图",
  9582. _box, { //"/jsmind/example/demo.html"
  9583. "id": "minds" + cid + stage + task + tool,
  9584. "style": {
  9585. "width": "90%",
  9586. "height": "90%",
  9587. "overflow": 'hidden'
  9588. },
  9589. "onresize": function () { }
  9590. }, {
  9591. closecallback: function () { }
  9592. }, {
  9593. "style": {
  9594. "height": "36px"
  9595. }
  9596. }).form; //创建窗体
  9597. _taskbar = {
  9598. "id": str + _formdiv.id,
  9599. "style": {
  9600. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9601. },
  9602. "name": "思维导图",
  9603. "forms": _formdiv,
  9604. "click": function () {
  9605. U.MD.D.I.openApplication(str, obj, info);
  9606. }
  9607. }
  9608. break;
  9609. case "doc":
  9610. aTool = 6;
  9611. _iframe = $$("iframe", {
  9612. "frameborder": "no",
  9613. "border": "0",
  9614. "scrolling ": "no",
  9615. "style": {
  9616. "cssText": "border:0;width:100%;height:100%"
  9617. },
  9618. "src": "/Office/Word/WordEditArea.htm"
  9619. })
  9620. _box.appendChild(_iframe);
  9621. _box.appendChild(_jie);
  9622. _formdiv = new U.UF.UI.form(
  9623. "协同文档",
  9624. _box, {
  9625. "id": "docs" + cid + stage + task + tool,
  9626. "style": {
  9627. "width": "90%",
  9628. "height": "90%",
  9629. "overflow": 'hidden'
  9630. },
  9631. "onresize": function () { }
  9632. }, {
  9633. closecallback: function () { }
  9634. }, {
  9635. "style": {
  9636. "height": "36px"
  9637. }
  9638. }).form; //创建窗体
  9639. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9640. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9641. })
  9642. _taskbar = {
  9643. "id": str + _formdiv.id,
  9644. "style": {
  9645. "backgroundImage": "url(/img/icon/doc.png)"
  9646. },
  9647. "name": "协同文档",
  9648. "forms": _formdiv,
  9649. "click": function () {
  9650. U.MD.D.I.openApplication(str, obj, info);
  9651. }
  9652. }
  9653. break;
  9654. }
  9655. const script1 = document.createElement("script");
  9656. script1.type = "text/javascript";
  9657. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9658. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9659. const script2 = document.createElement("script");
  9660. script2.type = "text/javascript";
  9661. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9662. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9663. const script3 = document.createElement("script");
  9664. script3.type = "text/javascript";
  9665. script3.charset = "UTF-8";
  9666. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9667. const script4 = document.createElement("script");
  9668. script4.type = "text/javascript";
  9669. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9670. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9671. if (_iframe) {
  9672. if (str == 'doc') {
  9673. _iframe = _formdiv.querySelector('iframe')
  9674. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9675. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9676. _iframe.contentWindow.document.body.appendChild(script1);
  9677. _iframe.contentWindow.document.body.appendChild(script2);
  9678. // _iframe.contentWindow.document.body.appendChild(script3);
  9679. _iframe.contentWindow.document.body.appendChild(script4);
  9680. })
  9681. if (onloadListener) {
  9682. _iframe.contentDocument.location.reload()
  9683. } else {
  9684. _iframe.contentDocument.location.reload()
  9685. }
  9686. } else if (str == 'mind') {
  9687. _iframe = _formdiv.querySelector('iframe')
  9688. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9689. _iframe.contentWindow.document.body.appendChild(script1);
  9690. _iframe.contentWindow.document.body.appendChild(script2);
  9691. _iframe.contentWindow.document.body.appendChild(script4);
  9692. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9693. })
  9694. if (onloadListener) {
  9695. _iframe.contentDocument.location.reload()
  9696. } else {
  9697. _iframe.contentDocument.location.reload()
  9698. }
  9699. } else {
  9700. _iframe.onload = () => {
  9701. _iframe.contentWindow.document.body.appendChild(script1);
  9702. _iframe.contentWindow.document.body.appendChild(script2);
  9703. // _iframe.contentWindow.document.body.appendChild(script3);
  9704. _iframe.contentWindow.document.body.appendChild(script4);
  9705. };
  9706. }
  9707. _jie.onclick = async () => {
  9708. let text = ''
  9709. if (aTool == 6) {
  9710. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9711. } else if (aTool == 3) {
  9712. text = await U.MD.D.I.getEditorContent(_iframe);
  9713. }
  9714. _loading.style.display = 'flex'
  9715. console.log(_loading);
  9716. var _ajs = _iframe.contentWindow.document.createElement("script");
  9717. _ajs.type = "text/javascript";
  9718. _ajs.innerHTML =
  9719. // 'console.log(' + _loading + ');\n' +
  9720. 'var _js = document.createElement("script");\n' +
  9721. '_js.type="text/javascript";\n' +
  9722. '_js.charset="UTF-8";\n' +
  9723. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9724. "_js.onload = function(){\n" +
  9725. ' var a = document.getElementsByTagName("img")\n' +
  9726. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9727. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9728. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9729. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9730. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9731. "beforeUpload_shishi(file," +
  9732. "'" +
  9733. _userid +
  9734. "'" +
  9735. ", " +
  9736. "'" +
  9737. _cid +
  9738. "'" +
  9739. ", " +
  9740. "'" +
  9741. _stage +
  9742. "'" +
  9743. ", " +
  9744. "'" +
  9745. _task +
  9746. "'" +
  9747. ", " +
  9748. "'" +
  9749. _tool +
  9750. "'" +
  9751. ", " +
  9752. "'" +
  9753. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9754. "'" +
  9755. ", " +
  9756. "'" +
  9757. aTool +
  9758. "'" +
  9759. ", " +
  9760. "`" +
  9761. text +
  9762. "`" +
  9763. ")\n" +
  9764. " });\n" +
  9765. "}\n" +
  9766. "document.head.appendChild(_js);\n";
  9767. _iframe.contentWindow.document.head.appendChild(_ajs);
  9768. }
  9769. }
  9770. //U.MD.D.I.openClick(str);
  9771. //如果有任务栏信息
  9772. // if (_taskbar) {
  9773. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9774. // }
  9775. }
  9776. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9777. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9778. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9779. _userinfo = US.userInfo, //登录用户信息
  9780. _userid = US.userInfo.userid //登录用户id
  9781. let _iframe;
  9782. let _cid = cid,
  9783. _stage = stage,
  9784. _task = task,
  9785. _tool = tool;
  9786. var _jie = $$("div", {
  9787. "style": {
  9788. "position": "absolute",
  9789. "bottom": "50px",
  9790. "right": "50px",
  9791. "zIndex": "9999",
  9792. "backgroundColor": "#2268bc",
  9793. "color": "#fff",
  9794. "padding": "12px 20px",
  9795. "cursor": "pointer",
  9796. "borderRadius": "4px",
  9797. },
  9798. "innerHTML": "上传模板"
  9799. })
  9800. let aTool = ''
  9801. let _loading = document.createElement('div')
  9802. _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;"
  9803. // _loading.id = "";
  9804. let _lchild = document.createElement('div')
  9805. let _limg = document.createElement('img')
  9806. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9807. _limg.style = "width: 26px;margin-right: 10px;"
  9808. _lchild.appendChild(_limg)
  9809. let _lspan = document.createElement('span')
  9810. _lspan.innerHTML = "上传中..."
  9811. _lchild.appendChild(_lspan)
  9812. _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%);"
  9813. _loading.appendChild(_lchild)
  9814. var _box = $$('div', {
  9815. "style": {
  9816. "position": "relative",
  9817. "width": "100%",
  9818. "height": "100%",
  9819. },
  9820. })
  9821. _box.appendChild(_loading)
  9822. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9823. switch (str) {
  9824. case "whiteboard":
  9825. aTool = 1;
  9826. _iframe = $$("iframe", {
  9827. "frameborder": "no",
  9828. "border": "0",
  9829. "scrolling ": "no",
  9830. "style": {
  9831. "cssText": "border:0;width:100%;height:100%"
  9832. },
  9833. "src": "https://beta.iwb.cocorobo.cn/"
  9834. })
  9835. _box.appendChild(_iframe);
  9836. _box.appendChild(_jie);
  9837. _formdiv = new U.UF.UI.form(
  9838. "电子白板",
  9839. _box, {
  9840. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9841. "style": {
  9842. "width": "90%",
  9843. "height": "90%",
  9844. "overflow": 'hidden'
  9845. },
  9846. "onresize": function () { }
  9847. }, {
  9848. closecallback: function () { }
  9849. }, {
  9850. "style": {
  9851. "height": "36px"
  9852. }
  9853. }).form; //创建窗体
  9854. _taskbar = {
  9855. "id": str + _formdiv.id,
  9856. "style": {
  9857. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9858. },
  9859. "name": "电子白板",
  9860. "forms": _formdiv,
  9861. "click": function () {
  9862. U.MD.D.I.openApplication(str, obj, info);
  9863. }
  9864. }
  9865. break;
  9866. case "mind":
  9867. aTool = 3;
  9868. _iframe = $$("iframe", {
  9869. "frameborder": "no",
  9870. "border": "0",
  9871. "scrolling ": "no",
  9872. "style": {
  9873. "cssText": "border:0;width:100%;height:100%"
  9874. },
  9875. "src": "/kityminder-editor/dist/index.html"
  9876. });
  9877. _box.appendChild(_iframe);
  9878. _box.appendChild(_jie);
  9879. _formdiv = new U.UF.UI.form(
  9880. "思维导图",
  9881. _box, { //"/jsmind/example/demo.html"
  9882. "id": "minds_Yu" + cid + stage + task + tool,
  9883. "style": {
  9884. "width": "90%",
  9885. "height": "90%",
  9886. "overflow": 'hidden'
  9887. },
  9888. "onresize": function () { }
  9889. }, {
  9890. closecallback: function () { }
  9891. }, {
  9892. "style": {
  9893. "height": "36px"
  9894. }
  9895. }).form; //创建窗体
  9896. _taskbar = {
  9897. "id": str + _formdiv.id,
  9898. "style": {
  9899. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9900. },
  9901. "name": "思维导图",
  9902. "forms": _formdiv,
  9903. "click": function () {
  9904. U.MD.D.I.openApplication(str, obj, info);
  9905. }
  9906. }
  9907. break;
  9908. case "doc":
  9909. aTool = 6;
  9910. _iframe = $$("iframe", {
  9911. "frameborder": "no",
  9912. "border": "0",
  9913. "scrolling ": "no",
  9914. "style": {
  9915. "cssText": "border:0;width:100%;height:100%"
  9916. },
  9917. "src": "/Office/Word/WordEditArea.htm"
  9918. })
  9919. _box.appendChild(_iframe);
  9920. _box.appendChild(_jie);
  9921. _formdiv = new U.UF.UI.form(
  9922. "协同文档",
  9923. _box, {
  9924. "id": "docs_Yu" + cid + stage + task + tool,
  9925. "style": {
  9926. "width": "90%",
  9927. "height": "90%",
  9928. "overflow": 'hidden'
  9929. },
  9930. "onresize": function () { }
  9931. }, {
  9932. closecallback: function () { }
  9933. }, {
  9934. "style": {
  9935. "height": "36px"
  9936. }
  9937. }).form; //创建窗体
  9938. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9939. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9940. })
  9941. _taskbar = {
  9942. "id": str + _formdiv.id,
  9943. "style": {
  9944. "backgroundImage": "url(/img/icon/doc.png)"
  9945. },
  9946. "name": "协同文档",
  9947. "forms": _formdiv,
  9948. "click": function () {
  9949. U.MD.D.I.openApplication(str, obj, info);
  9950. }
  9951. }
  9952. break;
  9953. case "CocoPi":
  9954. aTool = 57;
  9955. _iframe = $$("iframe", {
  9956. "allowpaymentrequest": "allowpaymentrequest",
  9957. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9958. "webkitallowfullscreen": "",
  9959. "mozallowfullscreen": "",
  9960. "frameborder": "no",
  9961. "border": "0",
  9962. "scrolling ": "no",
  9963. "style": {
  9964. "cssText": "border:0;width:100%;height:100%"
  9965. },
  9966. "src": "https://pi.cocorobo.cn/"
  9967. })
  9968. _box.appendChild(_iframe);
  9969. _box.appendChild(_jie);
  9970. _formdiv = new U.UF.UI.form(
  9971. "CocoPi",
  9972. _box, {
  9973. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9974. "style": {
  9975. "width": "90%",
  9976. "height": "90%",
  9977. "overflow": 'hidden'
  9978. },
  9979. "onresize": function () { }
  9980. }, {
  9981. closecallback: function () { }
  9982. }, {
  9983. "style": {
  9984. "height": "36px"
  9985. }
  9986. }).form; //创建窗体
  9987. _taskbar = {
  9988. "id": str + _formdiv.id,
  9989. "style": {
  9990. "backgroundImage": "url(/img/icon/cocopi.png)"
  9991. },
  9992. "name": "CocoPi",
  9993. "forms": _formdiv,
  9994. "click": function () {
  9995. U.MD.D.I.openApplication(str, obj, info);
  9996. }
  9997. }
  9998. break;
  9999. }
  10000. if (_iframe) {
  10001. if (str == 'doc') {
  10002. _iframe = _formdiv.querySelector('iframe')
  10003. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10004. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10005. })
  10006. if (onloadListener) {
  10007. _iframe.contentDocument.location.reload()
  10008. } else {
  10009. _iframe.contentDocument.location.reload()
  10010. }
  10011. } else if (str == 'mind') {
  10012. _iframe = _formdiv.querySelector('iframe')
  10013. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10014. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10015. })
  10016. if (onloadListener) {
  10017. _iframe.contentDocument.location.reload()
  10018. } else {
  10019. _iframe.contentDocument.location.reload()
  10020. }
  10021. } else if (str == 'whiteboard') {
  10022. _iframe = _formdiv.querySelector('iframe')
  10023. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10024. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10025. })
  10026. // if (onloadListener) {
  10027. // try {
  10028. // _iframe.src += "?cocorobo="+new Date().getTime()
  10029. // _iframe.contentWindow.document.location.reload()
  10030. // } catch (error) {
  10031. // }
  10032. // } else {
  10033. // _iframe.contentDocument.location.reload()
  10034. // }
  10035. } else if (str == 'CocoPi') {
  10036. _iframe = _formdiv.querySelector('iframe')
  10037. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10038. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10039. })
  10040. if (onloadListener) {
  10041. _iframe.contentDocument.location.reload()
  10042. } else {
  10043. _iframe.contentDocument.location.reload()
  10044. }
  10045. } else {
  10046. _iframe.onload = () => { };
  10047. }
  10048. _jie.onclick = async () => {
  10049. let text = ''
  10050. let type = '2'
  10051. if (aTool == 1) {
  10052. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10053. type = '3'
  10054. } else if (aTool == 6) {
  10055. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10056. type = '1'
  10057. } else if (aTool == 3) {
  10058. text = await U.MD.D.I.getEditorContent(_iframe);
  10059. type = '2'
  10060. } else if (aTool == 57) {
  10061. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10062. type = '4'
  10063. }
  10064. _loading.style.display = 'flex'
  10065. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10066. }
  10067. }
  10068. //U.MD.D.I.openClick(str);
  10069. //如果有任务栏信息
  10070. // if (_taskbar) {
  10071. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10072. // }
  10073. }
  10074. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10075. var xmlhttp;
  10076. var Mac, Sn, DeviceId
  10077. if (window.XMLHttpRequest) {
  10078. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10079. xmlhttp = new XMLHttpRequest();
  10080. } else {
  10081. // IE6, IE5 浏览器执行代码
  10082. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10083. }
  10084. xmlhttp.onreadystatechange = function () {
  10085. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10086. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10087. // resolve(res.value[0][0].text);
  10088. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10089. }
  10090. }
  10091. }
  10092. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10093. xmlhttp.send();
  10094. }
  10095. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10096. var xmlhttp;
  10097. var Mac, Sn, DeviceId
  10098. if (window.XMLHttpRequest) {
  10099. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10100. xmlhttp = new XMLHttpRequest();
  10101. } else {
  10102. // IE6, IE5 浏览器执行代码
  10103. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10104. }
  10105. xmlhttp.onreadystatechange = function () {
  10106. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10107. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10108. // resolve(res.value[0][0].text);
  10109. if (type == '2') {
  10110. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10111. } else if (type == '3') {
  10112. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10113. } else if (type == '4') {
  10114. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10115. }
  10116. } else {
  10117. if (type == '2') {
  10118. iframe.contentWindow.editor.minder.importData('json', '')
  10119. } else if (type == '3') {
  10120. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10121. } else if (type == '4') {
  10122. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10123. }
  10124. }
  10125. }
  10126. }
  10127. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10128. xmlhttp.send();
  10129. }
  10130. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10131. var xmlhttp;
  10132. var Mac, Sn, DeviceId
  10133. if (window.XMLHttpRequest) {
  10134. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10135. xmlhttp = new XMLHttpRequest();
  10136. } else {
  10137. // IE6, IE5 浏览器执行代码
  10138. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10139. }
  10140. xmlhttp.onreadystatechange = function () {
  10141. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10142. if (xmlhttp.response) {
  10143. // resolve(res.value[0][0].text);
  10144. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10145. // $(fileInput).val('');
  10146. // });
  10147. span.innerHTML = '上传成功'
  10148. setTimeout(() => {
  10149. loading.style.display = 'none'
  10150. }, 1000);
  10151. }
  10152. }
  10153. }
  10154. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10155. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10156. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10157. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10158. // 设置请求头,表示请求体的编码格式
  10159. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10160. // 设置请求体,使用url-encoded格式的数据
  10161. }
  10162. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10163. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10164. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10165. _userinfo = US.userInfo, //登录用户信息
  10166. _userid = US.userInfo.userid //登录用户id
  10167. let _iframe;
  10168. let _cid = cid,
  10169. _stage = stage,
  10170. _task = task,
  10171. _tool = tool;
  10172. var _jie = $$("div", {
  10173. "style": {
  10174. "position": "absolute",
  10175. "bottom": "50px",
  10176. "right": "50px",
  10177. "zIndex": "9999",
  10178. "backgroundColor": "#2268bc",
  10179. "color": "#fff",
  10180. "padding": "12px 20px",
  10181. "cursor": "pointer",
  10182. "borderRadius": "4px",
  10183. },
  10184. "innerHTML": "提交作业"
  10185. })
  10186. let aTool = ''
  10187. let _loading = document.createElement('div')
  10188. _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;"
  10189. // _loading.id = "";
  10190. let _lchild = document.createElement('div')
  10191. let _limg = document.createElement('img')
  10192. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10193. _limg.style = "width: 26px;margin-right: 10px;"
  10194. _lchild.appendChild(_limg)
  10195. let _lspan = document.createElement('span')
  10196. _lspan.innerHTML = "上传中..."
  10197. _lchild.appendChild(_lspan)
  10198. _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%);"
  10199. _loading.appendChild(_lchild)
  10200. var _box = $$('div', {
  10201. "style": {
  10202. "position": "relative",
  10203. "width": "100%",
  10204. "height": "100%",
  10205. },
  10206. })
  10207. _box.appendChild(_loading)
  10208. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10209. switch (str) {
  10210. case "CocoPi":
  10211. aTool = 57;
  10212. _iframe = $$("iframe", {
  10213. "allowpaymentrequest": "allowpaymentrequest",
  10214. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10215. "webkitallowfullscreen": "",
  10216. "mozallowfullscreen": "",
  10217. "frameborder": "no",
  10218. "border": "0",
  10219. "scrolling ": "no",
  10220. "style": {
  10221. "cssText": "border:0;width:100%;height:100%"
  10222. },
  10223. "src": "https://pi.cocorobo.cn/"
  10224. })
  10225. _box.appendChild(_iframe);
  10226. _box.appendChild(_jie);
  10227. _formdiv = new U.UF.UI.form(
  10228. "CocoPi",
  10229. _box, {
  10230. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10231. "style": {
  10232. "width": "90%",
  10233. "height": "90%",
  10234. "overflow": 'hidden'
  10235. },
  10236. "onresize": function () { }
  10237. }, {
  10238. closecallback: function () { }
  10239. }, {
  10240. "style": {
  10241. "height": "36px"
  10242. }
  10243. }).form; //创建窗体
  10244. _taskbar = {
  10245. "id": str + _formdiv.id,
  10246. "style": {
  10247. "backgroundImage": "url(/img/icon/cocopi.png)"
  10248. },
  10249. "name": "CocoPi",
  10250. "forms": _formdiv,
  10251. "click": function () {
  10252. U.MD.D.I.openApplication(str, obj, info);
  10253. }
  10254. }
  10255. break;
  10256. }
  10257. if (_iframe) {
  10258. if (str == 'CocoPi') {
  10259. _iframe = _formdiv.querySelector('iframe')
  10260. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10261. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10262. })
  10263. if (onloadListener) {
  10264. _iframe.contentDocument.location.reload()
  10265. } else {
  10266. _iframe.contentDocument.location.reload()
  10267. }
  10268. }
  10269. _jie.onclick = async () => {
  10270. let text = ''
  10271. if (aTool == 57) {
  10272. text = _iframe.contentWindow.getLoadXmlStr()
  10273. }
  10274. _loading.style.display = 'flex'
  10275. console.log(_loading);
  10276. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10277. _loading.style.display = 'none'
  10278. let _div = document.createElement('div')
  10279. _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;"
  10280. let _inner = document.createElement('div')
  10281. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10282. _inner.innerHTML = "上传成功"
  10283. _div.appendChild(_inner)
  10284. _iframe.contentWindow.window.document.body.appendChild(_div)
  10285. _div.onclick = () => {
  10286. _iframe.contentWindow.window.document.body.removeChild(_div)
  10287. }
  10288. setTimeout(() => {
  10289. _iframe.contentWindow.window.document.body.removeChild(_div)
  10290. }, 1000);
  10291. }, [], { "type": "POST", "withCredentials": true });
  10292. }
  10293. }
  10294. }
  10295. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10296. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10297. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10298. _userid = student.userid, //登录用户id
  10299. _username = student.student //用户名字
  10300. let _iframe;
  10301. let _cid = cid,
  10302. _stage = stage,
  10303. _task = task,
  10304. _tool = tool;
  10305. var _jie = $$("div", {
  10306. "style": {
  10307. "position": "absolute",
  10308. "bottom": "50px",
  10309. "right": "50px",
  10310. "zIndex": "9999",
  10311. "backgroundColor": "#2268bc",
  10312. "color": "#fff",
  10313. "padding": "12px 20px",
  10314. "cursor": "pointer",
  10315. "borderRadius": "4px",
  10316. },
  10317. "innerHTML": "提交作业"
  10318. })
  10319. let aTool = ''
  10320. let _loading = document.createElement('div')
  10321. _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;"
  10322. // _loading.id = "";
  10323. let _lchild = document.createElement('div')
  10324. let _limg = document.createElement('img')
  10325. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10326. _limg.style = "width: 26px;margin-right: 10px;"
  10327. _lchild.appendChild(_limg)
  10328. let _lspan = document.createElement('span')
  10329. _lspan.innerHTML = "上传中..."
  10330. _lchild.appendChild(_lspan)
  10331. _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%);"
  10332. _loading.appendChild(_lchild)
  10333. var _box = $$('div', {
  10334. "style": {
  10335. "position": "relative",
  10336. "width": "100%",
  10337. "height": "100%",
  10338. },
  10339. })
  10340. _box.appendChild(_loading)
  10341. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10342. switch (str) {
  10343. case "CocoPi":
  10344. aTool = 57;
  10345. _iframe = $$("iframe", {
  10346. "allowpaymentrequest": "allowpaymentrequest",
  10347. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10348. "webkitallowfullscreen": "",
  10349. "mozallowfullscreen": "",
  10350. "frameborder": "no",
  10351. "border": "0",
  10352. "scrolling ": "no",
  10353. "style": {
  10354. "cssText": "border:0;width:100%;height:100%"
  10355. },
  10356. "src": "https://pi.cocorobo.cn/"
  10357. })
  10358. _box.appendChild(_iframe);
  10359. _box.appendChild(_jie);
  10360. _formdiv = new U.UF.UI.form(
  10361. "CocoPi-" + _username,
  10362. _box, {
  10363. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10364. "style": {
  10365. "width": "90%",
  10366. "height": "90%",
  10367. "overflow": 'hidden'
  10368. },
  10369. "onresize": function () { }
  10370. }, {
  10371. closecallback: function () { }
  10372. }, {
  10373. "style": {
  10374. "height": "36px"
  10375. }
  10376. }).form; //创建窗体
  10377. _taskbar = {
  10378. "id": str + _formdiv.id,
  10379. "style": {
  10380. "backgroundImage": "url(/img/icon/cocopi.png)"
  10381. },
  10382. "name": "CocoPi",
  10383. "forms": _formdiv,
  10384. "click": function () {
  10385. U.MD.D.I.openApplication(str, obj, info);
  10386. }
  10387. }
  10388. break;
  10389. }
  10390. if (_iframe) {
  10391. if (str == 'CocoPi') {
  10392. _iframe = _formdiv.querySelector('iframe')
  10393. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10394. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10395. })
  10396. if (onloadListener) {
  10397. _iframe.contentDocument.location.reload()
  10398. } else {
  10399. _iframe.contentDocument.location.reload()
  10400. }
  10401. }
  10402. _jie.onclick = async () => {
  10403. let text = ''
  10404. if (aTool == 57) {
  10405. text = _iframe.contentWindow.getLoadXmlStr()
  10406. }
  10407. _loading.style.display = 'flex'
  10408. console.log(_loading);
  10409. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10410. _loading.style.display = 'none'
  10411. let _div = document.createElement('div')
  10412. _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;"
  10413. let _inner = document.createElement('div')
  10414. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10415. _inner.innerHTML = "上传成功"
  10416. _div.appendChild(_inner)
  10417. _iframe.contentWindow.window.document.body.appendChild(_div)
  10418. _div.onclick = () => {
  10419. _iframe.contentWindow.window.document.body.removeChild(_div)
  10420. }
  10421. setTimeout(() => {
  10422. _iframe.contentWindow.window.document.body.removeChild(_div)
  10423. }, 1000);
  10424. }, [], { "type": "POST", "withCredentials": true });
  10425. }
  10426. }
  10427. }
  10428. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10429. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10430. if (res.value[0].length > 0) {
  10431. if (atool == 57) {
  10432. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10433. }
  10434. } else {
  10435. if (atool == 57) {
  10436. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10437. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10438. }
  10439. }
  10440. }, [], { "type": "POST", "withCredentials": true });
  10441. }