DeskTop.js 723 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. ];
  717. //hk
  718. U.MD.D.I.tycyteacherDeskIcon = [
  719. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  720. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  726. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  729. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  730. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  731. ];
  732. //hk
  733. U.MD.D.I.tycyStudentDeskIcon = [
  734. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  738. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  740. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  741. ];
  742. //hk
  743. U.MD.D.I.ckcpsteacherDeskIcon = [
  744. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  745. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  746. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  747. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  748. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  749. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  750. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  751. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  753. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  754. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  755. ];
  756. //hk
  757. U.MD.D.I.ckcpsStudentDeskIcon = [
  758. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  761. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  762. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  764. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  765. ];
  766. //hk
  767. U.MD.D.I.hkaceteacherDeskIcon = [
  768. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  769. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  770. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  771. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  772. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  773. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  774. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  775. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  776. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  777. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  778. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  779. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  780. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  781. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  782. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  784. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  785. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  786. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  787. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  788. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  789. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  790. ];
  791. //hk
  792. U.MD.D.I.hkaceStudentDeskIcon = [
  793. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  796. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  797. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  799. ];
  800. //香海正覺蓮社佛教正覺中學
  801. U.MD.D.I.hkZJLSteacherDeskIcon = [
  802. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  803. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  804. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  805. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  808. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  809. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  810. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  811. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  812. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  813. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  815. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //香海正覺蓮社佛教正覺中學
  820. U.MD.D.I.hkZJLSStudentDeskIcon = [
  821. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  822. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  823. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  824. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  825. ];
  826. //云海
  827. U.MD.D.I.yunhaiTeacherDeskIcon = [
  828. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  829. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  830. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  831. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  832. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  833. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  834. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  835. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  836. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  837. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  838. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  839. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  842. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  843. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  844. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  845. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  846. ];
  847. //福田
  848. U.MD.D.I.heyuanTeacherDeskIcon = [
  849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  851. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  852. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  853. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  854. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  856. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  857. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  860. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  861. ];
  862. //福田
  863. U.MD.D.I.heyuanAdminDeskIcon = [
  864. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  865. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  866. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  867. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  868. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  869. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  870. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  871. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  872. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  873. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  874. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  875. ];
  876. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  877. U.MD.D.I.szherTeacherDeskIcon = [
  878. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  879. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  880. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  881. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  882. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  883. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  884. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  885. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  886. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  888. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  889. ];
  890. //dsei
  891. U.MD.D.I.dseiTeacherDeskIcon = [
  892. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  893. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  894. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  895. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  896. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  897. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  898. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  899. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  900. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  901. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  902. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  903. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  904. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  905. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  906. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  907. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  908. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  909. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  910. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  911. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  912. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  913. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  914. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  915. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  916. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  917. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  918. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  919. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  920. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  921. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  922. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  923. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  924. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  925. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  926. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  927. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  928. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  929. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  930. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  932. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  933. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  934. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  935. ];
  936. //dsei
  937. U.MD.D.I.dseiAdminDeskIcon = [
  938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  940. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  941. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  942. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  943. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  944. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  945. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  946. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  947. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  949. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  950. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  951. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  952. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  953. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  954. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  955. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  956. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  957. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  958. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  959. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  960. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  961. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  962. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  963. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  964. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  965. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  966. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  967. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  968. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  969. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  970. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  971. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  972. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  973. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  974. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  975. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  976. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  979. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  980. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  981. ];
  982. //dsei
  983. U.MD.D.I.dseiStudentDeskIcon = [
  984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  985. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  986. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  987. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. ];
  991. //未来教育基地
  992. U.MD.D.I.szjkyTeacherDeskIcon = [
  993. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  994. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  995. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  996. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  997. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  998. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  999. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1000. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1001. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1002. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1003. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1004. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1005. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1006. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1007. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1009. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1010. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1011. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1012. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1013. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1014. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1015. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1016. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1017. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1018. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1019. ];
  1020. //未来教育基地
  1021. U.MD.D.I.szjkyAdminDeskIcon = [
  1022. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1023. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1027. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1028. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1029. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1030. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1031. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1032. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1033. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1034. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1035. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1036. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1038. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1039. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1041. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1042. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1043. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1044. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1045. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1046. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1047. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1048. ];
  1049. //未来教育基地
  1050. U.MD.D.I.szjkyStudentDeskIcon = [
  1051. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1053. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1056. ];
  1057. //成华教育局
  1058. U.MD.D.I.chjyjTeacherDeskIcon = [
  1059. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1060. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1061. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1062. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1063. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1064. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.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": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1068. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1069. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1070. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1073. ];
  1074. //成华教育局chjyj
  1075. U.MD.D.I.chjyjAdminDeskIcon = [
  1076. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1077. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1078. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1079. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1080. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1081. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1082. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1083. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1084. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1085. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1086. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1087. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1088. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1090. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1091. ];
  1092. //成华教育局chjyj
  1093. U.MD.D.I.chjyjStudentDeskIcon = [
  1094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1095. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1096. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1097. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1098. ];
  1099. //tpc
  1100. U.MD.D.I.tpcStudentDeskIcon = [
  1101. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1102. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1103. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1104. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1105. ];
  1106. //tpc
  1107. U.MD.D.I.tpcTeacherDeskIcon = [
  1108. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1109. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1110. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1111. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1112. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1113. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1114. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1115. ];
  1116. //tpc
  1117. U.MD.D.I.tpcAdminDeskIcon = [
  1118. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1119. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1124. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1125. ];
  1126. //THU-IOE
  1127. U.MD.D.I.thuioeTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1138. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1139. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1140. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1141. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1142. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1143. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1144. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1145. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1146. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1147. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1148. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1149. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1150. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1151. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1152. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1153. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1154. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1155. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1156. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1157. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1158. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1159. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1160. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1161. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1162. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1163. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1165. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1166. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1167. ];
  1168. //THU-IOE
  1169. U.MD.D.I.thuioeStudentDeskIcon = [
  1170. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1171. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1172. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1173. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1174. ];
  1175. //jccssyl
  1176. U.MD.D.I.jccssylTeacherDeskIcon = [
  1177. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1178. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1179. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1180. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1181. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1182. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1183. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1184. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1185. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1186. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1187. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1188. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1189. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1190. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1191. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1193. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1195. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1196. ];
  1197. //jccssyl
  1198. U.MD.D.I.jccssylStudentDeskIcon = [
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1201. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1202. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1203. ];
  1204. //cale
  1205. U.MD.D.I.caleTeacherDeskIcon = [
  1206. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1207. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1208. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1209. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1210. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1213. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1214. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1215. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1216. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1217. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1219. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1220. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1222. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1223. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1224. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1225. ];
  1226. //cale
  1227. U.MD.D.I.caleStudentDeskIcon = [
  1228. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1229. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1230. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1231. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1232. ];
  1233. //lqwmsgzs
  1234. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1235. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1236. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1237. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1238. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1239. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1240. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1241. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1242. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1243. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1244. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1245. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1246. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1247. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1248. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1249. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1250. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1251. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1252. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1253. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1254. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1255. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1256. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1257. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1258. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1259. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1260. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1261. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1262. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1263. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1264. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1265. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1266. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1267. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1268. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1269. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1270. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. ];
  1273. //lqwmsgzs
  1274. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1275. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1276. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1279. ];
  1280. //盐田区幼儿园
  1281. U.MD.D.I.ytyTeacherDeskIcon = [
  1282. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1283. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1284. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1285. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1286. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1287. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1288. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1289. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1290. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1291. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1292. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1293. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1294. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1295. ];
  1296. //盐田区幼儿园
  1297. U.MD.D.I.ytyStudentDeskIcon = [
  1298. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1299. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1300. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1301. ];
  1302. //scnuai
  1303. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1304. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1305. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1309. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1310. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1311. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1312. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1313. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1314. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1315. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1316. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1317. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1319. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1320. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1321. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1322. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1323. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1324. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1325. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1326. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1327. ];
  1328. //scnuai
  1329. U.MD.D.I.scnuaiAdminDeskIcon = [
  1330. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1331. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1332. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1334. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1335. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1336. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1337. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1338. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1339. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1340. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1341. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1342. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1343. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1345. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1346. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1347. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1348. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1349. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1350. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1351. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1352. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1353. ];
  1354. //scnuai
  1355. U.MD.D.I.scnuaiStudentDeskIcon = [
  1356. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1357. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1358. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1360. ];
  1361. //cocobiz
  1362. U.MD.D.I.cocobizteacherDeskIcon = [
  1363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1365. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1366. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1367. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1368. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1369. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1370. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1371. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1372. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1373. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1374. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1376. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1377. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1379. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1380. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1381. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1382. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1383. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1384. ];
  1385. //cocobiz
  1386. U.MD.D.I.cocobizStudentDeskIcon = [
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1389. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1390. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1391. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1393. ];
  1394. //xxzjky
  1395. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1400. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1402. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1403. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1407. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1408. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1409. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1410. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1412. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1414. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1415. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1416. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1417. ];
  1418. //xxzjky
  1419. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1420. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1421. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1423. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1424. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //nsfx
  1428. U.MD.D.I.nsfxTeacherDeskIcon = [
  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": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1437. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1438. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1439. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1440. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1441. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1444. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1445. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1446. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1447. ];
  1448. //nsfx
  1449. U.MD.D.I.nsfxStudentDeskIcon = [
  1450. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1451. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1452. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1453. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1454. ];
  1455. //stia
  1456. U.MD.D.I.stiaTeacherDeskIcon = [
  1457. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1458. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1459. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1460. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1461. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1466. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1467. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1468. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1469. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1470. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1472. ];
  1473. //stia
  1474. U.MD.D.I.stiaStudentDeskIcon = [
  1475. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1476. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1477. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1478. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1479. ];
  1480. //szdjg
  1481. U.MD.D.I.szdjgTeacherDeskIcon = [
  1482. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1483. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1484. ];
  1485. //szdjg
  1486. U.MD.D.I.szdjgStudentDeskIcon = [
  1487. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1488. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1489. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1490. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1491. ];
  1492. //010607
  1493. U.MD.D.I.x010607TeacherDeskIcon = [
  1494. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1495. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1496. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1497. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1498. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1499. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1500. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1501. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1502. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1505. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1506. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1507. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1508. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1509. ];
  1510. //010607
  1511. U.MD.D.I.x010607StudentDeskIcon = [
  1512. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1513. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1514. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. ];
  1517. //010608
  1518. U.MD.D.I.x010608TeacherDeskIcon = [
  1519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1521. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1522. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1523. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1524. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1525. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1526. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1528. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1529. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1530. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1531. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1532. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1533. ];
  1534. //010608
  1535. U.MD.D.I.x010608StudentDeskIcon = [
  1536. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1540. ];
  1541. //xhly
  1542. U.MD.D.I.xhlyTeacherDeskIcon = [
  1543. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1544. ];
  1545. //010608
  1546. U.MD.D.I.xhlyStudentDeskIcon = [
  1547. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. ];
  1549. //北师大
  1550. U.MD.D.I.BSDNSteacherDeskIcon = [
  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": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1559. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1560. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1561. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1562. ];
  1563. //北师大
  1564. U.MD.D.I.BSDNSstudentDeskIcon = [
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1569. ];
  1570. //CUHK_EDU
  1571. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1572. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1573. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1574. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1575. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1576. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1580. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1581. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1582. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1583. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1584. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1585. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1586. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1587. ];
  1588. //CUHK_EDU
  1589. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1590. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1591. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1592. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1593. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1594. ];
  1595. //010503
  1596. U.MD.D.I.x010503TeacherDeskIcon = [
  1597. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1598. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1599. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1600. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1601. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1602. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1605. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010503
  1609. U.MD.D.I.x010503StudentDeskIcon = [
  1610. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SPROUT Lab
  1616. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1621. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1622. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1623. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1624. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1625. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1627. ];
  1628. //SPROUT Lab
  1629. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1634. ];
  1635. //010204
  1636. U.MD.D.I.x010204TeacherDeskIcon = [
  1637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1639. ];
  1640. //010204
  1641. U.MD.D.I.x010204StudentDeskIcon = [
  1642. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1643. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1644. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1645. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1646. ];
  1647. //trail
  1648. U.MD.D.I.trailTeacherDeskIcon = [
  1649. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1650. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1651. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1652. ];
  1653. //trail
  1654. U.MD.D.I.trailStudentDeskIcon = [
  1655. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1658. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1659. ];
  1660. //trial
  1661. U.MD.D.I.trialTeacherDeskIcon = [
  1662. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1663. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1664. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1665. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1667. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1668. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1669. ];
  1670. //trial
  1671. U.MD.D.I.trialStudentDeskIcon = [
  1672. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1673. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1674. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1675. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1676. ];
  1677. //010504
  1678. U.MD.D.I.x010504TeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1682. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1686. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1689. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1690. ];
  1691. //010504
  1692. U.MD.D.I.x010504StudentDeskIcon = [
  1693. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1694. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1696. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. ];
  1698. //010505
  1699. U.MD.D.I.x010505TeacherDeskIcon = [
  1700. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1701. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1703. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1704. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1705. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1707. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1708. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1709. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1710. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1711. ];
  1712. //010505
  1713. U.MD.D.I.x010505StudentDeskIcon = [
  1714. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1715. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1716. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1717. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1718. ];
  1719. //SCNUET
  1720. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1721. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1722. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1725. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1726. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1727. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1728. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1729. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1730. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1731. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1732. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1733. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1734. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1735. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1737. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1738. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1739. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1740. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1741. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1742. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1743. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1744. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1745. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1746. ];
  1747. //SCNUET
  1748. U.MD.D.I.SCNUETAdminDeskIcon = [
  1749. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1750. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1751. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1753. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1754. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1755. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1756. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1757. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1758. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1759. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1760. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1761. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1762. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1763. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1765. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1767. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1768. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1769. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1772. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1773. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1774. ];
  1775. //SCNUET
  1776. U.MD.D.I.SCNUETStudentDeskIcon = [
  1777. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1778. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1779. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1780. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1781. ];
  1782. //x020201
  1783. U.MD.D.I.x020201TeacherDeskIcon = [
  1784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1788. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1789. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1790. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1792. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1793. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1794. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1795. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1796. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1797. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1798. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1799. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1800. ];
  1801. //x020201
  1802. U.MD.D.I.x020201AdminDeskIcon = [
  1803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1808. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1809. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1810. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1811. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1812. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1813. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1814. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1815. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1816. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1817. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1818. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1819. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1820. ];
  1821. //020201
  1822. U.MD.D.I.x020201StudentDeskIcon = [
  1823. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1825. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1826. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1827. ];
  1828. //010611
  1829. U.MD.D.I.x010611TeacherDeskIcon = [
  1830. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1831. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1832. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1833. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1834. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1835. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1838. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1839. ];
  1840. //010611
  1841. U.MD.D.I.x010611StudentDeskIcon = [
  1842. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1843. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1844. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1846. ];
  1847. //010612
  1848. U.MD.D.I.x010612TeacherDeskIcon = [
  1849. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1850. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1852. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1853. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1854. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1855. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1856. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1857. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1858. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1859. ];
  1860. //010612
  1861. U.MD.D.I.x010612StudentDeskIcon = [
  1862. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1863. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1864. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1865. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1866. ];
  1867. //tianyuan
  1868. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1869. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1870. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1872. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1873. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1874. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1875. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1876. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1877. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1878. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1879. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1880. ];
  1881. //010611
  1882. U.MD.D.I.tianyuanStudentDeskIcon = [
  1883. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1884. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1885. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1886. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1887. ];
  1888. //320101
  1889. U.MD.D.I.x320101TeacherDeskIcon = [
  1890. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1891. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1893. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1894. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1895. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1896. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1897. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1898. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1899. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1900. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1901. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1902. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1903. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1904. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1905. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1906. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1907. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1908. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1909. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1910. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1911. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1912. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1913. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1914. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1915. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1916. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1917. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1918. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1919. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1920. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1921. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1922. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1923. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1925. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1926. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1927. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1928. ];
  1929. //320101
  1930. U.MD.D.I.x320101StudentDeskIcon = [
  1931. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1932. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1935. ];
  1936. //szsy
  1937. U.MD.D.I.szsyTeacherDeskIcon = [
  1938. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1939. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1941. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1942. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1943. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1944. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1945. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1946. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1947. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1948. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1949. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1950. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1951. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1952. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1953. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1954. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1955. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1956. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1957. ];
  1958. //szsy
  1959. U.MD.D.I.szsyStudentDeskIcon = [
  1960. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1961. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1962. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1963. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1964. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1965. ];
  1966. //010404
  1967. U.MD.D.I.x010404TeacherDeskIcon = [
  1968. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1969. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1970. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1971. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1972. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1973. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1974. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1975. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1976. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1977. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1978. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1979. ];
  1980. //010404
  1981. U.MD.D.I.x010404StudentDeskIcon = [
  1982. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1983. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1984. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1985. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1986. ];
  1987. //cocorobo demo
  1988. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1989. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1990. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1992. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1993. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1994. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1995. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1996. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1997. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1998. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1999. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2000. ];
  2001. //cocorobo demo
  2002. U.MD.D.I.demoCocoStudentDeskIcon = [
  2003. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2004. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2005. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2006. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2007. ];
  2008. //#region 桌面初始化a
  2009. /**
  2010. * 初始化桌面的起始函数
  2011. *
  2012. */
  2013. U.MD.D.I.init = function () {
  2014. if ($("#U_MD_D_K")[0]) {
  2015. //初始化桌面图标
  2016. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2017. // var clickUrl = ':12588/requestIp.php';
  2018. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2019. // U.MD.D.I.Ip = data;
  2020. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2021. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2022. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2023. // })
  2024. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2025. // })
  2026. }
  2027. }
  2028. /**
  2029. * 模式切换
  2030. *
  2031. */
  2032. U.MD.D.I.ModeCheck = function (type) {
  2033. if (US.Config.type == type) {
  2034. return
  2035. }
  2036. US.Config.type = type
  2037. $('.U_PBL_Check .active')[0].className = ''
  2038. if (type == 1) {
  2039. $('.U_PBL_Check div')[0].className = 'active'
  2040. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2041. } else {
  2042. $('.U_PBL_Check div')[1].className = 'active'
  2043. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2044. }
  2045. //初始化桌面图标
  2046. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2047. if (type == 2) {
  2048. U.MD.D.I.openApplication("project")
  2049. }
  2050. }
  2051. /**
  2052. * 隐藏任务栏
  2053. *
  2054. * @param {element} 桌面元素
  2055. */
  2056. U.MD.D.I.hiddenTaskbar = function (el) {
  2057. //任务栏位置变小
  2058. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2059. //桌面的位置变大
  2060. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2061. }
  2062. /**
  2063. * 隐藏任务栏
  2064. *
  2065. * @param {element} 桌面元素
  2066. */
  2067. U.MD.D.I.hiddenTaskbarout = function (el) {
  2068. //任务栏位置变小
  2069. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2070. //任务栏位置变化
  2071. U.selectEl(el).css({ "bottom": "-60px" });
  2072. //桌面的位置变大
  2073. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2074. }
  2075. }
  2076. /**
  2077. * 初始化打印桌面图标
  2078. *
  2079. * @param {element} 桌面元素
  2080. */
  2081. U.MD.D.I.initDesktopIcons = function (el, type) {
  2082. var i, //用于循环
  2083. _content, //桌面图标元素
  2084. _iconcontent, //桌面图标元素
  2085. _frag = $$("frag"), //定义一个碎片元素
  2086. _type = US.userInfo.type,
  2087. _org = US.userInfo.org,
  2088. _oid = US.userInfo.organizeid,
  2089. _role = US.userInfo.role,
  2090. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2091. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2092. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2093. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2094. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2095. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2096. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2097. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2098. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2099. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2100. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2101. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2102. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2103. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2104. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2105. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2106. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2107. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2108. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2109. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2110. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2111. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2112. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2113. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2114. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2115. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2116. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2117. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2118. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2119. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2120. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2121. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2122. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2123. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2124. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2125. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2126. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2127. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2128. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2129. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2130. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2131. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2132. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2133. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2134. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2135. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2136. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2137. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2138. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2139. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2140. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2141. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2142. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2143. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2144. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2145. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2146. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2147. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2148. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2149. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2150. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2151. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2152. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2153. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2154. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2155. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2156. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2157. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2158. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2159. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2160. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2161. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2162. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2163. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2164. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2165. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2166. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2167. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2168. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2169. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2170. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2171. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2172. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2173. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2174. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2175. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2176. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2177. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2178. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2179. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2180. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2181. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2182. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2183. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2184. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2185. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2186. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2187. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2188. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2189. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2190. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2191. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2192. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2193. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2194. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2195. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2196. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2197. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2198. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2199. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2200. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2201. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2202. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2203. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2204. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2205. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2206. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2207. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2208. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2209. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2210. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2211. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2212. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2213. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2214. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2215. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2216. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2217. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2218. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2219. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2220. 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','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','bc239322-ffb2-11ef-b508-005056924926','91796dfb-8791-11ef-9b30-005056b86db5','86fa8cd7-00c2-11f0-b508-005056924926','8406b214-085f-11f0-b508-005056924926','65ad80f0-16bb-11f0-a66a-005056924926','9a8076a2-469a-11f0-b60f-005056924926'];
  2221. 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','7cc601a0-fafc-4116-a805-0adbacf7a38d','62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926'];
  2222. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2223. //清楚桌面图标
  2224. el.innerHTML = "";
  2225. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2226. _teacherDesktopIconInfo.push(
  2227. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2228. { "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)" } },
  2229. )
  2230. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2231. }
  2232. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2233. _teacherDesktopIconInfo.push(
  2234. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2235. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2236. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2237. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2238. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2239. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2240. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2241. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2242. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2244. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2246. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2247. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2248. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2249. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2250. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2251. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2252. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2253. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2254. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2255. )
  2256. }
  2257. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2258. _teacherDesktopIconInfo.push(
  2259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2260. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2261. )
  2262. }
  2263. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2264. _nsfxTeacherDeskIconInfo.push(
  2265. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2266. )
  2267. }
  2268. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2269. // _teacherDesktopIconInfo.push(
  2270. // )
  2271. // }
  2272. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2273. _teacherDesktopIconInfo.push(
  2274. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2275. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. )
  2277. }
  2278. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2279. _teacherDesktopIconInfo.push(
  2280. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2281. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2282. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2283. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2284. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2285. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2286. )
  2287. _studentDesktopIconInfo.push(
  2288. )
  2289. }
  2290. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2291. _teacherDesktopIconInfo.push(
  2292. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2293. )
  2294. _studentDesktopIconInfo.push(
  2295. )
  2296. }
  2297. //010606 组织
  2298. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2299. _teacherDesktopIconInfo.push(
  2300. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2301. )
  2302. _studentDesktopIconInfo.push(
  2303. )
  2304. }
  2305. //麒麟二中 和 民新小学
  2306. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2307. _teacherDesktopIconInfo.push(
  2308. )
  2309. }
  2310. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2311. _teacherDesktopIconInfo.push(
  2312. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2313. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2314. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2315. )
  2316. }
  2317. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2318. _hkTeacherDeskIconInfo.push(
  2319. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2320. )
  2321. }
  2322. //北师大附中(010601)
  2323. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2324. // _teacherDesktopIconInfo.push(
  2325. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2326. // )
  2327. // _studentDesktopIconInfo.push(
  2328. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2329. // )
  2330. // }
  2331. //樂善堂余近卿中學
  2332. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2333. _teacherDesktopIconInfo.push(
  2334. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2335. )
  2336. }
  2337. // Education Artificial Intelligence
  2338. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2339. _teacherDesktopIconInfo.push(
  2340. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2341. )
  2342. }
  2343. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2344. _teacherDesktopIconInfo.push(
  2345. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2346. )
  2347. }
  2348. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2349. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2350. _teacherDesktopIconInfo.push(
  2351. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2352. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2353. )
  2354. }
  2355. //麒麟二中
  2356. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2357. _studentDesktopIconInfo.push(
  2358. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2360. )
  2361. }
  2362. //万科双语
  2363. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2364. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2365. if (el.Name == '项目管理') {
  2366. el.Name = 'PBL项目'
  2367. }
  2368. return el
  2369. })
  2370. _studentDesktopIconInfo3.push(
  2371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2372. )
  2373. }
  2374. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2375. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2376. return el.Name != '魔盒识字' && el.Name != '24点'
  2377. })
  2378. }
  2379. 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) {
  2380. _studentDesktopIconInfo.push(
  2381. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2382. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2383. )
  2384. }
  2385. //循环创建桌面图标
  2386. if (type == 1) {
  2387. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2388. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2389. _content = $$("div", {
  2390. className: "U_MD_D_KO",
  2391. "onmousedown": U.UF.C.closure(function (obj) {
  2392. //防止拖动图标即打开了桌面应用
  2393. U.MD.D.click(this, obj);
  2394. }, [_studentDesktopIconInfo[i]]),
  2395. "onclick": U.UF.C.closure(function (obj) {
  2396. //防止拖动图标即打开了桌面应用
  2397. U.MD.D.click(this, obj);
  2398. }, [_studentDesktopIconInfo[i]])
  2399. }, _frag); //
  2400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2403. }
  2404. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2405. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2406. _content = $$("div", {
  2407. className: "U_MD_D_KO",
  2408. "onmousedown": U.UF.C.closure(function (obj) {
  2409. //防止拖动图标即打开了桌面应用
  2410. U.MD.D.click(this, obj);
  2411. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2412. "onclick": U.UF.C.closure(function (obj) {
  2413. //防止拖动图标即打开了桌面应用
  2414. U.MD.D.click(this, obj);
  2415. }, [_hkZJLSStudentDeskIconInfo[i]])
  2416. }, _frag); //
  2417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2420. } //
  2421. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2422. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2423. _content = $$("div", {
  2424. className: "U_MD_D_KO",
  2425. "onmousedown": U.UF.C.closure(function (obj) {
  2426. //防止拖动图标即打开了桌面应用
  2427. U.MD.D.click(this, obj);
  2428. }, [_ytyStudentDeskIconInfo[i]]),
  2429. "onclick": U.UF.C.closure(function (obj) {
  2430. //防止拖动图标即打开了桌面应用
  2431. U.MD.D.click(this, obj);
  2432. }, [_ytyStudentDeskIconInfo[i]])
  2433. }, _frag); //
  2434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2437. } //
  2438. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2439. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2440. _content = $$("div", {
  2441. className: "U_MD_D_KO",
  2442. "onmousedown": U.UF.C.closure(function (obj) {
  2443. //防止拖动图标即打开了桌面应用
  2444. U.MD.D.click(this, obj);
  2445. }, [_jccssylStudentDeskIconInfo[i]]),
  2446. "onclick": U.UF.C.closure(function (obj) {
  2447. //防止拖动图标即打开了桌面应用
  2448. U.MD.D.click(this, obj);
  2449. }, [_jccssylStudentDeskIconInfo[i]])
  2450. }, _frag); //
  2451. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2452. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2453. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2454. }
  2455. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2456. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2457. _content = $$("div", {
  2458. className: "U_MD_D_KO",
  2459. "onmousedown": U.UF.C.closure(function (obj) {
  2460. //防止拖动图标即打开了桌面应用
  2461. U.MD.D.click(this, obj);
  2462. }, [_scnuaiStudentDeskIconInfo[i]]),
  2463. "onclick": U.UF.C.closure(function (obj) {
  2464. //防止拖动图标即打开了桌面应用
  2465. U.MD.D.click(this, obj);
  2466. }, [_scnuaiStudentDeskIconInfo[i]])
  2467. }, _frag); //
  2468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2471. }
  2472. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2473. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2474. _content = $$("div", {
  2475. className: "U_MD_D_KO",
  2476. "onmousedown": U.UF.C.closure(function (obj) {
  2477. //防止拖动图标即打开了桌面应用
  2478. U.MD.D.click(this, obj);
  2479. }, [_caleStudentDeskIconInfo[i]]),
  2480. "onclick": U.UF.C.closure(function (obj) {
  2481. //防止拖动图标即打开了桌面应用
  2482. U.MD.D.click(this, obj);
  2483. }, [_caleStudentDeskIconInfo[i]])
  2484. }, _frag); //
  2485. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2486. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2487. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2488. }
  2489. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2490. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2491. _content = $$("div", {
  2492. className: "U_MD_D_KO",
  2493. "onmousedown": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_thuioeStudentDeskIconInfo[i]]),
  2497. "onclick": U.UF.C.closure(function (obj) {
  2498. //防止拖动图标即打开了桌面应用
  2499. U.MD.D.click(this, obj);
  2500. }, [_thuioeStudentDeskIconInfo[i]])
  2501. }, _frag); //
  2502. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2503. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2504. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2505. }
  2506. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2507. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2508. _content = $$("div", {
  2509. className: "U_MD_D_KO",
  2510. "onmousedown": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_tpcStudentDeskIconInfo[i]]),
  2514. "onclick": U.UF.C.closure(function (obj) {
  2515. //防止拖动图标即打开了桌面应用
  2516. U.MD.D.click(this, obj);
  2517. }, [_tpcStudentDeskIconInfo[i]])
  2518. }, _frag); //
  2519. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2520. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2521. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2522. } //
  2523. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2524. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2525. _content = $$("div", {
  2526. className: "U_MD_D_KO",
  2527. "onmousedown": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_chjyjStudentDeskIconInfo[i]]),
  2531. "onclick": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_chjyjStudentDeskIconInfo[i]])
  2535. }, _frag); //
  2536. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2537. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2538. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2539. }
  2540. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2541. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2542. _content = $$("div", {
  2543. className: "U_MD_D_KO",
  2544. "onmousedown": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_szjkyStudentDeskIconInfo[i]]),
  2548. "onclick": U.UF.C.closure(function (obj) {
  2549. //防止拖动图标即打开了桌面应用
  2550. U.MD.D.click(this, obj);
  2551. }, [_szjkyStudentDeskIconInfo[i]])
  2552. }, _frag); //
  2553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2556. }
  2557. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2558. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2559. _content = $$("div", {
  2560. className: "U_MD_D_KO",
  2561. "onmousedown": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_x020201StudentDeskIconInfo[i]]),
  2565. "onclick": U.UF.C.closure(function (obj) {
  2566. //防止拖动图标即打开了桌面应用
  2567. U.MD.D.click(this, obj);
  2568. }, [_x020201StudentDeskIconInfo[i]])
  2569. }, _frag); //
  2570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2573. }
  2574. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2575. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2576. _content = $$("div", {
  2577. className: "U_MD_D_KO",
  2578. "onmousedown": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_SCNUETStudentDeskIconInfo[i]]),
  2582. "onclick": U.UF.C.closure(function (obj) {
  2583. //防止拖动图标即打开了桌面应用
  2584. U.MD.D.click(this, obj);
  2585. }, [_SCNUETStudentDeskIconInfo[i]])
  2586. }, _frag); //
  2587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2590. }
  2591. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2592. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2593. _content = $$("div", {
  2594. className: "U_MD_D_KO",
  2595. "onmousedown": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_dseiStudentDeskIconInfo[i]]),
  2599. "onclick": U.UF.C.closure(function (obj) {
  2600. //防止拖动图标即打开了桌面应用
  2601. U.MD.D.click(this, obj);
  2602. }, [_dseiStudentDeskIconInfo[i]])
  2603. }, _frag); //
  2604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2607. }
  2608. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2609. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2610. _content = $$("div", {
  2611. className: "U_MD_D_KO",
  2612. "onmousedown": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2616. "onclick": U.UF.C.closure(function (obj) {
  2617. //防止拖动图标即打开了桌面应用
  2618. U.MD.D.click(this, obj);
  2619. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2620. }, _frag); //
  2621. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2622. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2623. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2624. }
  2625. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2626. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2627. _content = $$("div", {
  2628. className: "U_MD_D_KO",
  2629. "onmousedown": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_nsfxStudentDeskIconInfo[i]]),
  2633. "onclick": U.UF.C.closure(function (obj) {
  2634. //防止拖动图标即打开了桌面应用
  2635. U.MD.D.click(this, obj);
  2636. }, [_nsfxStudentDeskIconInfo[i]])
  2637. }, _frag); //
  2638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2641. }
  2642. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2643. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2644. _content = $$("div", {
  2645. className: "U_MD_D_KO",
  2646. "onmousedown": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_stiaStudentDeskIconInfo[i]]),
  2650. "onclick": U.UF.C.closure(function (obj) {
  2651. //防止拖动图标即打开了桌面应用
  2652. U.MD.D.click(this, obj);
  2653. }, [_stiaStudentDeskIconInfo[i]])
  2654. }, _frag); //
  2655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2658. }
  2659. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2660. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2661. _content = $$("div", {
  2662. className: "U_MD_D_KO",
  2663. "onmousedown": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_szdjgStudentDeskIconInfo[i]]),
  2667. "onclick": U.UF.C.closure(function (obj) {
  2668. //防止拖动图标即打开了桌面应用
  2669. U.MD.D.click(this, obj);
  2670. }, [_szdjgStudentDeskIconInfo[i]])
  2671. }, _frag); //
  2672. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2673. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2674. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2675. }
  2676. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2677. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2678. _content = $$("div", {
  2679. className: "U_MD_D_KO",
  2680. "onmousedown": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_x010607StudentDeskIconInfo[i]]),
  2684. "onclick": U.UF.C.closure(function (obj) {
  2685. //防止拖动图标即打开了桌面应用
  2686. U.MD.D.click(this, obj);
  2687. }, [_x010607StudentDeskIconInfo[i]])
  2688. }, _frag); //
  2689. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2690. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2691. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2692. }
  2693. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2694. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2695. _content = $$("div", {
  2696. className: "U_MD_D_KO",
  2697. "onmousedown": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_xhlyStudentDeskIconInfo[i]]),
  2701. "onclick": U.UF.C.closure(function (obj) {
  2702. //防止拖动图标即打开了桌面应用
  2703. U.MD.D.click(this, obj);
  2704. }, [_xhlyStudentDeskIconInfo[i]])
  2705. }, _frag); //
  2706. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2707. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2708. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2709. }
  2710. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2711. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2712. _content = $$("div", {
  2713. className: "U_MD_D_KO",
  2714. "onmousedown": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2718. "onclick": U.UF.C.closure(function (obj) {
  2719. //防止拖动图标即打开了桌面应用
  2720. U.MD.D.click(this, obj);
  2721. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2722. }, _frag); //
  2723. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2724. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2725. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2726. }
  2727. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2728. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2729. _content = $$("div", {
  2730. className: "U_MD_D_KO",
  2731. "onmousedown": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_x010503StudentDeskIconInfo[i]]),
  2735. "onclick": U.UF.C.closure(function (obj) {
  2736. //防止拖动图标即打开了桌面应用
  2737. U.MD.D.click(this, obj);
  2738. }, [_x010503StudentDeskIconInfo[i]])
  2739. }, _frag); //
  2740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2743. }
  2744. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2745. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2746. _content = $$("div", {
  2747. className: "U_MD_D_KO",
  2748. "onmousedown": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_x010504StudentDeskIconInfo[i]]),
  2752. "onclick": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_x010504StudentDeskIconInfo[i]])
  2756. }, _frag); //
  2757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2760. }
  2761. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2762. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2763. _content = $$("div", {
  2764. className: "U_MD_D_KO",
  2765. "onmousedown": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_x010505StudentDeskIconInfo[i]]),
  2769. "onclick": U.UF.C.closure(function (obj) {
  2770. //防止拖动图标即打开了桌面应用
  2771. U.MD.D.click(this, obj);
  2772. }, [_x010505StudentDeskIconInfo[i]])
  2773. }, _frag); //
  2774. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2775. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2776. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2777. }
  2778. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2779. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2780. _content = $$("div", {
  2781. className: "U_MD_D_KO",
  2782. "onmousedown": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010404StudentDeskIconInfo[i]]),
  2786. "onclick": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_x010404StudentDeskIconInfo[i]])
  2790. }, _frag); //
  2791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2794. }
  2795. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2796. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_x010204StudentDeskIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_x010204StudentDeskIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2811. }
  2812. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2813. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2814. _content = $$("div", {
  2815. className: "U_MD_D_KO",
  2816. "onmousedown": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_x320101StudentDeskIconInfo[i]]),
  2820. "onclick": U.UF.C.closure(function (obj) {
  2821. //防止拖动图标即打开了桌面应用
  2822. U.MD.D.click(this, obj);
  2823. }, [_x320101StudentDeskIconInfo[i]])
  2824. }, _frag); //
  2825. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2826. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2827. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2828. }
  2829. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2830. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2831. _content = $$("div", {
  2832. className: "U_MD_D_KO",
  2833. "onmousedown": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_trailStudentDeskIconInfo[i]]),
  2837. "onclick": U.UF.C.closure(function (obj) {
  2838. //防止拖动图标即打开了桌面应用
  2839. U.MD.D.click(this, obj);
  2840. }, [_trailStudentDeskIconInfo[i]])
  2841. }, _frag); //
  2842. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2843. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2844. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2845. }
  2846. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2847. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2848. _content = $$("div", {
  2849. className: "U_MD_D_KO",
  2850. "onmousedown": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_trialStudentDeskIconInfo[i]]),
  2854. "onclick": U.UF.C.closure(function (obj) {
  2855. //防止拖动图标即打开了桌面应用
  2856. U.MD.D.click(this, obj);
  2857. }, [_trialStudentDeskIconInfo[i]])
  2858. }, _frag); //
  2859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2862. }
  2863. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2864. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2865. _content = $$("div", {
  2866. className: "U_MD_D_KO",
  2867. "onmousedown": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2871. "onclick": U.UF.C.closure(function (obj) {
  2872. //防止拖动图标即打开了桌面应用
  2873. U.MD.D.click(this, obj);
  2874. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2875. }, _frag); //
  2876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2879. }
  2880. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2881. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2882. _content = $$("div", {
  2883. className: "U_MD_D_KO",
  2884. "onmousedown": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_szsyStudentDeskIconInfo[i]]),
  2888. "onclick": U.UF.C.closure(function (obj) {
  2889. //防止拖动图标即打开了桌面应用
  2890. U.MD.D.click(this, obj);
  2891. }, [_szsyStudentDeskIconInfo[i]])
  2892. }, _frag); //
  2893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2896. }
  2897. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2898. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2899. _content = $$("div", {
  2900. className: "U_MD_D_KO",
  2901. "onmousedown": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_demoCocoStudentDeskIconInfo[i]]),
  2905. "onclick": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_demoCocoStudentDeskIconInfo[i]])
  2909. }, _frag); //
  2910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2913. }
  2914. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2915. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2916. _content = $$("div", {
  2917. className: "U_MD_D_KO",
  2918. "onmousedown": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x010608StudentDeskIconInfo[i]]),
  2922. "onclick": U.UF.C.closure(function (obj) {
  2923. //防止拖动图标即打开了桌面应用
  2924. U.MD.D.click(this, obj);
  2925. }, [_x010608StudentDeskIconInfo[i]])
  2926. }, _frag); //
  2927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2930. }
  2931. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2932. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2933. _content = $$("div", {
  2934. className: "U_MD_D_KO",
  2935. "onmousedown": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_x010611StudentDeskIconInfo[i]]),
  2939. "onclick": U.UF.C.closure(function (obj) {
  2940. //防止拖动图标即打开了桌面应用
  2941. U.MD.D.click(this, obj);
  2942. }, [_x010611StudentDeskIconInfo[i]])
  2943. }, _frag); //
  2944. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2945. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2946. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2947. }
  2948. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2949. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2950. _content = $$("div", {
  2951. className: "U_MD_D_KO",
  2952. "onmousedown": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_x010612StudentDeskIconInfo[i]]),
  2956. "onclick": U.UF.C.closure(function (obj) {
  2957. //防止拖动图标即打开了桌面应用
  2958. U.MD.D.click(this, obj);
  2959. }, [_x010612StudentDeskIconInfo[i]])
  2960. }, _frag); //
  2961. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2962. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2963. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2964. }
  2965. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2966. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2967. _content = $$("div", {
  2968. className: "U_MD_D_KO",
  2969. "onmousedown": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_tianyuantudentDeskIconInfo[i]]),
  2973. "onclick": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_tianyuantudentDeskIconInfo[i]])
  2977. }, _frag); //
  2978. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2979. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2980. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2981. }
  2982. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2983. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2984. _content = $$("div", {
  2985. className: "U_MD_D_KO",
  2986. "onmousedown": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_siesStudentDeskIconInfo[i]]),
  2990. "onclick": U.UF.C.closure(function (obj) {
  2991. //防止拖动图标即打开了桌面应用
  2992. U.MD.D.click(this, obj);
  2993. }, [_siesStudentDeskIconInfo[i]])
  2994. }, _frag); //
  2995. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2996. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2997. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2998. }
  2999. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3000. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3001. _content = $$("div", {
  3002. className: "U_MD_D_KO",
  3003. "onmousedown": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_guzmsStudentDeskIconInfo[i]]),
  3007. "onclick": U.UF.C.closure(function (obj) {
  3008. //防止拖动图标即打开了桌面应用
  3009. U.MD.D.click(this, obj);
  3010. }, [_guzmsStudentDeskIconInfo[i]])
  3011. }, _frag); //
  3012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3015. }
  3016. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3017. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3018. _content = $$("div", {
  3019. className: "U_MD_D_KO",
  3020. "onmousedown": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_hkStudentDeskIconInfo[i]]),
  3024. "onclick": U.UF.C.closure(function (obj) {
  3025. //防止拖动图标即打开了桌面应用
  3026. U.MD.D.click(this, obj);
  3027. }, [_hkStudentDeskIconInfo[i]])
  3028. }, _frag); //
  3029. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3030. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3031. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3032. }
  3033. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3034. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3035. _content = $$("div", {
  3036. className: "U_MD_D_KO",
  3037. "onmousedown": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_tycyStudentDeskIconInfo[i]]),
  3041. "onclick": U.UF.C.closure(function (obj) {
  3042. //防止拖动图标即打开了桌面应用
  3043. U.MD.D.click(this, obj);
  3044. }, [_tycyStudentDeskIconInfo[i]])
  3045. }, _frag); //
  3046. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3047. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3048. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3049. }
  3050. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3051. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_ckcpsStudentDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_ckcpsStudentDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3068. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3069. _content = $$("div", {
  3070. className: "U_MD_D_KO",
  3071. "onmousedown": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_hkaceStudentDeskIconInfo[i]]),
  3075. "onclick": U.UF.C.closure(function (obj) {
  3076. //防止拖动图标即打开了桌面应用
  3077. U.MD.D.click(this, obj);
  3078. }, [_hkaceStudentDeskIconInfo[i]])
  3079. }, _frag); //
  3080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3083. }
  3084. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3085. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3086. _content = $$("div", {
  3087. className: "U_MD_D_KO",
  3088. "onmousedown": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3092. "onclick": U.UF.C.closure(function (obj) {
  3093. //防止拖动图标即打开了桌面应用
  3094. U.MD.D.click(this, obj);
  3095. }, [_BSDNSstudentDesktopIconInfo[i]])
  3096. }, _frag); //
  3097. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3098. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3099. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3100. }
  3101. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3102. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3103. _content = $$("div", {
  3104. className: "U_MD_D_KO",
  3105. "onmousedown": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_cocobizStudentDeskIconInfo[i]]),
  3109. "onclick": U.UF.C.closure(function (obj) {
  3110. //防止拖动图标即打开了桌面应用
  3111. U.MD.D.click(this, obj);
  3112. }, [_cocobizStudentDeskIconInfo[i]])
  3113. }, _frag); //
  3114. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3115. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3116. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3117. }
  3118. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3119. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3120. _content = $$("div", {
  3121. className: "U_MD_D_KO",
  3122. "onmousedown": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3126. "onclick": U.UF.C.closure(function (obj) {
  3127. //防止拖动图标即打开了桌面应用
  3128. U.MD.D.click(this, obj);
  3129. }, [_xxzjkyStudentDeskIconInfo[i]])
  3130. }, _frag); //
  3131. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3132. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3133. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3134. }
  3135. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3136. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3137. _content = $$("div", {
  3138. className: "U_MD_D_KO",
  3139. "onmousedown": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_studentDesktopIconInfo[i]]),
  3143. "onclick": U.UF.C.closure(function (obj) {
  3144. //防止拖动图标即打开了桌面应用
  3145. U.MD.D.click(this, obj);
  3146. }, [_studentDesktopIconInfo[i]])
  3147. }, _frag); //
  3148. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3149. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3150. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3151. }
  3152. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3153. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3154. _content = $$("div", {
  3155. className: "U_MD_D_KO",
  3156. "onmousedown": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tcStudentDeskIconInfo[i]]),
  3160. "onclick": U.UF.C.closure(function (obj) {
  3161. //防止拖动图标即打开了桌面应用
  3162. U.MD.D.click(this, obj);
  3163. }, [_tcStudentDeskIconInfo[i]])
  3164. }, _frag); //
  3165. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3166. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3167. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3168. }
  3169. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3170. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_szscStudentDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_szscStudentDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3187. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  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. }, [_studentDesktopIconInfo3[i]]),
  3194. "onclick": U.UF.C.closure(function (obj) {
  3195. //防止拖动图标即打开了桌面应用
  3196. U.MD.D.click(this, obj);
  3197. }, [_studentDesktopIconInfo3[i]])
  3198. }, _frag); //
  3199. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3200. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3201. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3202. }
  3203. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3204. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3205. _content = $$("div", {
  3206. className: "U_MD_D_KO",
  3207. "onmousedown": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_studentDesktopIconInfo2[i]]),
  3211. "onclick": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_studentDesktopIconInfo2[i]])
  3215. }, _frag); //
  3216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3219. }
  3220. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3221. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3222. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3223. continue
  3224. }
  3225. _content = $$("div", {
  3226. className: "U_MD_D_KO",
  3227. "onmousedown": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_wanketeacherDesktopIconInfo[i]]),
  3231. "onclick": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_wanketeacherDesktopIconInfo[i]])
  3235. }, _frag); //
  3236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3239. }
  3240. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3241. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3242. _content = $$("div", {
  3243. className: "U_MD_D_KO",
  3244. "onmousedown": U.UF.C.closure(function (obj) {
  3245. //防止拖动图标即打开了桌面应用
  3246. U.MD.D.click(this, obj);
  3247. }, [_wankeAdminDesktopIconInfo[i]]),
  3248. "onclick": U.UF.C.closure(function (obj) {
  3249. //防止拖动图标即打开了桌面应用
  3250. U.MD.D.click(this, obj);
  3251. }, [_wankeAdminDesktopIconInfo[i]])
  3252. }, _frag); //
  3253. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3254. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3255. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3256. }
  3257. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3258. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3259. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3260. continue
  3261. }
  3262. _content = $$("div", {
  3263. className: "U_MD_D_KO",
  3264. "onmousedown": U.UF.C.closure(function (obj) {
  3265. //防止拖动图标即打开了桌面应用
  3266. U.MD.D.click(this, obj);
  3267. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3268. "onclick": U.UF.C.closure(function (obj) {
  3269. //防止拖动图标即打开了桌面应用
  3270. U.MD.D.click(this, obj);
  3271. }, [_scnuaiTeacherDeskIconInfo[i]])
  3272. }, _frag); //
  3273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3276. }
  3277. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3278. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3279. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3280. continue
  3281. }
  3282. _content = $$("div", {
  3283. className: "U_MD_D_KO",
  3284. "onmousedown": U.UF.C.closure(function (obj) {
  3285. //防止拖动图标即打开了桌面应用
  3286. U.MD.D.click(this, obj);
  3287. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3288. "onclick": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_BSDNSteacherDesktopIconInfo[i]])
  3292. }, _frag); //
  3293. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3294. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3295. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3296. }
  3297. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3298. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3299. _content = $$("div", {
  3300. className: "U_MD_D_KO",
  3301. "onmousedown": U.UF.C.closure(function (obj) {
  3302. //防止拖动图标即打开了桌面应用
  3303. U.MD.D.click(this, obj);
  3304. }, [_scnuaiAdminDeskIconInfo[i]]),
  3305. "onclick": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_scnuaiAdminDeskIconInfo[i]])
  3309. }, _frag); //
  3310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3313. }
  3314. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3315. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3316. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3317. continue
  3318. }
  3319. _content = $$("div", {
  3320. className: "U_MD_D_KO",
  3321. "onmousedown": U.UF.C.closure(function (obj) {
  3322. //防止拖动图标即打开了桌面应用
  3323. U.MD.D.click(this, obj);
  3324. }, [_jccssylTeacherDeskIconInfo[i]]),
  3325. "onclick": U.UF.C.closure(function (obj) {
  3326. //防止拖动图标即打开了桌面应用
  3327. U.MD.D.click(this, obj);
  3328. }, [_jccssylTeacherDeskIconInfo[i]])
  3329. }, _frag); //
  3330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3333. }
  3334. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3335. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3336. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3337. continue
  3338. }
  3339. _content = $$("div", {
  3340. className: "U_MD_D_KO",
  3341. "onmousedown": U.UF.C.closure(function (obj) {
  3342. //防止拖动图标即打开了桌面应用
  3343. U.MD.D.click(this, obj);
  3344. }, [_caleTeacherDeskIconInfo[i]]),
  3345. "onclick": U.UF.C.closure(function (obj) {
  3346. //防止拖动图标即打开了桌面应用
  3347. U.MD.D.click(this, obj);
  3348. }, [_caleTeacherDeskIconInfo[i]])
  3349. }, _frag); //
  3350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3353. }
  3354. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3355. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3356. _content = $$("div", {
  3357. className: "U_MD_D_KO",
  3358. "onmousedown": U.UF.C.closure(function (obj) {
  3359. //防止拖动图标即打开了桌面应用
  3360. U.MD.D.click(this, obj);
  3361. }, [_tpcOrganizerDeskIconInfo[i]]),
  3362. "onclick": U.UF.C.closure(function (obj) {
  3363. //防止拖动图标即打开了桌面应用
  3364. U.MD.D.click(this, obj);
  3365. }, [_tpcOrganizerDeskIconInfo[i]])
  3366. }, _frag); //
  3367. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3368. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3369. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3370. }
  3371. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3372. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3373. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3374. continue
  3375. }
  3376. _content = $$("div", {
  3377. className: "U_MD_D_KO",
  3378. "onmousedown": U.UF.C.closure(function (obj) {
  3379. //防止拖动图标即打开了桌面应用
  3380. U.MD.D.click(this, obj);
  3381. }, [_tpcTeacherDeskIconInfo[i]]),
  3382. "onclick": U.UF.C.closure(function (obj) {
  3383. //防止拖动图标即打开了桌面应用
  3384. U.MD.D.click(this, obj);
  3385. }, [_tpcTeacherDeskIconInfo[i]])
  3386. }, _frag); //
  3387. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3388. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3389. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3390. }
  3391. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3392. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3393. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3394. continue
  3395. }
  3396. _content = $$("div", {
  3397. className: "U_MD_D_KO",
  3398. "onmousedown": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_teacherDesktopIconInfo2[i]]),
  3402. "onclick": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_teacherDesktopIconInfo2[i]])
  3406. }, _frag); //
  3407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3410. }
  3411. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3412. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3413. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3414. continue
  3415. }
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_thuioeTeacherDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_thuioeTeacherDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3432. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3433. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3434. continue
  3435. }
  3436. _content = $$("div", {
  3437. className: "U_MD_D_KO",
  3438. "onmousedown": U.UF.C.closure(function (obj) {
  3439. //防止拖动图标即打开了桌面应用
  3440. U.MD.D.click(this, obj);
  3441. }, [_lotechTeacherDeskIconInfo[i]]),
  3442. "onclick": U.UF.C.closure(function (obj) {
  3443. //防止拖动图标即打开了桌面应用
  3444. U.MD.D.click(this, obj);
  3445. }, [_lotechTeacherDeskIconInfo[i]])
  3446. }, _frag); //
  3447. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3448. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3449. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3450. }//
  3451. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3452. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3453. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3454. continue
  3455. }
  3456. _content = $$("div", {
  3457. className: "U_MD_D_KO",
  3458. "onmousedown": U.UF.C.closure(function (obj) {
  3459. //防止拖动图标即打开了桌面应用
  3460. U.MD.D.click(this, obj);
  3461. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3462. "onclick": U.UF.C.closure(function (obj) {
  3463. //防止拖动图标即打开了桌面应用
  3464. U.MD.D.click(this, obj);
  3465. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3466. }, _frag); //
  3467. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3468. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3469. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3470. }
  3471. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3472. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3473. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3474. continue
  3475. }
  3476. _content = $$("div", {
  3477. className: "U_MD_D_KO",
  3478. "onmousedown": U.UF.C.closure(function (obj) {
  3479. //防止拖动图标即打开了桌面应用
  3480. U.MD.D.click(this, obj);
  3481. }, [_siesTeacherDeskIconInfo[i]]),
  3482. "onclick": U.UF.C.closure(function (obj) {
  3483. //防止拖动图标即打开了桌面应用
  3484. U.MD.D.click(this, obj);
  3485. }, [_siesTeacherDeskIconInfo[i]])
  3486. }, _frag); //
  3487. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3488. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3489. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3490. }
  3491. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3492. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3493. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3494. continue
  3495. }
  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. }, [_guzmsTeacherDeskIconInfo[i]]),
  3502. "onclick": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_guzmsTeacherDeskIconInfo[i]])
  3506. }, _frag); //
  3507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3510. }
  3511. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3512. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3513. if(_role === 0 && _longhuaTeacherDeskIconInfo[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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3522. "onclick": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_longhuaTeacherDeskIconInfo[i]])
  3526. }, _frag); //
  3527. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3528. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3529. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3530. }
  3531. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3532. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3533. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3534. continue
  3535. }
  3536. _content = $$("div", {
  3537. className: "U_MD_D_KO",
  3538. "onmousedown": U.UF.C.closure(function (obj) {
  3539. //防止拖动图标即打开了桌面应用
  3540. U.MD.D.click(this, obj);
  3541. }, [_ytyTeacherDeskIconInfo[i]]),
  3542. "onclick": U.UF.C.closure(function (obj) {
  3543. //防止拖动图标即打开了桌面应用
  3544. U.MD.D.click(this, obj);
  3545. }, [_ytyTeacherDeskIconInfo[i]])
  3546. }, _frag); //
  3547. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3548. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3549. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3550. }
  3551. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3552. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3553. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3554. continue
  3555. }
  3556. _content = $$("div", {
  3557. className: "U_MD_D_KO",
  3558. "onmousedown": U.UF.C.closure(function (obj) {
  3559. //防止拖动图标即打开了桌面应用
  3560. U.MD.D.click(this, obj);
  3561. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3562. "onclick": U.UF.C.closure(function (obj) {
  3563. //防止拖动图标即打开了桌面应用
  3564. U.MD.D.click(this, obj);
  3565. }, [_yunhaiTeacherDeskIconInfo[i]])
  3566. }, _frag); //
  3567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3570. } //_hkStudentDeskIconInfo
  3571. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3572. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3573. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3574. continue
  3575. }
  3576. _content = $$("div", {
  3577. className: "U_MD_D_KO",
  3578. "onmousedown": U.UF.C.closure(function (obj) {
  3579. //防止拖动图标即打开了桌面应用
  3580. U.MD.D.click(this, obj);
  3581. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3582. "onclick": U.UF.C.closure(function (obj) {
  3583. //防止拖动图标即打开了桌面应用
  3584. U.MD.D.click(this, obj);
  3585. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3586. }, _frag); //
  3587. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3588. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3589. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3590. }
  3591. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3592. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3593. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3594. continue
  3595. }
  3596. _content = $$("div", {
  3597. className: "U_MD_D_KO",
  3598. "onmousedown": U.UF.C.closure(function (obj) {
  3599. //防止拖动图标即打开了桌面应用
  3600. U.MD.D.click(this, obj);
  3601. }, [_ricohTeacherDeskIconInfo[i]]),
  3602. "onclick": U.UF.C.closure(function (obj) {
  3603. //防止拖动图标即打开了桌面应用
  3604. U.MD.D.click(this, obj);
  3605. }, [_ricohTeacherDeskIconInfo[i]])
  3606. }, _frag); //
  3607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3610. }
  3611. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3612. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3613. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3614. continue
  3615. }
  3616. _content = $$("div", {
  3617. className: "U_MD_D_KO",
  3618. "onmousedown": U.UF.C.closure(function (obj) {
  3619. //防止拖动图标即打开了桌面应用
  3620. U.MD.D.click(this, obj);
  3621. }, [_hkTeacherDeskIconInfo[i]]),
  3622. "onclick": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_hkTeacherDeskIconInfo[i]])
  3626. }, _frag); //
  3627. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3628. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3629. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3630. }
  3631. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3632. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3633. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3634. continue
  3635. }
  3636. _content = $$("div", {
  3637. className: "U_MD_D_KO",
  3638. "onmousedown": U.UF.C.closure(function (obj) {
  3639. //防止拖动图标即打开了桌面应用
  3640. U.MD.D.click(this, obj);
  3641. }, [_tycyTeacherDeskIconInfo[i]]),
  3642. "onclick": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_tycyTeacherDeskIconInfo[i]])
  3646. }, _frag); //
  3647. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3648. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3649. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3650. }
  3651. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3652. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3653. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3654. continue
  3655. }
  3656. _content = $$("div", {
  3657. className: "U_MD_D_KO",
  3658. "onmousedown": U.UF.C.closure(function (obj) {
  3659. //防止拖动图标即打开了桌面应用
  3660. U.MD.D.click(this, obj);
  3661. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3662. "onclick": U.UF.C.closure(function (obj) {
  3663. //防止拖动图标即打开了桌面应用
  3664. U.MD.D.click(this, obj);
  3665. }, [_ckcpsTeacherDeskIconInfo[i]])
  3666. }, _frag); //
  3667. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3668. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3669. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3670. }
  3671. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3672. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3673. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3674. continue
  3675. }
  3676. _content = $$("div", {
  3677. className: "U_MD_D_KO",
  3678. "onmousedown": U.UF.C.closure(function (obj) {
  3679. //防止拖动图标即打开了桌面应用
  3680. U.MD.D.click(this, obj);
  3681. }, [_hkaceTeacherDeskIconInfo[i]]),
  3682. "onclick": U.UF.C.closure(function (obj) {
  3683. //防止拖动图标即打开了桌面应用
  3684. U.MD.D.click(this, obj);
  3685. }, [_hkaceTeacherDeskIconInfo[i]])
  3686. }, _frag); //
  3687. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3688. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3689. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3690. }
  3691. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3692. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3693. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3694. continue
  3695. }
  3696. _content = $$("div", {
  3697. className: "U_MD_D_KO",
  3698. "onmousedown": U.UF.C.closure(function (obj) {
  3699. //防止拖动图标即打开了桌面应用
  3700. U.MD.D.click(this, obj);
  3701. }, [_cocobizTeacherDeskIconInfo[i]]),
  3702. "onclick": U.UF.C.closure(function (obj) {
  3703. //防止拖动图标即打开了桌面应用
  3704. U.MD.D.click(this, obj);
  3705. }, [_cocobizTeacherDeskIconInfo[i]])
  3706. }, _frag); //
  3707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3710. }
  3711. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3712. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3713. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3714. continue
  3715. }
  3716. _content = $$("div", {
  3717. className: "U_MD_D_KO",
  3718. "onmousedown": U.UF.C.closure(function (obj) {
  3719. //防止拖动图标即打开了桌面应用
  3720. U.MD.D.click(this, obj);
  3721. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3722. "onclick": U.UF.C.closure(function (obj) {
  3723. //防止拖动图标即打开了桌面应用
  3724. U.MD.D.click(this, obj);
  3725. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3726. }, _frag); //
  3727. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3728. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3729. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3730. }
  3731. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3732. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3733. _content = $$("div", {
  3734. className: "U_MD_D_KO",
  3735. "onmousedown": U.UF.C.closure(function (obj) {
  3736. //防止拖动图标即打开了桌面应用
  3737. U.MD.D.click(this, obj);
  3738. }, [_gdjgAdminDeskIconInfo[i]]),
  3739. "onclick": U.UF.C.closure(function (obj) {
  3740. //防止拖动图标即打开了桌面应用
  3741. U.MD.D.click(this, obj);
  3742. }, [_gdjgAdminDeskIconInfo[i]])
  3743. }, _frag); //
  3744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3747. }
  3748. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3749. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3750. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3751. continue
  3752. }
  3753. _content = $$("div", {
  3754. className: "U_MD_D_KO",
  3755. "onmousedown": U.UF.C.closure(function (obj) {
  3756. //防止拖动图标即打开了桌面应用
  3757. U.MD.D.click(this, obj);
  3758. }, [_gdjgTeacherDeskIconInfo[i]]),
  3759. "onclick": U.UF.C.closure(function (obj) {
  3760. //防止拖动图标即打开了桌面应用
  3761. U.MD.D.click(this, obj);
  3762. }, [_gdjgTeacherDeskIconInfo[i]])
  3763. }, _frag); //
  3764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3767. }
  3768. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3769. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3770. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3771. continue
  3772. }
  3773. _content = $$("div", {
  3774. className: "U_MD_D_KO",
  3775. "onmousedown": U.UF.C.closure(function (obj) {
  3776. //防止拖动图标即打开了桌面应用
  3777. U.MD.D.click(this, obj);
  3778. }, [_szherTeacherDeskIconInfo[i]]),
  3779. "onclick": U.UF.C.closure(function (obj) {
  3780. //防止拖动图标即打开了桌面应用
  3781. U.MD.D.click(this, obj);
  3782. }, [_szherTeacherDeskIconInfo[i]])
  3783. }, _frag); //
  3784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3787. }
  3788. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3789. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3790. _content = $$("div", {
  3791. className: "U_MD_D_KO",
  3792. "onmousedown": U.UF.C.closure(function (obj) {
  3793. //防止拖动图标即打开了桌面应用
  3794. U.MD.D.click(this, obj);
  3795. }, [_heyuannAdminDeskIconInfo[i]]),
  3796. "onclick": U.UF.C.closure(function (obj) {
  3797. //防止拖动图标即打开了桌面应用
  3798. U.MD.D.click(this, obj);
  3799. }, [_heyuannAdminDeskIconInfo[i]])
  3800. }, _frag); //
  3801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3804. }
  3805. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3806. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3807. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3808. continue
  3809. }
  3810. _content = $$("div", {
  3811. className: "U_MD_D_KO",
  3812. "onmousedown": U.UF.C.closure(function (obj) {
  3813. //防止拖动图标即打开了桌面应用
  3814. U.MD.D.click(this, obj);
  3815. }, [_heyuanTeacherDeskIconInfo[i]]),
  3816. "onclick": U.UF.C.closure(function (obj) {
  3817. //防止拖动图标即打开了桌面应用
  3818. U.MD.D.click(this, obj);
  3819. }, [_heyuanTeacherDeskIconInfo[i]])
  3820. }, _frag); //
  3821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3824. } //
  3825. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3826. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3827. _content = $$("div", {
  3828. className: "U_MD_D_KO",
  3829. "onmousedown": U.UF.C.closure(function (obj) {
  3830. //防止拖动图标即打开了桌面应用
  3831. U.MD.D.click(this, obj);
  3832. }, [_dseiAdminDeskIconInfo[i]]),
  3833. "onclick": U.UF.C.closure(function (obj) {
  3834. //防止拖动图标即打开了桌面应用
  3835. U.MD.D.click(this, obj);
  3836. }, [_dseiAdminDeskIconInfo[i]])
  3837. }, _frag); //
  3838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3841. }
  3842. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3843. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3844. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3845. continue
  3846. }
  3847. _content = $$("div", {
  3848. className: "U_MD_D_KO",
  3849. "onmousedown": U.UF.C.closure(function (obj) {
  3850. //防止拖动图标即打开了桌面应用
  3851. U.MD.D.click(this, obj);
  3852. }, [_dseiTeacherDeskIconInfo[i]]),
  3853. "onclick": U.UF.C.closure(function (obj) {
  3854. //防止拖动图标即打开了桌面应用
  3855. U.MD.D.click(this, obj);
  3856. }, [_dseiTeacherDeskIconInfo[i]])
  3857. }, _frag); //
  3858. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3859. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3860. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3861. } //
  3862. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3863. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3864. _content = $$("div", {
  3865. className: "U_MD_D_KO",
  3866. "onmousedown": U.UF.C.closure(function (obj) {
  3867. //防止拖动图标即打开了桌面应用
  3868. U.MD.D.click(this, obj);
  3869. }, [_chjyjAdminDeskIconInfo[i]]),
  3870. "onclick": U.UF.C.closure(function (obj) {
  3871. //防止拖动图标即打开了桌面应用
  3872. U.MD.D.click(this, obj);
  3873. }, [_chjyjAdminDeskIconInfo[i]])
  3874. }, _frag); //
  3875. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3876. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3877. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3878. }//
  3879. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3880. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3881. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3882. continue
  3883. }
  3884. _content = $$("div", {
  3885. className: "U_MD_D_KO",
  3886. "onmousedown": U.UF.C.closure(function (obj) {
  3887. //防止拖动图标即打开了桌面应用
  3888. U.MD.D.click(this, obj);
  3889. }, [_chjyjTeacherDeskIconInfo[i]]),
  3890. "onclick": U.UF.C.closure(function (obj) {
  3891. //防止拖动图标即打开了桌面应用
  3892. U.MD.D.click(this, obj);
  3893. }, [_chjyjTeacherDeskIconInfo[i]])
  3894. }, _frag); //
  3895. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3896. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3897. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3898. }
  3899. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3900. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_szjkyAdminDeskIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szjkyAdminDeskIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3915. }//
  3916. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3917. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3918. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_szjkyTeacherDeskIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_szjkyTeacherDeskIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3937. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  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. }, [_x020201AdminDeskIconInfo[i]]),
  3944. "onclick": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_x020201AdminDeskIconInfo[i]])
  3948. }, _frag); //
  3949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3952. }//
  3953. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3954. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3955. if(_role === 0 && _x020201TeacherDeskIconInfo[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. }, [_x020201TeacherDeskIconInfo[i]]),
  3964. "onclick": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_x020201TeacherDeskIconInfo[i]])
  3968. }, _frag); //
  3969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3972. }
  3973. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3974. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3975. _content = $$("div", {
  3976. className: "U_MD_D_KO",
  3977. "onmousedown": U.UF.C.closure(function (obj) {
  3978. //防止拖动图标即打开了桌面应用
  3979. U.MD.D.click(this, obj);
  3980. }, [_SCNUETAdminDeskIconInfo[i]]),
  3981. "onclick": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_SCNUETAdminDeskIconInfo[i]])
  3985. }, _frag); //
  3986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3989. }//
  3990. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3991. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3992. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3993. continue
  3994. }
  3995. _content = $$("div", {
  3996. className: "U_MD_D_KO",
  3997. "onmousedown": U.UF.C.closure(function (obj) {
  3998. //防止拖动图标即打开了桌面应用
  3999. U.MD.D.click(this, obj);
  4000. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4001. "onclick": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_SCNUETTeacherDeskIconInfo[i]])
  4005. }, _frag); //
  4006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4009. }
  4010. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4011. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4012. _content = $$("div", {
  4013. className: "U_MD_D_KO",
  4014. "onmousedown": U.UF.C.closure(function (obj) {
  4015. //防止拖动图标即打开了桌面应用
  4016. U.MD.D.click(this, obj);
  4017. }, [_futianAdminDeskIconInfo[i]]),
  4018. "onclick": U.UF.C.closure(function (obj) {
  4019. //防止拖动图标即打开了桌面应用
  4020. U.MD.D.click(this, obj);
  4021. }, [_futianAdminDeskIconInfo[i]])
  4022. }, _frag); //
  4023. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4024. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4025. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4026. }
  4027. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4028. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4029. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4030. continue
  4031. }
  4032. _content = $$("div", {
  4033. className: "U_MD_D_KO",
  4034. "onmousedown": U.UF.C.closure(function (obj) {
  4035. //防止拖动图标即打开了桌面应用
  4036. U.MD.D.click(this, obj);
  4037. }, [_futianTeacherDeskIconInfo[i]]),
  4038. "onclick": U.UF.C.closure(function (obj) {
  4039. //防止拖动图标即打开了桌面应用
  4040. U.MD.D.click(this, obj);
  4041. }, [_futianTeacherDeskIconInfo[i]])
  4042. }, _frag); //
  4043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4046. }
  4047. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4048. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4049. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4050. continue
  4051. }
  4052. _content = $$("div", {
  4053. className: "U_MD_D_KO",
  4054. "onmousedown": U.UF.C.closure(function (obj) {
  4055. //防止拖动图标即打开了桌面应用
  4056. U.MD.D.click(this, obj);
  4057. }, [_MingdeTeacherDeskIcon[i]]),
  4058. "onclick": U.UF.C.closure(function (obj) {
  4059. //防止拖动图标即打开了桌面应用
  4060. U.MD.D.click(this, obj);
  4061. }, [_MingdeTeacherDeskIcon[i]])
  4062. }, _frag); //
  4063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4066. }
  4067. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4068. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4069. _content = $$("div", {
  4070. className: "U_MD_D_KO",
  4071. "onmousedown": U.UF.C.closure(function (obj) {
  4072. //防止拖动图标即打开了桌面应用
  4073. U.MD.D.click(this, obj);
  4074. }, [_lhsAdminDesktopIconInfo[i]]),
  4075. "onclick": U.UF.C.closure(function (obj) {
  4076. //防止拖动图标即打开了桌面应用
  4077. U.MD.D.click(this, obj);
  4078. }, [_lhsAdminDesktopIconInfo[i]])
  4079. }, _frag); //
  4080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4083. }
  4084. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4085. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4086. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4087. continue
  4088. }
  4089. _content = $$("div", {
  4090. className: "U_MD_D_KO",
  4091. "onmousedown": U.UF.C.closure(function (obj) {
  4092. //防止拖动图标即打开了桌面应用
  4093. U.MD.D.click(this, obj);
  4094. }, [_lhsteacherDesktopIconInfo[i]]),
  4095. "onclick": U.UF.C.closure(function (obj) {
  4096. //防止拖动图标即打开了桌面应用
  4097. U.MD.D.click(this, obj);
  4098. }, [_lhsteacherDesktopIconInfo[i]])
  4099. }, _frag); //
  4100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4103. }
  4104. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4105. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4106. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4107. continue
  4108. }
  4109. _content = $$("div", {
  4110. className: "U_MD_D_KO",
  4111. "onmousedown": U.UF.C.closure(function (obj) {
  4112. //防止拖动图标即打开了桌面应用
  4113. U.MD.D.click(this, obj);
  4114. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4115. "onclick": U.UF.C.closure(function (obj) {
  4116. //防止拖动图标即打开了桌面应用
  4117. U.MD.D.click(this, obj);
  4118. }, [_zhoujiateacherDesktopIconInfo[i]])
  4119. }, _frag); //
  4120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4123. }
  4124. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4125. for (i = 0; i < _hanDeskIcon.length; i++) {
  4126. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4127. continue
  4128. }
  4129. _content = $$("div", {
  4130. className: "U_MD_D_KO",
  4131. "onmousedown": U.UF.C.closure(function (obj) {
  4132. //防止拖动图标即打开了桌面应用
  4133. U.MD.D.click(this, obj);
  4134. }, [_hanDeskIcon[i]]),
  4135. "onclick": U.UF.C.closure(function (obj) {
  4136. //防止拖动图标即打开了桌面应用
  4137. U.MD.D.click(this, obj);
  4138. }, [_hanDeskIcon[i]])
  4139. }, _frag); //
  4140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4143. }
  4144. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4145. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4146. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4147. continue
  4148. }
  4149. _content = $$("div", {
  4150. className: "U_MD_D_KO",
  4151. "onmousedown": U.UF.C.closure(function (obj) {
  4152. //防止拖动图标即打开了桌面应用
  4153. U.MD.D.click(this, obj);
  4154. }, [_orgStemDeskIcon[i]]),
  4155. "onclick": U.UF.C.closure(function (obj) {
  4156. //防止拖动图标即打开了桌面应用
  4157. U.MD.D.click(this, obj);
  4158. }, [_orgStemDeskIcon[i]])
  4159. }, _frag); //
  4160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4163. }
  4164. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4165. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4166. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4167. continue
  4168. }
  4169. _content = $$("div", {
  4170. className: "U_MD_D_KO",
  4171. "onmousedown": U.UF.C.closure(function (obj) {
  4172. //防止拖动图标即打开了桌面应用
  4173. U.MD.D.click(this, obj);
  4174. }, [_szulsDeskIcon[i]]),
  4175. "onclick": U.UF.C.closure(function (obj) {
  4176. //防止拖动图标即打开了桌面应用
  4177. U.MD.D.click(this, obj);
  4178. }, [_szulsDeskIcon[i]])
  4179. }, _frag); //
  4180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4183. }
  4184. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4185. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4186. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4187. continue
  4188. }
  4189. _content = $$("div", {
  4190. className: "U_MD_D_KO",
  4191. "onmousedown": U.UF.C.closure(function (obj) {
  4192. //防止拖动图标即打开了桌面应用
  4193. U.MD.D.click(this, obj);
  4194. }, [_orgDesktopIconInfo[i]]),
  4195. "onclick": U.UF.C.closure(function (obj) {
  4196. //防止拖动图标即打开了桌面应用
  4197. U.MD.D.click(this, obj);
  4198. }, [_orgDesktopIconInfo[i]])
  4199. }, _frag); //
  4200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4203. }
  4204. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4205. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4206. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4207. continue
  4208. }
  4209. _content = $$("div", {
  4210. className: "U_MD_D_KO",
  4211. "onmousedown": U.UF.C.closure(function (obj) {
  4212. //防止拖动图标即打开了桌面应用
  4213. U.MD.D.click(this, obj);
  4214. }, [_schoolDesktopIconInfo[i]]),
  4215. "onclick": U.UF.C.closure(function (obj) {
  4216. //防止拖动图标即打开了桌面应用
  4217. U.MD.D.click(this, obj);
  4218. }, [_schoolDesktopIconInfo[i]])
  4219. }, _frag); //
  4220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4223. }
  4224. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4225. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4226. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4227. continue
  4228. }
  4229. _content = $$("div", {
  4230. className: "U_MD_D_KO",
  4231. "onmousedown": U.UF.C.closure(function (obj) {
  4232. //防止拖动图标即打开了桌面应用
  4233. U.MD.D.click(this, obj);
  4234. }, [_GMteacherDesktopIconInfo[i]]),
  4235. "onclick": U.UF.C.closure(function (obj) {
  4236. //防止拖动图标即打开了桌面应用
  4237. U.MD.D.click(this, obj);
  4238. }, [_GMteacherDesktopIconInfo[i]])
  4239. }, _frag); //
  4240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4243. }
  4244. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4245. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4246. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4247. continue
  4248. }
  4249. _content = $$("div", {
  4250. className: "U_MD_D_KO",
  4251. "onmousedown": U.UF.C.closure(function (obj) {
  4252. //防止拖动图标即打开了桌面应用
  4253. U.MD.D.click(this, obj);
  4254. }, [_SONGteacherDesktopIconInfo[i]]),
  4255. "onclick": U.UF.C.closure(function (obj) {
  4256. //防止拖动图标即打开了桌面应用
  4257. U.MD.D.click(this, obj);
  4258. }, [_SONGteacherDesktopIconInfo[i]])
  4259. }, _frag); //
  4260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4263. }
  4264. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4265. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4266. _content = $$("div", {
  4267. className: "U_MD_D_KO",
  4268. "onmousedown": U.UF.C.closure(function (obj) {
  4269. //防止拖动图标即打开了桌面应用
  4270. U.MD.D.click(this, obj);
  4271. }, [_GMstudentDesktopIconInfo[i]]),
  4272. "onclick": U.UF.C.closure(function (obj) {
  4273. //防止拖动图标即打开了桌面应用
  4274. U.MD.D.click(this, obj);
  4275. }, [_GMstudentDesktopIconInfo[i]])
  4276. }, _frag); //
  4277. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4278. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4279. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4280. }
  4281. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4282. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4283. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4284. continue
  4285. }
  4286. _content = $$("div", {
  4287. className: "U_MD_D_KO",
  4288. "onmousedown": U.UF.C.closure(function (obj) {
  4289. //防止拖动图标即打开了桌面应用
  4290. U.MD.D.click(this, obj);
  4291. }, [_tcTeacherDeskIconInfo[i]]),
  4292. "onclick": U.UF.C.closure(function (obj) {
  4293. //防止拖动图标即打开了桌面应用
  4294. U.MD.D.click(this, obj);
  4295. }, [_tcTeacherDeskIconInfo[i]])
  4296. }, _frag); //
  4297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4300. }
  4301. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4302. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4303. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4304. continue
  4305. }
  4306. _content = $$("div", {
  4307. className: "U_MD_D_KO",
  4308. "onmousedown": U.UF.C.closure(function (obj) {
  4309. //防止拖动图标即打开了桌面应用
  4310. U.MD.D.click(this, obj);
  4311. }, [_tcOrganizerDeskIconInfo[i]]),
  4312. "onclick": U.UF.C.closure(function (obj) {
  4313. //防止拖动图标即打开了桌面应用
  4314. U.MD.D.click(this, obj);
  4315. }, [_tcOrganizerDeskIconInfo[i]])
  4316. }, _frag); //
  4317. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4318. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4319. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4320. }
  4321. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4322. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4323. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4324. continue
  4325. }
  4326. _content = $$("div", {
  4327. className: "U_MD_D_KO",
  4328. "onmousedown": U.UF.C.closure(function (obj) {
  4329. //防止拖动图标即打开了桌面应用
  4330. U.MD.D.click(this, obj);
  4331. }, [_szscTeacherDeskIconInfo[i]]),
  4332. "onclick": U.UF.C.closure(function (obj) {
  4333. //防止拖动图标即打开了桌面应用
  4334. U.MD.D.click(this, obj);
  4335. }, [_szscTeacherDeskIconInfo[i]])
  4336. }, _frag); //
  4337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4340. }
  4341. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4342. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4343. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4344. continue
  4345. }
  4346. _content = $$("div", {
  4347. className: "U_MD_D_KO",
  4348. "onmousedown": U.UF.C.closure(function (obj) {
  4349. //防止拖动图标即打开了桌面应用
  4350. U.MD.D.click(this, obj);
  4351. }, [_szscOrganizerDeskIconInfo[i]]),
  4352. "onclick": U.UF.C.closure(function (obj) {
  4353. //防止拖动图标即打开了桌面应用
  4354. U.MD.D.click(this, obj);
  4355. }, [_szscOrganizerDeskIconInfo[i]])
  4356. }, _frag); //
  4357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4360. }
  4361. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4362. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4363. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4364. continue
  4365. }
  4366. _content = $$("div", {
  4367. className: "U_MD_D_KO",
  4368. "onmousedown": U.UF.C.closure(function (obj) {
  4369. //防止拖动图标即打开了桌面应用
  4370. U.MD.D.click(this, obj);
  4371. }, [_nsfxTeacherDeskIconInfo[i]]),
  4372. "onclick": U.UF.C.closure(function (obj) {
  4373. //防止拖动图标即打开了桌面应用
  4374. U.MD.D.click(this, obj);
  4375. }, [_nsfxTeacherDeskIconInfo[i]])
  4376. }, _frag); //
  4377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4380. }
  4381. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4382. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4383. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4384. continue
  4385. }
  4386. _content = $$("div", {
  4387. className: "U_MD_D_KO",
  4388. "onmousedown": U.UF.C.closure(function (obj) {
  4389. //防止拖动图标即打开了桌面应用
  4390. U.MD.D.click(this, obj);
  4391. }, [_stiaTeacherDeskIconInfo[i]]),
  4392. "onclick": U.UF.C.closure(function (obj) {
  4393. //防止拖动图标即打开了桌面应用
  4394. U.MD.D.click(this, obj);
  4395. }, [_stiaTeacherDeskIconInfo[i]])
  4396. }, _frag); //
  4397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4400. }
  4401. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4402. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4403. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4404. continue
  4405. }
  4406. _content = $$("div", {
  4407. className: "U_MD_D_KO",
  4408. "onmousedown": U.UF.C.closure(function (obj) {
  4409. //防止拖动图标即打开了桌面应用
  4410. U.MD.D.click(this, obj);
  4411. }, [_szdjgTeacherDeskIconInfo[i]]),
  4412. "onclick": U.UF.C.closure(function (obj) {
  4413. //防止拖动图标即打开了桌面应用
  4414. U.MD.D.click(this, obj);
  4415. }, [_szdjgTeacherDeskIconInfo[i]])
  4416. }, _frag); //
  4417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4420. }
  4421. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4422. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4423. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4424. continue
  4425. }
  4426. _content = $$("div", {
  4427. className: "U_MD_D_KO",
  4428. "onmousedown": U.UF.C.closure(function (obj) {
  4429. //防止拖动图标即打开了桌面应用
  4430. U.MD.D.click(this, obj);
  4431. }, [_x010607TeacherDeskIconInfo[i]]),
  4432. "onclick": U.UF.C.closure(function (obj) {
  4433. //防止拖动图标即打开了桌面应用
  4434. U.MD.D.click(this, obj);
  4435. }, [_x010607TeacherDeskIconInfo[i]])
  4436. }, _frag); //
  4437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4440. }
  4441. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4442. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4443. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4444. continue
  4445. }
  4446. _content = $$("div", {
  4447. className: "U_MD_D_KO",
  4448. "onmousedown": U.UF.C.closure(function (obj) {
  4449. //防止拖动图标即打开了桌面应用
  4450. U.MD.D.click(this, obj);
  4451. }, [_xhlyTeacherDeskIconInfo[i]]),
  4452. "onclick": U.UF.C.closure(function (obj) {
  4453. //防止拖动图标即打开了桌面应用
  4454. U.MD.D.click(this, obj);
  4455. }, [_xhlyTeacherDeskIconInfo[i]])
  4456. }, _frag); //
  4457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4460. }
  4461. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4462. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4463. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4464. continue
  4465. }
  4466. _content = $$("div", {
  4467. className: "U_MD_D_KO",
  4468. "onmousedown": U.UF.C.closure(function (obj) {
  4469. //防止拖动图标即打开了桌面应用
  4470. U.MD.D.click(this, obj);
  4471. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4472. "onclick": U.UF.C.closure(function (obj) {
  4473. //防止拖动图标即打开了桌面应用
  4474. U.MD.D.click(this, obj);
  4475. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4476. }, _frag); //
  4477. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4478. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4479. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4480. }
  4481. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4482. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4483. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4484. continue
  4485. }
  4486. _content = $$("div", {
  4487. className: "U_MD_D_KO",
  4488. "onmousedown": U.UF.C.closure(function (obj) {
  4489. //防止拖动图标即打开了桌面应用
  4490. U.MD.D.click(this, obj);
  4491. }, [_x010503TeacherDeskIconInfo[i]]),
  4492. "onclick": U.UF.C.closure(function (obj) {
  4493. //防止拖动图标即打开了桌面应用
  4494. U.MD.D.click(this, obj);
  4495. }, [_x010503TeacherDeskIconInfo[i]])
  4496. }, _frag); //
  4497. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4498. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4499. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4500. }
  4501. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4502. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4503. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4504. continue
  4505. }
  4506. _content = $$("div", {
  4507. className: "U_MD_D_KO",
  4508. "onmousedown": U.UF.C.closure(function (obj) {
  4509. //防止拖动图标即打开了桌面应用
  4510. U.MD.D.click(this, obj);
  4511. }, [_x010504TeacherDeskIconInfo[i]]),
  4512. "onclick": U.UF.C.closure(function (obj) {
  4513. //防止拖动图标即打开了桌面应用
  4514. U.MD.D.click(this, obj);
  4515. }, [_x010504TeacherDeskIconInfo[i]])
  4516. }, _frag); //
  4517. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4518. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4519. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4520. }
  4521. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4522. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4523. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4524. continue
  4525. }
  4526. _content = $$("div", {
  4527. className: "U_MD_D_KO",
  4528. "onmousedown": U.UF.C.closure(function (obj) {
  4529. //防止拖动图标即打开了桌面应用
  4530. U.MD.D.click(this, obj);
  4531. }, [_x010505TeacherDeskIconInfo[i]]),
  4532. "onclick": U.UF.C.closure(function (obj) {
  4533. //防止拖动图标即打开了桌面应用
  4534. U.MD.D.click(this, obj);
  4535. }, [_x010505TeacherDeskIconInfo[i]])
  4536. }, _frag); //
  4537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4540. }
  4541. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4542. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4543. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4544. continue
  4545. }
  4546. _content = $$("div", {
  4547. className: "U_MD_D_KO",
  4548. "onmousedown": U.UF.C.closure(function (obj) {
  4549. //防止拖动图标即打开了桌面应用
  4550. U.MD.D.click(this, obj);
  4551. }, [_x010404TeacherDeskIconInfo[i]]),
  4552. "onclick": U.UF.C.closure(function (obj) {
  4553. //防止拖动图标即打开了桌面应用
  4554. U.MD.D.click(this, obj);
  4555. }, [_x010404TeacherDeskIconInfo[i]])
  4556. }, _frag); //
  4557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4560. }
  4561. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4562. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4563. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4564. continue
  4565. }
  4566. _content = $$("div", {
  4567. className: "U_MD_D_KO",
  4568. "onmousedown": U.UF.C.closure(function (obj) {
  4569. //防止拖动图标即打开了桌面应用
  4570. U.MD.D.click(this, obj);
  4571. }, [_x010204TeacherDeskIconInfo[i]]),
  4572. "onclick": U.UF.C.closure(function (obj) {
  4573. //防止拖动图标即打开了桌面应用
  4574. U.MD.D.click(this, obj);
  4575. }, [_x010204TeacherDeskIconInfo[i]])
  4576. }, _frag); //
  4577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4580. }
  4581. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4582. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4583. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4584. continue
  4585. }
  4586. _content = $$("div", {
  4587. className: "U_MD_D_KO",
  4588. "onmousedown": U.UF.C.closure(function (obj) {
  4589. //防止拖动图标即打开了桌面应用
  4590. U.MD.D.click(this, obj);
  4591. }, [_x320101TeacherDeskIconInfo[i]]),
  4592. "onclick": U.UF.C.closure(function (obj) {
  4593. //防止拖动图标即打开了桌面应用
  4594. U.MD.D.click(this, obj);
  4595. }, [_x320101TeacherDeskIconInfo[i]])
  4596. }, _frag); //
  4597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4600. }
  4601. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4602. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4603. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4604. continue
  4605. }
  4606. _content = $$("div", {
  4607. className: "U_MD_D_KO",
  4608. "onmousedown": U.UF.C.closure(function (obj) {
  4609. //防止拖动图标即打开了桌面应用
  4610. U.MD.D.click(this, obj);
  4611. }, [_trailTeacherDeskIconInfo[i]]),
  4612. "onclick": U.UF.C.closure(function (obj) {
  4613. //防止拖动图标即打开了桌面应用
  4614. U.MD.D.click(this, obj);
  4615. }, [_trailTeacherDeskIconInfo[i]])
  4616. }, _frag); //
  4617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4620. }
  4621. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4622. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4623. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4624. continue
  4625. }
  4626. _content = $$("div", {
  4627. className: "U_MD_D_KO",
  4628. "onmousedown": U.UF.C.closure(function (obj) {
  4629. //防止拖动图标即打开了桌面应用
  4630. U.MD.D.click(this, obj);
  4631. }, [_trialTeacherDeskIconInfo[i]]),
  4632. "onclick": U.UF.C.closure(function (obj) {
  4633. //防止拖动图标即打开了桌面应用
  4634. U.MD.D.click(this, obj);
  4635. }, [_trialTeacherDeskIconInfo[i]])
  4636. }, _frag); //
  4637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4640. }
  4641. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4642. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4643. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4644. continue
  4645. }
  4646. _content = $$("div", {
  4647. className: "U_MD_D_KO",
  4648. "onmousedown": U.UF.C.closure(function (obj) {
  4649. //防止拖动图标即打开了桌面应用
  4650. U.MD.D.click(this, obj);
  4651. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4652. "onclick": U.UF.C.closure(function (obj) {
  4653. //防止拖动图标即打开了桌面应用
  4654. U.MD.D.click(this, obj);
  4655. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4656. }, _frag); //
  4657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4660. }
  4661. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4662. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4663. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4664. continue
  4665. }
  4666. _content = $$("div", {
  4667. className: "U_MD_D_KO",
  4668. "onmousedown": U.UF.C.closure(function (obj) {
  4669. //防止拖动图标即打开了桌面应用
  4670. U.MD.D.click(this, obj);
  4671. }, [_szsyTeacherDeskIconInfo[i]]),
  4672. "onclick": U.UF.C.closure(function (obj) {
  4673. //防止拖动图标即打开了桌面应用
  4674. U.MD.D.click(this, obj);
  4675. }, [_szsyTeacherDeskIconInfo[i]])
  4676. }, _frag); //
  4677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4680. }
  4681. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4682. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4683. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4684. continue
  4685. }
  4686. _content = $$("div", {
  4687. className: "U_MD_D_KO",
  4688. "onmousedown": U.UF.C.closure(function (obj) {
  4689. //防止拖动图标即打开了桌面应用
  4690. U.MD.D.click(this, obj);
  4691. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4692. "onclick": U.UF.C.closure(function (obj) {
  4693. //防止拖动图标即打开了桌面应用
  4694. U.MD.D.click(this, obj);
  4695. }, [_demoCocoTeacherDeskIconInfo[i]])
  4696. }, _frag); //
  4697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4700. }
  4701. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4702. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4703. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4704. continue
  4705. }
  4706. _content = $$("div", {
  4707. className: "U_MD_D_KO",
  4708. "onmousedown": U.UF.C.closure(function (obj) {
  4709. //防止拖动图标即打开了桌面应用
  4710. U.MD.D.click(this, obj);
  4711. }, [_x010608TeacherDeskIconInfo[i]]),
  4712. "onclick": U.UF.C.closure(function (obj) {
  4713. //防止拖动图标即打开了桌面应用
  4714. U.MD.D.click(this, obj);
  4715. }, [_x010608TeacherDeskIconInfo[i]])
  4716. }, _frag); //
  4717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4720. }
  4721. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4722. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4723. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4724. continue
  4725. }
  4726. _content = $$("div", {
  4727. className: "U_MD_D_KO",
  4728. "onmousedown": U.UF.C.closure(function (obj) {
  4729. //防止拖动图标即打开了桌面应用
  4730. U.MD.D.click(this, obj);
  4731. }, [_x010611TeacherDeskIconInfo[i]]),
  4732. "onclick": U.UF.C.closure(function (obj) {
  4733. //防止拖动图标即打开了桌面应用
  4734. U.MD.D.click(this, obj);
  4735. }, [_x010611TeacherDeskIconInfo[i]])
  4736. }, _frag); //
  4737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4740. }
  4741. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4742. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4743. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4744. continue
  4745. }
  4746. _content = $$("div", {
  4747. className: "U_MD_D_KO",
  4748. "onmousedown": U.UF.C.closure(function (obj) {
  4749. //防止拖动图标即打开了桌面应用
  4750. U.MD.D.click(this, obj);
  4751. }, [_x010612TeacherDeskIconInfo[i]]),
  4752. "onclick": U.UF.C.closure(function (obj) {
  4753. //防止拖动图标即打开了桌面应用
  4754. U.MD.D.click(this, obj);
  4755. }, [_x010612TeacherDeskIconInfo[i]])
  4756. }, _frag); //
  4757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4760. }
  4761. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4762. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4763. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4764. continue
  4765. }
  4766. _content = $$("div", {
  4767. className: "U_MD_D_KO",
  4768. "onmousedown": U.UF.C.closure(function (obj) {
  4769. //防止拖动图标即打开了桌面应用
  4770. U.MD.D.click(this, obj);
  4771. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4772. "onclick": U.UF.C.closure(function (obj) {
  4773. //防止拖动图标即打开了桌面应用
  4774. U.MD.D.click(this, obj);
  4775. }, [_tianyuanTeacherDeskIconInfo[i]])
  4776. }, _frag); //
  4777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4780. }
  4781. } else {
  4782. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4783. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4784. continue
  4785. }
  4786. _content = $$("div", {
  4787. className: "U_MD_D_KO",
  4788. "onmousedown": U.UF.C.closure(function (obj) {
  4789. //防止拖动图标即打开了桌面应用
  4790. U.MD.D.click(this, obj);
  4791. }, [_teacherDesktopIconInfo[i]]),
  4792. "onclick": U.UF.C.closure(function (obj) {
  4793. //防止拖动图标即打开了桌面应用
  4794. U.MD.D.click(this, obj);
  4795. }, [_teacherDesktopIconInfo[i]])
  4796. }, _frag); //
  4797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4800. }
  4801. }
  4802. } else {
  4803. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4804. _content = $$("div", {
  4805. className: "U_MD_D_KO",
  4806. style: { 'width': '124px', 'height': '145px' },
  4807. "onmousedown": U.UF.C.closure(function (obj) {
  4808. //防止拖动图标即打开了桌面应用
  4809. U.MD.D.click(this, obj);
  4810. }, [_easyDesktopIconInfo[i]]),
  4811. "onclick": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_easyDesktopIconInfo[i]])
  4815. }, _frag); //
  4816. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4819. }
  4820. }
  4821. if (type == 1) {
  4822. //加载好后给图标定位
  4823. U.MD.D.iconPostion($(_frag).Child());
  4824. } else {
  4825. //加载好后给图标定位
  4826. U.MD.D.iconPostion2($(_frag).Child());
  4827. }
  4828. //把图标加载到页面
  4829. el.appendChild(_frag);
  4830. }
  4831. /**
  4832. * 显示任务栏
  4833. *
  4834. * @param {element} 桌面元素
  4835. */
  4836. U.MD.D.I.displayTaskbar = function (el) {
  4837. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4838. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4839. //任务栏位置变化
  4840. U.selectEl(el).css({ "bottom": "0px" });
  4841. //桌面位置变话
  4842. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4843. }
  4844. }
  4845. //#region 桌面图标拖动逻辑
  4846. /**
  4847. * 桌面排列图标
  4848. *
  4849. * @param {element} 桌面元素
  4850. * @param {object} 上下相距的距离
  4851. * @param {object} 左右相距的距离
  4852. * @return {object} 命名空间
  4853. */
  4854. U.MD.D.iconPostion = function (childs, top, left) {
  4855. var i; //用于循环处理
  4856. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4857. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4858. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4859. for (i = 0; i < childs.length; i++) {
  4860. //如果竖排top超过了范围处理
  4861. if (top + 95 > US.height - 10) {
  4862. //left超过了页面范围处理,则向上重叠打印处理
  4863. if ((left + 180) > US.width) {
  4864. top -= 110;
  4865. left -= 90;
  4866. }
  4867. //没有超过范围,那么left+90添加到下一个竖排打印
  4868. else {
  4869. left += 90;
  4870. top = 15;
  4871. };
  4872. }
  4873. //给图标的位置赋值
  4874. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4875. if (i < childs.length - 1) {
  4876. //页面图标每次向下加95
  4877. top += 95;
  4878. }
  4879. }
  4880. //返回最后调用的图标的位置
  4881. return [top, left];
  4882. }
  4883. /**
  4884. * 桌面排列图标
  4885. *
  4886. * @param {element} 桌面元素
  4887. * @param {object} 上下相距的距离
  4888. * @param {object} 左右相距的距离
  4889. * @return {object} 命名空间
  4890. */
  4891. U.MD.D.iconPostion2 = function (childs, top, left) {
  4892. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4893. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4894. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4895. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4896. for (i = 0; i < childs.length; i++) {
  4897. //如果竖排top超过了范围处理
  4898. if (left + 150 > US.width - 10) {
  4899. //left超过了页面范围处理,则向上重叠打印处理
  4900. if ((top + 180) > US.Height) {
  4901. top -= 150;
  4902. left -= 150;
  4903. }
  4904. //没有超过范围,那么left+90添加到下一个竖排打印
  4905. else {
  4906. top += 150;
  4907. left = ol;
  4908. };
  4909. }
  4910. //给图标的位置赋值
  4911. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4912. if (i < childs.length - 1) {
  4913. //页面图标每次向下加95
  4914. left += 150;
  4915. }
  4916. }
  4917. //返回最后调用的图标的位置
  4918. return [top, left];
  4919. }
  4920. /**
  4921. * 桌面点击事件逻辑
  4922. *
  4923. * @param {element} 桌面元素
  4924. * @param {object} 上下相距的距离
  4925. * @param {object} 左右相距的距离
  4926. * @return {object} 命名空间
  4927. */
  4928. U.MD.D.click = function (el, obj) {
  4929. var _buttonnumber = event.button; //点击的按钮的事件值
  4930. var _userinfo = US.userInfo;
  4931. U.UF.EV.stopBubble(); //阻止向上冒泡
  4932. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4933. if (_buttonnumber < 2) {
  4934. //如果是click事件的处理
  4935. if (event.type == "click") {
  4936. //如果元素在mousemove事件中没有移动则出发click事件
  4937. if (!U.MD.D.I.IsDrag) {
  4938. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4939. U.alert("请先登录您的账号!");
  4940. setTimeout(() => {
  4941. U.MD.U.L.login();
  4942. }, 2000);
  4943. } else {
  4944. //打开应用处理
  4945. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4946. }
  4947. }
  4948. }
  4949. //如果是mouse事件的处理
  4950. else {
  4951. if (US.Config.type == '1') {
  4952. //拖动处理,添加拖动和拖动结束事件
  4953. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4954. }
  4955. }
  4956. U.MD.D.I.IsDrag = false;
  4957. }
  4958. }
  4959. /**
  4960. * 拖动的处理
  4961. *
  4962. */
  4963. U.MD.D.iconMove = function () {
  4964. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4965. U.MD.D.I.IsDrag = true;
  4966. }
  4967. /**
  4968. * 拖动结束后,这里是定位处理,以网状的形式定位
  4969. *
  4970. * @param {element} 拖动的元素
  4971. * @return {object} 命名空间
  4972. */
  4973. U.MD.D.iconUp = function (el) {
  4974. var _top = 15,
  4975. _left = 20,
  4976. _margin,
  4977. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4978. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4979. if (_positioninfo["OT"] > 15) {
  4980. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4981. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4982. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4983. }
  4984. if (_positioninfo["OL"] > 20) {
  4985. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4986. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4987. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4988. }
  4989. //while循环判断么一个重叠的元素
  4990. do {
  4991. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4992. _top = _positioninfo[0] + 95; //得到定位后的top
  4993. _left = _positioninfo[1]; //得到定位后的left
  4994. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4995. }
  4996. /**
  4997. * 判断拖动后图标是否重叠
  4998. *
  4999. * @param {element} 拖动的元素
  5000. * @param {element} 桌面所有的元素
  5001. * @param {array} 拖动元素的位置
  5002. ----------[0] 上 top
  5003. ----------[1] 左 left
  5004. * @return {object} 命名空间
  5005. */
  5006. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5007. //循环所有的图标
  5008. for (var i = 0; i < childs.length; i++) {
  5009. //判断有没有和该图标诶子重叠的元素
  5010. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5011. return childs[i]; //如果有返回
  5012. }
  5013. }
  5014. }
  5015. //#endregion
  5016. //#endregion
  5017. //#region 桌面应用
  5018. /**
  5019. * 打开应用
  5020. *
  5021. * @param {string} 类型
  5022. -----------------Disk 网盘系统
  5023. -----------------PDisk 学习系统网盘
  5024. -----------------Poto 图片
  5025. -----------------Video 视频
  5026. -----------------Music 音乐
  5027. -----------------Word word
  5028. -----------------Excel excel
  5029. -----------------Txt 记事本
  5030. -----------------PB 学习系统
  5031. -----------------Blog 朋友圈系统
  5032. -----------------FTP ftp系统
  5033. -----------------Group 好友群
  5034. -----------------SY 首页系统
  5035. -----------------Set 个人设置
  5036. -----------------XSet 系统设置
  5037. -----------------App 我们所有的app
  5038. -----------------BC c.1473.cn 平台
  5039. -----------------CWeb d.1473.cn 变成平台
  5040. -----------------其他的外联系统 我们统一用iframe打开
  5041. * @param {array} 类型
  5042. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5043. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5044. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5045. 如果第一个参数为其他,则无第二个参数
  5046. * @returns {array}
  5047. */
  5048. window.addEventListener('message', function (e) { // 监听 message 事件
  5049. // alert(e.data.type);
  5050. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5051. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5052. //3是展示全部阶段 2学生 1老师 4专家
  5053. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5054. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5055. //3是展示全部阶段 2学生 1老师 4专家
  5056. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5057. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5058. //3是展示全部阶段 2学生 1老师 4专家
  5059. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5060. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5061. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5062. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5063. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5064. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5065. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5066. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5067. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5068. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5069. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5070. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5071. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5072. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5073. //3是展示全部阶段 2学生 1老师 4专家
  5074. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5075. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5076. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5077. U.MD.D.I.selectUser();
  5078. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5079. var _formel = document.getElementById("study");
  5080. U.UF.F.windowZooming(_formel);
  5081. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5082. var _formel = document.getElementById("studyDetail");
  5083. U.UF.F.windowZooming(_formel);
  5084. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5085. var _formel = document.getElementById("studyDetail");
  5086. U.UF.F.windowZooming(_formel);
  5087. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5088. var _formel = document.getElementById("studentStudy");
  5089. U.UF.F.windowZooming(_formel);
  5090. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5091. // var _formel = document.getElementById("study");
  5092. //如果最大化了,那么就把他缩小
  5093. // if (_formel.ismaximize) {
  5094. // return;
  5095. // }
  5096. // U.UF.F.windowZooming(_formel);
  5097. // U.UF.F.topWindow(_formel);
  5098. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5099. // var _formel = document.getElementById("studyDetail");
  5100. //如果最大化了,那么就把他缩小
  5101. // if (_formel.ismaximize) {
  5102. // return;
  5103. // }
  5104. // U.UF.F.windowZooming(_formel);
  5105. // U.UF.F.topWindow(_formel);
  5106. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5107. // var _formel = document.getElementById("studentStudy");
  5108. // if (_formel.ismaximize) {
  5109. // return;
  5110. // }
  5111. // U.UF.F.windowZooming(_formel);
  5112. // U.UF.F.topWindow(_formel);
  5113. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5114. var _formel = document.getElementById("study");
  5115. // if (_formel.ismaximize) {
  5116. // return;
  5117. // }
  5118. // U.UF.F.windowZooming(_formel);
  5119. U.UF.F.topWindow(_formel);
  5120. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5121. var _formel = document.getElementById("studentIndex");
  5122. U.UF.F.windowZooming(_formel);
  5123. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5124. var _formel = document.getElementById("studyDetailS");
  5125. U.UF.F.windowZooming(_formel);
  5126. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5127. var _formel = document.getElementById("studioIndex");
  5128. U.UF.F.windowZooming(_formel);
  5129. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5130. var _formel = document.getElementById("studyDetailStudio");
  5131. U.UF.F.windowZooming(_formel);
  5132. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5133. var _formel = document.getElementById("studyDetailStudio");
  5134. U.UF.F.windowZooming(_formel);
  5135. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5136. var _formel = document.getElementById("studyDetailNT");
  5137. U.UF.F.windowZooming(_formel);
  5138. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5139. var _formel = document.getElementById("studyDetailS");
  5140. U.UF.F.windowZooming(_formel);
  5141. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5142. var _formel = document.getElementById("studyDetailS");
  5143. U.UF.F.topWindow(_formel);
  5144. } else if (e.data.tools && e.data.tools == "1") {
  5145. // U.MD.D.I.openApplication("whiteboard")
  5146. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5147. } else if (e.data.tools && e.data.tools == "2") {
  5148. U.MD.D.I.openApplication("note")
  5149. } else if (e.data.tools && e.data.tools == "3") {
  5150. // U.MD.D.I.openApplication("mind")
  5151. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5152. } else if (e.data.tools && e.data.tools == "4") {
  5153. U.MD.D.I.openApplication("investigation")
  5154. } else if (e.data.tools && e.data.tools == "6") {
  5155. // U.MD.D.I.openApplication("doc")
  5156. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5157. } else if (e.data.tools && e.data.tools == "7") {
  5158. // U.MD.D.I.openApplication("mindNetwork")
  5159. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5160. } else if (e.data.tools && e.data.tools == "8") {
  5161. U.MD.D.I.openApplication("library")
  5162. } else if (e.data.tools && e.data.tools == "17") {
  5163. U.MD.D.I.openApplication("stuLibrary")
  5164. } else if (e.data.tools && e.data.tools == "18") {
  5165. U.MD.D.I.openApplication("train")
  5166. } else if (e.data.tools && e.data.tools == "21") {
  5167. U.MD.D.I.openApplication("program")
  5168. } else if (e.data.tools && e.data.tools == "22") {
  5169. U.MD.D.I.openApplication("AIprogram2")
  5170. } else if (e.data.tools && e.data.tools == "23") {
  5171. U.MD.D.I.openApplication("Pythonprogram")
  5172. } else if (e.data.tools && e.data.tools == "24") {
  5173. U.MD.D.I.openApplication("AIprogram")
  5174. } else if (e.data.tools && e.data.tools == "25") {
  5175. U.MD.D.I.openApplication("sys")
  5176. } else if (e.data.tools && e.data.tools == "26") {
  5177. // U.MD.D.I.openApplication("courseDesign")
  5178. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5179. } else if (e.data.tools && e.data.tools == "31") {
  5180. U.MD.D.I.openApplication("netWorkPanel")
  5181. } else if (e.data.tools && e.data.tools == "32") {
  5182. U.MD.D.I.openApplication("codeEdit")
  5183. } else if (e.data.tools && e.data.tools == "57") {
  5184. U.MD.D.I.openApplication("CocoPi")
  5185. } else if (e.data.tools && e.data.tools == "63") {
  5186. U.MD.D.I.openApplication("Wood")
  5187. } else if (e.data.tools && e.data.tools == "58") {
  5188. U.MD.D.I.openApplication("car")
  5189. } else if (e.data.tools && e.data.tools == "59") {
  5190. U.MD.D.I.openApplication("lineSearch")
  5191. } else if (e.data.tools && e.data.tools == "60") {
  5192. U.MD.D.I.openApplication("deepLearning")
  5193. } else if (e.data.tools && e.data.tools == "61") {
  5194. U.MD.D.I.openApplication("allHistory")
  5195. } else if (e.data.tools && e.data.tools == "28") {
  5196. U.MD.D.I.openApplication("translation")
  5197. } else if (e.data.tools && e.data.tools == "37") {
  5198. U.MD.D.I.openApplication("mohe")
  5199. } else if (e.data.tools && e.data.tools == "38") {
  5200. U.MD.D.I.openApplication("24game")
  5201. } else if (e.data.tools && e.data.tools == "39") {
  5202. U.MD.D.I.openApplication("GeoGebra")
  5203. } else if (e.data.tools && e.data.tools == "43") {
  5204. U.MD.D.I.openApplication("studentEvaluate")
  5205. } else if (e.data.tools && e.data.tools == "44") {
  5206. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5207. } else if (e.data.tools && e.data.tools == "46") {
  5208. U.MD.D.I.openApplication("project")
  5209. } else if (e.data.tools && e.data.tools == "71") {
  5210. U.MD.D.I.openApplication("aigptCourse")
  5211. } else if (e.data.tools && e.data.tools == "72") {
  5212. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5213. } else if (e.data.tools && e.data.tools == "1s") {
  5214. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5215. } else if (e.data.tools && e.data.tools == "3s") {
  5216. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5217. } else if (e.data.tools && e.data.tools == "6s") {
  5218. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5219. } else if (e.data.tools && e.data.tools == "1studio") {
  5220. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5221. } else if (e.data.tools && e.data.tools == "3studio") {
  5222. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5223. } else if (e.data.tools && e.data.tools == "6studio") {
  5224. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5225. } else if (e.data.tools && e.data.tools == "3y") {
  5226. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5227. } else if (e.data.tools && e.data.tools == "1y") {
  5228. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5229. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5230. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5231. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5232. U.MD.D.I.openApplication("AIAnalyse")
  5233. } else if (e.data.tools && e.data.tools == "1teacher") {
  5234. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5235. } else if (e.data.tools && e.data.tools == "3teacher") {
  5236. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5237. } else if (e.data.tools && e.data.tools == "7teacher") {
  5238. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5239. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5240. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5241. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5242. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5243. } else if (e.data.tools && e.data.tools == "1E") {
  5244. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5245. } else if (e.data.tools && e.data.tools == "3E") {
  5246. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5247. } else if (e.data.tools && e.data.tools == "57y") {
  5248. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5249. } else if (e.data.tools && e.data.tools == "57u") {
  5250. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5251. } else if (e.data.tools && e.data.tools == "57teacher") {
  5252. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5253. } else if (e.data.tools && e.data.tools == "64") {
  5254. U.MD.D.I.openApplication("AIChat")
  5255. } else if (e.data.tools && e.data.tools == "66") {
  5256. U.MD.D.I.openApplication("formulaEdi")
  5257. } else if (e.data.tools && e.data.tools == "67") {
  5258. U.MD.D.I.openApplication("molStr")
  5259. } else if (e.data.tools && e.data.tools == "68") {
  5260. U.MD.D.I.openApplication("timeAxis")
  5261. } else if (e.data.tools && e.data.tools == "openCourse") {
  5262. let _data = {
  5263. typea: e.data.typea || '',
  5264. typeb: e.data.typeb || '',
  5265. typed: e.data.typed || '',
  5266. }
  5267. U.MD.D.I.openInApplication("index", _data)
  5268. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5269. let _data = {
  5270. classid: e.data.classid || '',
  5271. }
  5272. U.MD.D.I.openInApplication("dataClass", _data)
  5273. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5274. let _data = {
  5275. cid: e.data.cid || '',
  5276. gid: e.data.gid || '',
  5277. }
  5278. U.MD.D.I.openInApplication("opencCscl", _data)
  5279. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5280. U.MD.D.I.openApplication("dataBoardTest")
  5281. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5282. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5283. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5284. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5285. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5286. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5287. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5288. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5289. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5290. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5291. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5292. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5293. }else if (e.data.tools && e.data.tools == "loginSz") {
  5294. U.MD.D.I.openInApplication("loginSz")
  5295. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5296. if($('#classroom_observation_board')[0]){
  5297. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5298. }
  5299. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5300. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5301. if($('#classroom_observation_ob_comment')[0]){
  5302. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5303. }
  5304. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5305. }else if (e.data.tools && e.data.tools == "logout"){
  5306. U.MD.U.LO.logoutSystem()
  5307. }else if (e.data.tools && e.data.tools == "getLogin"){
  5308. let _iframe = $('#UI_Login')[0];
  5309. if (_iframe) {
  5310. var userInfo = US.userInfo;
  5311. var type = 2
  5312. if(userInfo && userInfo.userid){
  5313. type = 1
  5314. }
  5315. _contentWindow = _iframe.contentWindow;
  5316. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5317. }
  5318. }
  5319. });
  5320. U.MD.D.I.selectUser = function () {
  5321. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5322. if (res.value[0].length > 0) {
  5323. US.userInfo = res.value[0][0];
  5324. $(".userName")[0].innerHTML = US.userInfo.username;
  5325. }
  5326. }, [], { "type": "GET", "withCredentials": true });
  5327. }
  5328. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5329. var _userinfo = US.userInfo, //登录用户信息
  5330. _userid = US.userInfo.userid, //登录用户id
  5331. _oid = _userinfo.organizeid,
  5332. _type = US.userInfo.type,
  5333. _org = US.userInfo.org,
  5334. _role = US.userInfo.role,
  5335. _classId = US.userInfo.classid;
  5336. if (_type == 4) {
  5337. tType = 4
  5338. }
  5339. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5340. if(opArray.includes(str)){
  5341. let _str = str
  5342. if(str == 'appStore'){
  5343. _str = "cocoFlow"
  5344. }else if(str == "futureClass"){
  5345. _str = "cocoNote"
  5346. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5347. _str = "IntelligentForm"
  5348. }else if(str == "testStudent" || str == "testStudentSies"){
  5349. _str = "TeacherCenter"
  5350. }
  5351. try {
  5352. if (data) {
  5353. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5354. }else {
  5355. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5356. }
  5357. } catch (error) {
  5358. console.log(error);
  5359. }
  5360. }
  5361. switch (str) {
  5362. case "studyDetailNT": //无终端模式
  5363. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5364. setTimeout(() => {
  5365. U.MD.U.L.login();
  5366. }, 2000);
  5367. } else {
  5368. _formdiv = new U.UF.UI.form(
  5369. "课程详情",
  5370. $$("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 }), {
  5371. "id": "studyDetailNT",
  5372. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5373. "onresize": function () { }
  5374. }, {
  5375. closecallback: function () { }
  5376. }, { "style": { "height": "36px" } }).form; //创建窗体
  5377. _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); } }
  5378. break;
  5379. }
  5380. case "studyDetail":
  5381. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5382. setTimeout(() => {
  5383. U.MD.U.L.login();
  5384. }, 2000);
  5385. } else {
  5386. _formdiv = new U.UF.UI.form(
  5387. "课程详情",
  5388. $$("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 }), {
  5389. "id": "studyDetail",
  5390. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _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); } }
  5396. break;
  5397. }
  5398. case "studyDetailTrain":
  5399. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5400. setTimeout(() => {
  5401. U.MD.U.L.login();
  5402. }, 2000);
  5403. } else {
  5404. _formdiv = new U.UF.UI.form(
  5405. "培训详情",
  5406. $$("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 }), {
  5407. "id": "studyDetailTrain",
  5408. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5409. "onresize": function () { }
  5410. }, {
  5411. closecallback: function () { }
  5412. }, { "style": { "height": "36px" } }).form; //创建窗体
  5413. _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); } }
  5414. break;
  5415. }
  5416. case "studyDetailS":
  5417. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5418. setTimeout(() => {
  5419. U.MD.U.L.login();
  5420. }, 2000);
  5421. } else {
  5422. _formdiv = new U.UF.UI.form(
  5423. "项目详情",
  5424. $$("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 }), {
  5425. "id": "studyDetailS",
  5426. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5427. "onresize": function () { }
  5428. }, {
  5429. closecallback: function () { }
  5430. }, { "style": { "height": "36px" } }).form; //创建窗体
  5431. _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); } }
  5432. break;
  5433. }
  5434. case "studyDetailStudio":
  5435. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5436. setTimeout(() => {
  5437. U.MD.U.L.login();
  5438. }, 2000);
  5439. } else {
  5440. _formdiv = new U.UF.UI.form(
  5441. "工作详情",
  5442. $$("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 }), {
  5443. "id": "studyDetailStudio",
  5444. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. }
  5452. case "studyDetailS5":
  5453. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5454. setTimeout(() => {
  5455. U.MD.U.L.login();
  5456. }, 2000);
  5457. } else {
  5458. _formdiv = new U.UF.UI.form(
  5459. "项目详情",
  5460. $$("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 }), {
  5461. "id": "studyDetailS",
  5462. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5463. "onresize": function () { }
  5464. }, {
  5465. closecallback: function () { }
  5466. }, { "style": { "height": "36px" } }).form; //创建窗体
  5467. _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); } }
  5468. break;
  5469. }
  5470. case "studyDetailGM":
  5471. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5472. setTimeout(() => {
  5473. U.MD.U.L.login();
  5474. }, 2000);
  5475. } else {
  5476. _formdiv = new U.UF.UI.form(
  5477. "课程详情",
  5478. $$("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 }), {
  5479. "id": "studyDetail",
  5480. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5481. "onresize": function () { }
  5482. }, {
  5483. closecallback: function () { }
  5484. }, { "style": { "height": "36px" } }).form; //创建窗体
  5485. _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); } }
  5486. break;
  5487. }
  5488. case "hanUrl":
  5489. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5490. setTimeout(() => {
  5491. U.MD.U.L.login();
  5492. }, 2000);
  5493. } else {
  5494. _formdiv = new U.UF.UI.form(
  5495. "汉字宫",
  5496. $$("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" }), {
  5497. "id": "hanUrl",
  5498. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5499. "onresize": function () { }
  5500. }, {
  5501. closecallback: function () { }
  5502. }, { "style": { "height": "36px" } }).form; //创建窗体
  5503. _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); } }
  5504. break;
  5505. }
  5506. case "index":
  5507. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5508. setTimeout(() => {
  5509. U.MD.U.L.login();
  5510. }, 2000);
  5511. } else {
  5512. _formdiv = new U.UF.UI.form(
  5513. "课程中心",
  5514. $$("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 }), {
  5515. "id": "study",
  5516. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _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); } }
  5522. break;
  5523. }
  5524. case "dataClass":
  5525. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5526. setTimeout(() => {
  5527. U.MD.U.L.login();
  5528. }, 2000);
  5529. } else {
  5530. _formdiv = new U.UF.UI.form(
  5531. "数据报告",
  5532. $$("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 }), {
  5533. "id": "dataClass",
  5534. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5535. "onresize": function () { }
  5536. }, {
  5537. closecallback: function () { }
  5538. }, { "style": { "height": "36px" } }).form; //创建窗体
  5539. _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); } }
  5540. break;
  5541. }
  5542. case "opencCscl":
  5543. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5544. setTimeout(() => {
  5545. U.MD.U.L.login();
  5546. }, 2000);
  5547. } else {
  5548. _formdiv = new U.UF.UI.form(
  5549. "协同建构",
  5550. $$("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 }), {
  5551. "id": "futureClass",
  5552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5553. "onresize": function () { }
  5554. }, {
  5555. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5556. }, { "style": { "height": "36px" } }).form; //创建窗体
  5557. _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); } }
  5558. break;
  5559. }
  5560. case "openCourseUpdate":
  5561. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5562. setTimeout(() => {
  5563. U.MD.U.L.login();
  5564. }, 2000);
  5565. } else {
  5566. _formdiv = new U.UF.UI.form(
  5567. "课程管理",
  5568. $$("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 }), {
  5569. "id": "openCourseUpdate",
  5570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. break;
  5576. }
  5577. case "openNewCourseUpdate":
  5578. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5579. setTimeout(() => {
  5580. U.MD.U.L.login();
  5581. }, 2000);
  5582. } else {
  5583. _formdiv = new U.UF.UI.form(
  5584. "课程管理",
  5585. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5586. "id": "openCourseUpdate",
  5587. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5588. "onresize": function () { }
  5589. }, {
  5590. closecallback: function () { }
  5591. }, { "style": { "height": "36px" } }).form; //创建窗体
  5592. break;
  5593. }
  5594. case "openCourseEUpdate":
  5595. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5596. setTimeout(() => {
  5597. U.MD.U.L.login();
  5598. }, 2000);
  5599. } else {
  5600. _formdiv = new U.UF.UI.form(
  5601. "课程管理",
  5602. $$("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 }), {
  5603. "id": "openCourseUpdate",
  5604. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5605. "onresize": function () { }
  5606. }, {
  5607. closecallback: function () { }
  5608. }, { "style": { "height": "36px" } }).form; //创建窗体
  5609. break;
  5610. }
  5611. case "openCourseAiUpdate":
  5612. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5613. setTimeout(() => {
  5614. U.MD.U.L.login();
  5615. }, 2000);
  5616. } else {
  5617. _formdiv = new U.UF.UI.form(
  5618. "课程管理",
  5619. $$("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 }), {
  5620. "id": "openCourseUpdate",
  5621. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5622. "onresize": function () { }
  5623. }, {
  5624. closecallback: function () { }
  5625. }, { "style": { "height": "36px" } }).form; //创建窗体
  5626. break;
  5627. }
  5628. case "openCourseAiUpdate2":
  5629. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5630. setTimeout(() => {
  5631. U.MD.U.L.login();
  5632. }, 2000);
  5633. } else {
  5634. _formdiv = new U.UF.UI.form(
  5635. "课程管理",
  5636. $$("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 }), {
  5637. "id": "openCourseUpdate",
  5638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5639. "onresize": function () { }
  5640. }, {
  5641. closecallback: function () { }
  5642. }, { "style": { "height": "36px" } }).form; //创建窗体
  5643. break;
  5644. }
  5645. case "openCourseNewUpdate":
  5646. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5647. setTimeout(() => {
  5648. U.MD.U.L.login();
  5649. }, 2000);
  5650. } else {
  5651. _formdiv = new U.UF.UI.form(
  5652. "课程管理",
  5653. $$("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 }), {
  5654. "id": "openCourseUpdate",
  5655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. "onresize": function () { }
  5657. }, {
  5658. closecallback: function () { }
  5659. }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. break;
  5661. }
  5662. case "inviteLoginSz":
  5663. _formdiv = new U.UF.UI.form(
  5664. "随机码登录",
  5665. $$("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://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5666. "id": "loginSz",
  5667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. break;
  5673. case "loginSz":
  5674. _formdiv = new U.UF.UI.form(
  5675. "教师登录",
  5676. $$("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" }), {
  5677. "id": "loginSz",
  5678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5679. "onresize": function () { }
  5680. }, {
  5681. closecallback: function () { }
  5682. }, { "style": { "height": "36px" } }).form; //创建窗体
  5683. break;
  5684. case "teacher":
  5685. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5686. setTimeout(() => {
  5687. U.MD.U.L.login();
  5688. }, 2000);
  5689. } else {
  5690. _formdiv = new U.UF.UI.form(
  5691. "教师管理",
  5692. $$("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 }), {
  5693. "id": "teacher",
  5694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. break;
  5700. }
  5701. case "dataBoardSZArea":
  5702. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5703. setTimeout(() => {
  5704. U.MD.U.L.login();
  5705. }, 2000);
  5706. } else {
  5707. _formdiv = new U.UF.UI.form(
  5708. "综合数据看板",
  5709. $$("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 }), {
  5710. "id": "dataBoardSZArea",
  5711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. break;
  5717. }
  5718. case "dataBoardSZCity":
  5719. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5720. setTimeout(() => {
  5721. U.MD.U.L.login();
  5722. }, 2000);
  5723. } else {
  5724. _formdiv = new U.UF.UI.form(
  5725. "综合数据看板",
  5726. $$("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 }), {
  5727. "id": "dataBoardSZCity",
  5728. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5729. "onresize": function () { }
  5730. }, {
  5731. closecallback: function () { }
  5732. }, { "style": { "height": "36px" } }).form; //创建窗体
  5733. break;
  5734. }
  5735. case "classroom_observation_board":
  5736. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5737. setTimeout(() => {
  5738. U.MD.U.L.login();
  5739. }, 2000);
  5740. } else {
  5741. _formdiv = new U.UF.UI.form(
  5742. "课堂观察",
  5743. $$("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 }), {
  5744. "id": "classroom_observation_board",
  5745. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5746. "onresize": function () { }
  5747. }, {
  5748. closecallback: function () { }
  5749. }, { "style": { "height": "36px" } }).form; //创建窗体
  5750. break;
  5751. }
  5752. case "classroom_observation_ob_comment":
  5753. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5754. setTimeout(() => {
  5755. U.MD.U.L.login();
  5756. }, 2000);
  5757. } else {
  5758. _formdiv = new U.UF.UI.form(
  5759. "课堂审核",
  5760. $$("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 }), {
  5761. "id": "classroom_observation_ob_comment",
  5762. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5763. "onresize": function () { }
  5764. }, {
  5765. closecallback: function () { }
  5766. }, { "style": { "height": "36px" } }).form; //创建窗体
  5767. break;
  5768. }
  5769. case "gptConfig":
  5770. _formdiv = new U.UF.UI.form(
  5771. data.name ? data.name : "应用中心",
  5772. $$("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": data.url }), {
  5773. "id": "gptConfig" + data.id,
  5774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5775. "onresize": function () { }
  5776. }, {
  5777. closecallback: function () { }
  5778. }, { "style": { "height": "36px" } }).form; //创建窗体
  5779. break;
  5780. }
  5781. }
  5782. U.MD.D.I.openApplication = function (str, obj, info) {
  5783. obj = obj || {};
  5784. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5785. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5786. _userinfo = US.userInfo, //登录用户信息
  5787. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5788. _oid = obj.organizeid || _userinfo.organizeid,
  5789. _type = US.userInfo.type,
  5790. _org = obj.org || US.userInfo.org,
  5791. _role = US.userInfo.role,
  5792. _classId = US.userInfo.classid,
  5793. _TscreenType = 1
  5794. _screenType = 2,
  5795. _SscreenType = 3;
  5796. let iframeBool = true
  5797. if(U.UF.UI.form.allForm[str]){
  5798. iframeBool = false
  5799. }
  5800. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5801. return;
  5802. }
  5803. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5804. if(opArray.includes(str)){
  5805. let _str = str
  5806. if(str == 'appStore'){
  5807. _str = "cocoFlow"
  5808. }else if(str == "futureClass"){
  5809. _str = "cocoNote"
  5810. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5811. _str = "IntelligentForm"
  5812. }else if(str == "testStudent" || str == "testStudentSies"){
  5813. _str = "TeacherCenter"
  5814. }
  5815. try {
  5816. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5817. } catch (error) {
  5818. console.log(error);
  5819. }
  5820. }
  5821. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5822. switch (str) {
  5823. case "studnetProject": //好友打开
  5824. _formdiv = new U.UF.UI.form(
  5825. "我的项目",
  5826. $$("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 }), {
  5827. "id": "studnetProject",
  5828. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5829. "onresize": function () { }
  5830. }, {
  5831. closecallback: function () { }
  5832. }, { "style": { "height": "36px" } }).form; //创建窗体
  5833. _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); } }
  5834. break;
  5835. case "studentEvaluate": //好友打开
  5836. _formdiv = new U.UF.UI.form(
  5837. "我的评价",
  5838. $$("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 }), {
  5839. "id": "studentEvaluate",
  5840. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5841. "onresize": function () { }
  5842. }, {
  5843. closecallback: function () { }
  5844. }, { "style": { "height": "36px" } }).form; //创建窗体
  5845. _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); } }
  5846. break;
  5847. case "my":
  5848. _formdiv = new U.UF.UI.form(
  5849. "我的资料",
  5850. $$("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 }), {
  5851. "id": "my",
  5852. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. _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); } }
  5858. break;
  5859. case "program":
  5860. _formdiv = new U.UF.UI.form(
  5861. "编程平台",
  5862. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5863. "id": "program",
  5864. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5865. "onresize": function () { }
  5866. }, {
  5867. closecallback: function () { }
  5868. }, { "style": { "height": "36px" } }).form; //创建窗体
  5869. _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); } }
  5870. break;
  5871. case "library":
  5872. _formdiv = new U.UF.UI.form(
  5873. "素材库",
  5874. $$("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 }), {
  5875. "id": "library",
  5876. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5877. "onresize": function () { }
  5878. }, {
  5879. closecallback: function () { }
  5880. }, { "style": { "height": "36px" } }).form; //创建窗体
  5881. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5882. break;
  5883. case "whiteboard":
  5884. _formdiv = new U.UF.UI.form(
  5885. "电子白板",
  5886. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5887. "id": "whiteboard",
  5888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5889. "onresize": function () { }
  5890. }, {
  5891. closecallback: function () { }
  5892. }, { "style": { "height": "36px" } }).form; //创建窗体
  5893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5894. break;
  5895. case "investigation":
  5896. _formdiv = new U.UF.UI.form(
  5897. "问卷调查",
  5898. $$("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 }), {
  5899. "id": "investigation",
  5900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5901. "onresize": function () { }
  5902. }, {
  5903. closecallback: function () { }
  5904. }, { "style": { "height": "36px" } }).form; //创建窗体
  5905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5906. break;
  5907. case "note":
  5908. _formdiv = new U.UF.UI.form(
  5909. "便签分类",
  5910. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5911. "id": "note",
  5912. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5913. "onresize": function () { }
  5914. }, {
  5915. closecallback: function () { }
  5916. }, { "style": { "height": "36px" } }).form; //创建窗体
  5917. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5918. break;
  5919. // case "score":
  5920. // _formdiv = new U.UF.UI.form(
  5921. // "量规评分",
  5922. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5923. // "id": "score",
  5924. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5925. // "onresize": function() {}
  5926. // }, {
  5927. // closecallback: function() {}
  5928. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5930. // break;
  5931. case "mind":
  5932. _formdiv = new U.UF.UI.form(
  5933. "思维导图",
  5934. $$("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"
  5935. "id": "mind",
  5936. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5937. "onresize": function () { }
  5938. }, {
  5939. closecallback: function () { }
  5940. }, { "style": { "height": "36px" } }).form; //创建窗体
  5941. _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); } }
  5942. break;
  5943. case "doc":
  5944. // U.MD.D.I.isRoom();
  5945. _formdiv = new U.UF.UI.form(
  5946. "协同文档",
  5947. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5948. "id": "doc",
  5949. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5950. "onresize": function () { }
  5951. }, {
  5952. closecallback: function () { }
  5953. }, { "style": { "height": "36px" } }).form; //创建窗体
  5954. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5955. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5956. // })
  5957. _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); } }
  5958. break;
  5959. case "studentStudy":
  5960. _formdiv = new U.UF.UI.form(
  5961. "课程中心",
  5962. $$("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
  5963. "id": "studentStudy",
  5964. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5965. "onresize": function () { }
  5966. }, {
  5967. closecallback: function () { }
  5968. }, { "style": { "height": "36px" } }).form; //创建窗体
  5969. _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); } }
  5970. break;
  5971. case "train": //好友打开
  5972. _formdiv = new U.UF.UI.form(
  5973. "训练平台",
  5974. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5975. "id": "train",
  5976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5977. "onresize": function () { }
  5978. }, {
  5979. closecallback: function () { }
  5980. }, { "style": { "height": "36px" } }).form; //创建窗体
  5981. _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); } }
  5982. break;
  5983. case "mindNetwork": //好友打开
  5984. _formdiv = new U.UF.UI.form(
  5985. "思维网格",
  5986. $$("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 }), {
  5987. "id": "mindNetwork",
  5988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5989. "onresize": function () { }
  5990. }, {
  5991. closecallback: function () { }
  5992. }, { "style": { "height": "36px" } }).form; //创建窗体
  5993. _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); } }
  5994. break;
  5995. case "studentClassRoom": //好友打开
  5996. _formdiv = new U.UF.UI.form(
  5997. "实时课堂",
  5998. $$("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 }), {
  5999. "id": "studentClassRoom",
  6000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6001. "onresize": function () { }
  6002. }, {
  6003. closecallback: function () { }
  6004. }, { "style": { "height": "36px" } }).form; //创建窗体
  6005. _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); } }
  6006. setTimeout(() => {
  6007. U.UF.F.windowZooming(_formdiv)
  6008. }, 0);
  6009. break;
  6010. }
  6011. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6012. switch (str) {
  6013. case "studnetProject": //好友打开
  6014. _formdiv = new U.UF.UI.form(
  6015. "我的项目",
  6016. $$("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 }), {
  6017. "id": "studnetProject",
  6018. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _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); } }
  6024. break;
  6025. case "studentEvaluate": //好友打开
  6026. _formdiv = new U.UF.UI.form(
  6027. "我的评价",
  6028. $$("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 }), {
  6029. "id": "studentEvaluate",
  6030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _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); } }
  6036. break;
  6037. case "my":
  6038. _formdiv = new U.UF.UI.form(
  6039. "我的资料",
  6040. $$("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 }), {
  6041. "id": "my",
  6042. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _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); } }
  6048. break;
  6049. case "program":
  6050. _formdiv = new U.UF.UI.form(
  6051. "编程平台",
  6052. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6053. "id": "program",
  6054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //创建窗体
  6059. _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); } }
  6060. break;
  6061. case "library":
  6062. _formdiv = new U.UF.UI.form(
  6063. "素材库",
  6064. $$("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 }), {
  6065. "id": "library",
  6066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. _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); } }
  6072. break;
  6073. case "whiteboard":
  6074. _formdiv = new U.UF.UI.form(
  6075. "电子白板",
  6076. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6077. "id": "whiteboard",
  6078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _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); } }
  6084. break;
  6085. case "investigation":
  6086. _formdiv = new U.UF.UI.form(
  6087. "问卷调查",
  6088. $$("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 }), {
  6089. "id": "investigation",
  6090. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _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); } }
  6096. break;
  6097. case "note":
  6098. _formdiv = new U.UF.UI.form(
  6099. "便签分类",
  6100. $$("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 }), {
  6101. "id": "note",
  6102. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6103. "onresize": function () { }
  6104. }, {
  6105. closecallback: function () { }
  6106. }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. _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); } }
  6108. break;
  6109. // case "score":
  6110. // _formdiv = new U.UF.UI.form(
  6111. // "量规评分",
  6112. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6113. // "id": "score",
  6114. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6115. // "onresize": function() {}
  6116. // }, {
  6117. // closecallback: function() {}
  6118. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. // _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); } }
  6120. // break;
  6121. case "mind":
  6122. _formdiv = new U.UF.UI.form(
  6123. "思维导图",
  6124. $$("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"
  6125. "id": "mind",
  6126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6127. "onresize": function () { }
  6128. }, {
  6129. closecallback: function () { }
  6130. }, { "style": { "height": "36px" } }).form; //创建窗体
  6131. _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); } }
  6132. break;
  6133. case "doc":
  6134. // U.MD.D.I.isRoom();
  6135. _formdiv = new U.UF.UI.form(
  6136. "协同文档",
  6137. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6138. "id": "doc",
  6139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6140. "onresize": function () { }
  6141. }, {
  6142. closecallback: function () { }
  6143. }, { "style": { "height": "36px" } }).form; //创建窗体
  6144. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6145. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6146. })
  6147. _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); } }
  6148. break;
  6149. case "train": //好友打开
  6150. _formdiv = new U.UF.UI.form(
  6151. "训练平台",
  6152. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6153. "id": "train",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _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); } }
  6160. break;
  6161. case "studentStudy":
  6162. _formdiv = new U.UF.UI.form(
  6163. "课程中心",
  6164. $$("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
  6165. "id": "studentStudy",
  6166. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _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); } }
  6172. break;
  6173. case "mindNetwork": //好友打开
  6174. _formdiv = new U.UF.UI.form(
  6175. "思维网格",
  6176. $$("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 }), {
  6177. "id": "mindNetwork",
  6178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _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); } }
  6184. break;
  6185. case "studentClassRoom": //好友打开
  6186. _formdiv = new U.UF.UI.form(
  6187. "实时课堂",
  6188. $$("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 }), {
  6189. "id": "studentClassRoom",
  6190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6191. "onresize": function () { }
  6192. }, {
  6193. closecallback: function () { }
  6194. }, { "style": { "height": "36px" } }).form; //创建窗体
  6195. _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); } }
  6196. setTimeout(() => {
  6197. U.UF.F.windowZooming(_formdiv)
  6198. }, 0);
  6199. break;
  6200. }
  6201. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6202. //选择应用处理
  6203. switch (str) {
  6204. case "project": //好友打开
  6205. _formdiv = new U.UF.UI.form(
  6206. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6207. $$("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 }), {
  6208. "id": "project",
  6209. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6210. "onresize": function () { }
  6211. }, {
  6212. closecallback: function () { }
  6213. }, { "style": { "height": "36px" } }).form; //创建窗体
  6214. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6215. break;
  6216. case "student":
  6217. _formdiv = new U.UF.UI.form(
  6218. "学生管理",
  6219. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6220. "id": "student",
  6221. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6222. "onresize": function () { }
  6223. }, {
  6224. closecallback: function () { }
  6225. }, { "style": { "height": "36px" } }).form; //创建窗体
  6226. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6227. break;
  6228. case "evaluate":
  6229. _formdiv = new U.UF.UI.form(
  6230. "学生评价",
  6231. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6232. "id": "evaluate",
  6233. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6234. "onresize": function () { }
  6235. }, {
  6236. closecallback: function () { }
  6237. }, { "style": { "height": "36px" } }).form; //创建窗体
  6238. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "sys":
  6241. _formdiv = new U.UF.UI.form(
  6242. "目标管理",
  6243. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6244. "id": "sys",
  6245. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "courseDesign":
  6253. _formdiv = new U.UF.UI.form(
  6254. "项目设计",
  6255. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6256. "id": "courseDesign",
  6257. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6258. "onresize": function () { }
  6259. }, {
  6260. closecallback: function () { }
  6261. }, { "style": { "height": "36px" } }).form; //创建窗体
  6262. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "program":
  6265. _formdiv = new U.UF.UI.form(
  6266. "编程平台",
  6267. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6268. "id": "program",
  6269. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "class":
  6277. _formdiv = new U.UF.UI.form(
  6278. "班级管理",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6280. "id": "class",
  6281. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6282. "onresize": function () { }
  6283. }, {
  6284. closecallback: function () { }
  6285. }, { "style": { "height": "36px" } }).form; //创建窗体
  6286. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. case "Grade":
  6289. _formdiv = new U.UF.UI.form(
  6290. "年级管理",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6292. "id": "Grade",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6299. break;
  6300. case "teacherOffice":
  6301. _formdiv = new U.UF.UI.form(
  6302. "教研室",
  6303. $$("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 }), {
  6304. "id": "teacherOffice",
  6305. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6306. "onresize": function () { }
  6307. }, {
  6308. closecallback: function () { }
  6309. }, { "style": { "height": "36px" } }).form; //创建窗体
  6310. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6311. break;
  6312. case "my":
  6313. _formdiv = new U.UF.UI.form(
  6314. "我的资料",
  6315. $$("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 }), {
  6316. "id": "my",
  6317. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6318. "onresize": function () { }
  6319. }, {
  6320. closecallback: function () { }
  6321. }, { "style": { "height": "36px" } }).form; //创建窗体
  6322. _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); } }
  6323. break;
  6324. case "notice":
  6325. _formdiv = new U.UF.UI.form(
  6326. "通知公告",
  6327. $$("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 }), {
  6328. "id": "notice",
  6329. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6330. "onresize": function () { }
  6331. }, {
  6332. closecallback: function () { }
  6333. }, { "style": { "height": "36px" } }).form; //创建窗体
  6334. _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); } }
  6335. break;
  6336. case "library":
  6337. _formdiv = new U.UF.UI.form(
  6338. "素材库",
  6339. $$("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 }), {
  6340. "id": "library",
  6341. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _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); } }
  6347. break;
  6348. case "whiteboard":
  6349. _formdiv = new U.UF.UI.form(
  6350. "电子白板",
  6351. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6352. "id": "whiteboard",
  6353. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6354. "onresize": function () { }
  6355. }, {
  6356. closecallback: function () { }
  6357. }, { "style": { "height": "36px" } }).form; //创建窗体
  6358. _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); } }
  6359. break;
  6360. case "investigation":
  6361. _formdiv = new U.UF.UI.form(
  6362. "问卷调查",
  6363. $$("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 }), {
  6364. "id": "investigation",
  6365. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6366. "onresize": function () { }
  6367. }, {
  6368. closecallback: function () { }
  6369. }, { "style": { "height": "36px" } }).form; //创建窗体
  6370. _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); } }
  6371. break;
  6372. case "note":
  6373. _formdiv = new U.UF.UI.form(
  6374. "便签分类",
  6375. $$("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 }), {
  6376. "id": "note",
  6377. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6378. "onresize": function () { }
  6379. }, {
  6380. closecallback: function () { }
  6381. }, { "style": { "height": "36px" } }).form; //创建窗体
  6382. _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); } }
  6383. break;
  6384. // case "score":
  6385. // _formdiv = new U.UF.UI.form(
  6386. // "量规评分",
  6387. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6388. // "id": "score",
  6389. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6390. // "onresize": function() {}
  6391. // }, {
  6392. // closecallback: function() {}
  6393. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. // _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); } }
  6395. // break;
  6396. case "mind":
  6397. _formdiv = new U.UF.UI.form(
  6398. "思维导图",
  6399. $$("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"
  6400. "id": "mind",
  6401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _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); } }
  6407. break;
  6408. case "doc":
  6409. // U.MD.D.I.isRoom();
  6410. _formdiv = new U.UF.UI.form(
  6411. "协同文档",
  6412. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6413. "id": "doc",
  6414. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6415. "onresize": function () { }
  6416. }, {
  6417. closecallback: function () { }
  6418. }, { "style": { "height": "36px" } }).form; //创建窗体
  6419. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6420. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6421. })
  6422. _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); } }
  6423. break;
  6424. case "study":
  6425. _formdiv = new U.UF.UI.form(
  6426. "课程中心",
  6427. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": 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
  6428. "id": "study",
  6429. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6430. "onresize": function () { }
  6431. }, {
  6432. closecallback: function () { }
  6433. }, { "style": { "height": "36px" } }).form; //创建窗体
  6434. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6435. break;
  6436. case "mindNetwork": //好友打开
  6437. _formdiv = new U.UF.UI.form(
  6438. "思维网格",
  6439. $$("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 }), {
  6440. "id": "mindNetwork",
  6441. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6442. "onresize": function () { }
  6443. }, {
  6444. closecallback: function () { }
  6445. }, { "style": { "height": "36px" } }).form; //创建窗体
  6446. _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); } }
  6447. break;
  6448. case "train": //好友打开
  6449. _formdiv = new U.UF.UI.form(
  6450. "训练平台",
  6451. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6452. "id": "mindNetwork",
  6453. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6454. "onresize": function () { }
  6455. }, {
  6456. closecallback: function () { }
  6457. }, { "style": { "height": "36px" } }).form; //创建窗体
  6458. _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); } }
  6459. break;
  6460. case "teacherClassRoom": //好友打开
  6461. _formdiv = new U.UF.UI.form(
  6462. "实时课堂",
  6463. $$("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 }), {
  6464. "id": "teacherClassRoom",
  6465. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6466. "onresize": function () { }
  6467. }, {
  6468. closecallback: function () { }
  6469. }, { "style": { "height": "36px" } }).form; //创建窗体
  6470. _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); } }
  6471. setTimeout(() => {
  6472. U.UF.F.windowZooming(_formdiv)
  6473. }, 0);
  6474. break;
  6475. }
  6476. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6477. switch (str) {
  6478. case "project": //好友打开
  6479. _formdiv = new U.UF.UI.form(
  6480. "课程管理",
  6481. $$("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 }), {
  6482. "id": "project",
  6483. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6484. "onresize": function () { }
  6485. }, {
  6486. closecallback: function () { }
  6487. }, { "style": { "height": "36px" } }).form; //创建窗体
  6488. _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); } }
  6489. break;
  6490. case "evaluate":
  6491. _formdiv = new U.UF.UI.form(
  6492. "学生评价",
  6493. $$("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 }), {
  6494. "id": "evaluate",
  6495. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6496. "onresize": function () { }
  6497. }, {
  6498. closecallback: function () { }
  6499. }, { "style": { "height": "36px" } }).form; //创建窗体
  6500. _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); } }
  6501. break;
  6502. case "notice":
  6503. _formdiv = new U.UF.UI.form(
  6504. "通知公告",
  6505. $$("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 }), {
  6506. "id": "notice",
  6507. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6508. "onresize": function () { }
  6509. }, {
  6510. closecallback: function () { }
  6511. }, { "style": { "height": "36px" } }).form; //创建窗体
  6512. _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); } }
  6513. break;
  6514. case "stuLibrary":
  6515. _formdiv = new U.UF.UI.form(
  6516. "学习资料",
  6517. $$("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 }), {
  6518. "id": "stuLibrary",
  6519. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6520. "onresize": function () { }
  6521. }, {
  6522. closecallback: function () { }
  6523. }, { "style": { "height": "36px" } }).form; //创建窗体
  6524. _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); } }
  6525. break;
  6526. case "program":
  6527. _formdiv = new U.UF.UI.form(
  6528. "编程平台",
  6529. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6530. "id": "program",
  6531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6532. "onresize": function () { }
  6533. }, {
  6534. closecallback: function () { }
  6535. }, { "style": { "height": "36px" } }).form; //创建窗体
  6536. _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); } }
  6537. break;
  6538. case "whiteboard":
  6539. _formdiv = new U.UF.UI.form(
  6540. "电子白板",
  6541. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6542. "id": "whiteboard",
  6543. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6544. "onresize": function () { }
  6545. }, {
  6546. closecallback: function () { }
  6547. }, { "style": { "height": "36px" } }).form; //创建窗体
  6548. _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); } }
  6549. break;
  6550. case "investigation":
  6551. _formdiv = new U.UF.UI.form(
  6552. "问卷调查",
  6553. $$("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 }), {
  6554. "id": "investigation",
  6555. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6556. "onresize": function () { }
  6557. }, {
  6558. closecallback: function () { }
  6559. }, { "style": { "height": "36px" } }).form; //创建窗体
  6560. _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); } }
  6561. break;
  6562. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6566. "id": "mind",
  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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6573. break;
  6574. case "doc":
  6575. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  6579. "id": "doc",
  6580. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6581. "onresize": function () { }
  6582. }, {
  6583. closecallback: function () { }
  6584. }, { "style": { "height": "36px" } }).form; //创建窗体
  6585. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6586. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6587. })
  6588. _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); } }
  6589. break;
  6590. case "study":
  6591. _formdiv = new U.UF.UI.form(
  6592. "课程中心",
  6593. $$("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
  6594. "id": "study",
  6595. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6596. "onresize": function () { }
  6597. }, {
  6598. closecallback: function () { }
  6599. }, { "style": { "height": "36px" } }).form; //创建窗体
  6600. _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); } }
  6601. break;
  6602. case "mindNetwork": //好友打开
  6603. _formdiv = new U.UF.UI.form(
  6604. "思维网格",
  6605. $$("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 }), {
  6606. "id": "mindNetwork",
  6607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6608. "onresize": function () { }
  6609. }, {
  6610. closecallback: function () { }
  6611. }, { "style": { "height": "36px" } }).form; //创建窗体
  6612. _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); } }
  6613. break;
  6614. case "train": //好友打开
  6615. _formdiv = new U.UF.UI.form(
  6616. "训练平台",
  6617. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6618. "id": "train",
  6619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "sys":
  6627. _formdiv = new U.UF.UI.form(
  6628. "目标管理",
  6629. $$("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 }), {
  6630. "id": "sys",
  6631. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () { }
  6635. }, { "style": { "height": "36px" } }).form; //创建窗体
  6636. _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); } }
  6637. break;
  6638. case "courseDesign":
  6639. _formdiv = new U.UF.UI.form(
  6640. "项目设计",
  6641. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6642. "id": "courseDesign",
  6643. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6644. "onresize": function () { }
  6645. }, {
  6646. closecallback: function () { }
  6647. }, { "style": { "height": "36px" } }).form; //创建窗体
  6648. _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); } }
  6649. break;
  6650. }
  6651. } else if (!_type) {
  6652. switch (str) {
  6653. case "my":
  6654. _formdiv = new U.UF.UI.form(
  6655. "我的资料",
  6656. $$("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 }), {
  6657. "id": "my",
  6658. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6659. "onresize": function () { }
  6660. }, {
  6661. closecallback: function () { }
  6662. }, { "style": { "height": "36px" } }).form; //创建窗体
  6663. _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); } }
  6664. break;
  6665. }
  6666. }
  6667. switch (str) {
  6668. // AIprogram2 AI体验 aihub.cocorobo.cn
  6669. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6670. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6671. case "formulaEdi": //公式编辑
  6672. _formdiv = new U.UF.UI.form(
  6673. "公式编辑",
  6674. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6675. "id": "formulaEdi",
  6676. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6677. "onresize": function () { }
  6678. }, {
  6679. closecallback: function () { }
  6680. }, { "style": { "height": "36px" } }).form; //创建窗体
  6681. _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); } }
  6682. break;
  6683. case "molStr": //分子结构
  6684. _formdiv = new U.UF.UI.form(
  6685. "分子结构",
  6686. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6687. "id": "molStr",
  6688. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6689. "onresize": function () { }
  6690. }, {
  6691. closecallback: function () { }
  6692. }, { "style": { "height": "36px" } }).form; //创建窗体
  6693. _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); } }
  6694. break;
  6695. case "timeAxis": //时间轴
  6696. _formdiv = new U.UF.UI.form(
  6697. "时间轴",
  6698. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6699. "id": "timeAxis",
  6700. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6701. "onresize": function () { }
  6702. }, {
  6703. closecallback: function () { }
  6704. }, { "style": { "height": "36px" } }).form; //创建窗体
  6705. _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); } }
  6706. break;
  6707. case "AIprogram2": //AI体验
  6708. _formdiv = new U.UF.UI.form(
  6709. "AI体验",
  6710. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6711. "id": "AIprogram2",
  6712. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6713. "onresize": function () { }
  6714. }, {
  6715. closecallback: function () { }
  6716. }, { "style": { "height": "36px" } }).form; //创建窗体
  6717. _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); } }
  6718. break;
  6719. case "Pythonprogram": //python编程
  6720. _formdiv = new U.UF.UI.form(
  6721. "Python编程",
  6722. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6723. "id": "Pythonprogram",
  6724. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6725. "onresize": function () { }
  6726. }, {
  6727. closecallback: function () { }
  6728. }, { "style": { "height": "36px" } }).form; //创建窗体
  6729. _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); } }
  6730. break;
  6731. case "AIprogram": //ai编程
  6732. _formdiv = new U.UF.UI.form(
  6733. "AI编程平台",
  6734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6735. "id": "AIprogram",
  6736. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6737. "onresize": function () { }
  6738. }, {
  6739. closecallback: function () { }
  6740. }, { "style": { "height": "36px" } }).form; //创建窗体
  6741. _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); } }
  6742. break;
  6743. case "CocoPi": //CocoPi
  6744. _formdiv = new U.UF.UI.form(
  6745. "CocoPi",
  6746. $$("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" }), {
  6747. "id": "CocoPi",
  6748. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6749. "onresize": function () { }
  6750. }, {
  6751. closecallback: function () { }
  6752. }, { "style": { "height": "36px" } }).form; //创建窗体
  6753. _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); } }
  6754. break;
  6755. case "Wood": //Wood
  6756. _formdiv = new U.UF.UI.form(
  6757. "海龟编程",
  6758. $$("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/" }), {
  6759. "id": "Wood",
  6760. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6761. "onresize": function () { }
  6762. }, {
  6763. closecallback: function () { }
  6764. }, { "style": { "height": "36px" } }).form; //创建窗体
  6765. _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); } }
  6766. break;
  6767. case "car": //模拟驾驶
  6768. _formdiv = new U.UF.UI.form(
  6769. "模拟驾驶",
  6770. $$("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/" }), {
  6771. "id": "car",
  6772. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6773. "onresize": function () { }
  6774. }, {
  6775. closecallback: function () { }
  6776. }, { "style": { "height": "36px" } }).form; //创建窗体
  6777. _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); } }
  6778. break;
  6779. case "lineSearch": //路径搜索
  6780. _formdiv = new U.UF.UI.form(
  6781. "路径搜索",
  6782. $$("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/" }), {
  6783. "id": "lineSearch",
  6784. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, { "style": { "height": "36px" } }).form; //创建窗体
  6789. _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); } }
  6790. break;
  6791. case "deepLearning": //深度学习
  6792. _formdiv = new U.UF.UI.form(
  6793. "深度学习",
  6794. $$("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/#" }), {
  6795. "id": "deepLearning",
  6796. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6797. "onresize": function () { }
  6798. }, {
  6799. closecallback: function () { }
  6800. }, { "style": { "height": "36px" } }).form; //创建窗体
  6801. _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); } }
  6802. break;
  6803. case "allHistory": //深度学习
  6804. _formdiv = new U.UF.UI.form(
  6805. "全历史",
  6806. $$("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/" }), {
  6807. "id": "allHistory",
  6808. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6809. "onresize": function () { }
  6810. }, {
  6811. closecallback: function () { }
  6812. }, { "style": { "height": "36px" } }).form; //创建窗体
  6813. _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); } }
  6814. break;
  6815. case "chatPDF": //ai编程
  6816. _formdiv = new U.UF.UI.form(
  6817. "chatPDF",
  6818. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6819. "id": "chatPDF",
  6820. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6821. "onresize": function () { }
  6822. }, {
  6823. closecallback: function () { }
  6824. }, { "style": { "height": "36px" } }).form; //创建窗体
  6825. _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); } }
  6826. break;
  6827. case "resources": //国家教育
  6828. _formdiv = new U.UF.UI.form(
  6829. "国家教育",
  6830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6831. "id": "resources",
  6832. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6833. "onresize": function () { }
  6834. }, {
  6835. closecallback: function () { }
  6836. }, { "style": { "height": "36px" } }).form; //创建窗体
  6837. _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); } }
  6838. break;
  6839. case "codeEdit": //源码编辑
  6840. _formdiv = new U.UF.UI.form(
  6841. "源码编辑",
  6842. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6843. "id": "codeEdit",
  6844. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6845. "onresize": function () { }
  6846. }, {
  6847. closecallback: function () { }
  6848. }, { "style": { "height": "36px" } }).form; //创建窗体
  6849. _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); } }
  6850. break; //
  6851. case "MindMap": //MindMap
  6852. _formdiv = new U.UF.UI.form(
  6853. "MindMap",
  6854. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6855. "id": "MindMap",
  6856. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6857. "onresize": function () { }
  6858. }, {
  6859. closecallback: function () { }
  6860. }, { "style": { "height": "36px" } }).form; //创建窗体
  6861. _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); } }
  6862. break;
  6863. case "netWorkPanel": //netWorkPanel
  6864. _formdiv = new U.UF.UI.form(
  6865. "netWorkPanel",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6867. "id": "netWorkPanel",
  6868. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6869. "onresize": function () { }
  6870. }, {
  6871. closecallback: function () { }
  6872. }, { "style": { "height": "36px" } }).form; //创建窗体
  6873. _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); } }
  6874. break;
  6875. case "GeoGebra": //GeoGebra
  6876. _formdiv = new U.UF.UI.form(
  6877. "GeoGebra",
  6878. $$("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" }), {
  6879. "id": "GeoGebra",
  6880. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6881. "onresize": function () { }
  6882. }, {
  6883. closecallback: function () { }
  6884. }, { "style": { "height": "36px" } }).form; //创建窗体
  6885. _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); } }
  6886. break;
  6887. case "translation": //翻译
  6888. _formdiv = new U.UF.UI.form(
  6889. "翻译",
  6890. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6891. "id": "translation",
  6892. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6893. "onresize": function () { }
  6894. }, {
  6895. closecallback: function () { }
  6896. }, { "style": { "height": "36px" } }).form; //创建窗体
  6897. _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); } }
  6898. break;
  6899. case "mohe": //魔盒
  6900. _formdiv = new U.UF.UI.form(
  6901. "魔盒识字",
  6902. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6903. "id": "mohe",
  6904. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6905. "onresize": function () { }
  6906. }, {
  6907. closecallback: function () { }
  6908. }, { "style": { "height": "36px" } }).form; //创建窗体
  6909. _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); } }
  6910. break;
  6911. case "24game": //24点
  6912. _formdiv = new U.UF.UI.form(
  6913. "24点",
  6914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6915. "id": "24game",
  6916. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6917. "onresize": function () { }
  6918. }, {
  6919. closecallback: function () { }
  6920. }, { "style": { "height": "36px" } }).form; //创建窗体
  6921. _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); } }
  6922. break;
  6923. case "case":
  6924. _formdiv = new U.UF.UI.form(
  6925. "课程进展",
  6926. $$("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 }), {
  6927. "id": "case",
  6928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6929. "onresize": function () { }
  6930. }, {
  6931. closecallback: function () { }
  6932. }, { "style": { "height": "36px" } }).form; //创建窗体
  6933. _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); } }
  6934. break;
  6935. case "snf":
  6936. _formdiv = new U.UF.UI.form(
  6937. "赛诺梵",
  6938. $$("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" }), {
  6939. "id": "snf",
  6940. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6941. "onresize": function () { }
  6942. }, {
  6943. closecallback: function () { }
  6944. }, { "style": { "height": "36px" } }).form; //创建窗体
  6945. _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); } }
  6946. break;
  6947. case "hanFamily":
  6948. _formdiv = new U.UF.UI.form(
  6949. "汉字家族",
  6950. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6951. "id": "hanFamily",
  6952. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6953. "onresize": function () { }
  6954. }, {
  6955. closecallback: function () { }
  6956. }, { "style": { "height": "36px" } }).form; //创建窗体
  6957. _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); } }
  6958. break;
  6959. case "hanClassics":
  6960. _formdiv = new U.UF.UI.form(
  6961. "国学经典",
  6962. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6963. "id": "hanClassics",
  6964. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6965. "onresize": function () { }
  6966. }, {
  6967. closecallback: function () { }
  6968. }, { "style": { "height": "36px" } }).form; //创建窗体
  6969. _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); } }
  6970. break;
  6971. case "hanTraining":
  6972. _formdiv = new U.UF.UI.form(
  6973. "笔画训练",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6975. "id": "hanTraining",
  6976. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _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); } }
  6982. break;
  6983. case "hanClass":
  6984. _formdiv = new U.UF.UI.form(
  6985. "书法课堂",
  6986. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6987. "id": "hanClass",
  6988. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6989. "onresize": function () { }
  6990. }, {
  6991. closecallback: function () { }
  6992. }, { "style": { "height": "36px" } }).form; //创建窗体
  6993. _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); } }
  6994. break;
  6995. case "han":
  6996. _formdiv = new U.UF.UI.form(
  6997. "汉字宫",
  6998. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6999. "id": "han",
  7000. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7001. "onresize": function () { }
  7002. }, {
  7003. closecallback: function () { }
  7004. }, { "style": { "height": "36px" } }).form; //创建窗体
  7005. _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); } }
  7006. break;
  7007. case "projectGM": //课程管理
  7008. _formdiv = new U.UF.UI.form(
  7009. "课程管理",
  7010. $$("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 }), {
  7011. "id": "projectGM",
  7012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7013. "onresize": function () { }
  7014. }, {
  7015. closecallback: function () { }
  7016. }, { "style": { "height": "36px" } }).form; //创建窗体
  7017. _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); } }
  7018. break;
  7019. case "studyGM": //课程中心
  7020. _formdiv = new U.UF.UI.form(
  7021. "课程中心",
  7022. $$("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
  7023. "id": "study",
  7024. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7025. "onresize": function () { }
  7026. }, {
  7027. closecallback: function () { }
  7028. }, { "style": { "height": "36px" } }).form; //创建窗体
  7029. _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); } }
  7030. break;
  7031. // studentGM
  7032. case "studentGM": //学生管理
  7033. _formdiv = new U.UF.UI.form(
  7034. "学生管理",
  7035. $$("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 }), {
  7036. "id": "studentGM",
  7037. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _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); } }
  7043. break;
  7044. case "evaluateGM": //学生评价
  7045. _formdiv = new U.UF.UI.form(
  7046. "学生评价",
  7047. $$("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 }), {
  7048. "id": "evaluateGM",
  7049. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () { }
  7053. }, { "style": { "height": "36px" } }).form; //创建窗体
  7054. _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); } }
  7055. break;
  7056. // classGM
  7057. case "classGM": //班级管理
  7058. _formdiv = new U.UF.UI.form(
  7059. "班级管理",
  7060. $$("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 }), {
  7061. "id": "classGM",
  7062. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7063. "onresize": function () { }
  7064. }, {
  7065. closecallback: function () { }
  7066. }, { "style": { "height": "36px" } }).form; //创建窗体
  7067. _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); } }
  7068. break;
  7069. // dataGM
  7070. case "dataGM":
  7071. _formdiv = new U.UF.UI.form(
  7072. "我的资料",
  7073. $$("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 }), {
  7074. "id": "dataGM",
  7075. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7076. "onresize": function () { }
  7077. }, {
  7078. closecallback: function () { }
  7079. }, { "style": { "height": "36px" } }).form; //创建窗体
  7080. _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); } }
  7081. break;
  7082. // caseGM
  7083. case "caseGM": //课程进展
  7084. _formdiv = new U.UF.UI.form(
  7085. "课程进展",
  7086. $$("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 }), {
  7087. "id": "caseGM",
  7088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7089. "onresize": function () { }
  7090. }, {
  7091. closecallback: function () { }
  7092. }, { "style": { "height": "36px" } }).form; //创建窗体
  7093. _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); } }
  7094. break;
  7095. // meterialGM
  7096. case "meterialGM": //素材库
  7097. _formdiv = new U.UF.UI.form(
  7098. "素材库",
  7099. $$("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 }), {
  7100. "id": "meterialGM",
  7101. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7102. "onresize": function () { }
  7103. }, {
  7104. closecallback: function () { }
  7105. }, { "style": { "height": "36px" } }).form; //创建窗体
  7106. _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); } }
  7107. break;
  7108. // evaluateSGM
  7109. case "evaluateSGM": //我的评价
  7110. _formdiv = new U.UF.UI.form(
  7111. "我的评价",
  7112. $$("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 }), {
  7113. "id": "evaluateSGM",
  7114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, { "style": { "height": "36px" } }).form; //创建窗体
  7119. _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); } }
  7120. break;
  7121. case "jupyter": //jupyter
  7122. _formdiv = new U.UF.UI.form(
  7123. "jupyter",
  7124. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7125. "id": "jupyter",
  7126. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //创建窗体
  7131. _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); } }
  7132. break;
  7133. case "number": //数字实验室
  7134. _formdiv = new U.UF.UI.form(
  7135. "数字实验室",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7137. "id": "number",
  7138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //创建窗体
  7143. _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); } }
  7144. break;
  7145. case "studentCourse": //项目管理 学生
  7146. _formdiv = new U.UF.UI.form(
  7147. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7148. $$("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 }), {
  7149. "id": "studentCourse",
  7150. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _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); } }
  7156. break;
  7157. case "studentCourseS": //项目管理 老师
  7158. _formdiv = new U.UF.UI.form(
  7159. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7160. $$("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 }), {
  7161. "id": "studentCourseS",
  7162. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _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); } }
  7168. break;
  7169. case "studentIndex": //项目中心
  7170. _formdiv = new U.UF.UI.form(
  7171. "项目中心",
  7172. $$("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 }), {
  7173. "id": "studentIndex",
  7174. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _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); } }
  7180. break;
  7181. case "CaseDesignS":
  7182. _formdiv = new U.UF.UI.form(
  7183. "项目进展",
  7184. $$("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 }), {
  7185. "id": "case",
  7186. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _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); } }
  7192. break;
  7193. case "tcStudent": //腾讯学生管理
  7194. _formdiv = new U.UF.UI.form(
  7195. "学生管理",
  7196. $$("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 }), {
  7197. "id": "tcStudent",
  7198. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _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); } }
  7204. break;
  7205. case "tcSchool": //腾讯学校管理
  7206. _formdiv = new U.UF.UI.form(
  7207. "学校管理",
  7208. $$("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 }), {
  7209. "id": "tcSchool",
  7210. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _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); } }
  7216. break;
  7217. case "tcTeacher": //腾讯学校管理
  7218. _formdiv = new U.UF.UI.form(
  7219. "教师管理",
  7220. $$("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 }), {
  7221. "id": "tcTeacher",
  7222. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _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); } }
  7228. break;
  7229. case "teacher":
  7230. _formdiv = new U.UF.UI.form(
  7231. "教师管理",
  7232. $$("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 }), {
  7233. "id": "teacher",
  7234. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _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); } }
  7240. break;
  7241. case "tcData": //腾讯我的资料
  7242. _formdiv = new U.UF.UI.form(
  7243. "我的资料",
  7244. $$("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 }), {
  7245. "id": "tcData",
  7246. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _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); } }
  7252. break;
  7253. case "tcNotice": //腾讯消息通知
  7254. _formdiv = new U.UF.UI.form(
  7255. "消息通知",
  7256. $$("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 }), {
  7257. "id": "tcNotice",
  7258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _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); } }
  7264. break;
  7265. case "myReport": //好友打开
  7266. _formdiv = new U.UF.UI.form(
  7267. "我的评价",
  7268. $$("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 }), {
  7269. "id": "myReport",
  7270. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _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); } }
  7276. break;
  7277. case "learnAna": //好友打开
  7278. _formdiv = new U.UF.UI.form(
  7279. "学习分析",
  7280. $$("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 }), {
  7281. "id": "learnAna",
  7282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _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); } }
  7288. break;
  7289. case "AIChat": //AI共创
  7290. _formdiv = new U.UF.UI.form(
  7291. "AI共创",
  7292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7293. "id": "AIChat",
  7294. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. istop: true,
  7298. closecallback: function () { $("#aichat_icon").remove(); },
  7299. narrowcallback: function () {
  7300. if (!$("#aichat_icon")[0]) {
  7301. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7302. }
  7303. },
  7304. }, { "style": { "height": "36px" } }).form; //创建窗体
  7305. _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); } }
  7306. break;
  7307. case "ainew": //AI共创
  7308. _formdiv = new U.UF.UI.form(
  7309. "AI协同",
  7310. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7311. "id": "ainew",
  7312. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7313. "onresize": function () { }
  7314. }, {
  7315. closecallback: function () { }
  7316. }, { "style": { "height": "36px" } }).form; //创建窗体
  7317. _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); } }
  7318. break;
  7319. case "gpt4": //gpt4
  7320. _formdiv = new U.UF.UI.form(
  7321. "AI助手",
  7322. $$("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 }), {
  7323. "id": "gpt4",
  7324. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7325. "onresize": function () { }
  7326. }, {
  7327. closecallback: function () { }
  7328. }, { "style": { "height": "36px" } }).form; //创建窗体
  7329. _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); } }
  7330. break;
  7331. case "aigpt": //gpt4
  7332. _formdiv = new U.UF.UI.form(
  7333. "AI助手+",
  7334. $$("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 }), {
  7335. "id": "aigpt",
  7336. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () {
  7340. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7341. }
  7342. }, { "style": { "height": "36px" } }).form; //创建窗体
  7343. _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); } }
  7344. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7345. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7346. })
  7347. break;
  7348. case "aiKnowledge": //aiKnowledge
  7349. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7350. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7351. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7352. }
  7353. _formdiv = new U.UF.UI.form(
  7354. "知识建构",
  7355. $$("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 }), {
  7356. "id": "aiKnowledge",
  7357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7358. "onresize": function () { }
  7359. }, {
  7360. closecallback: function () { }
  7361. }, { "style": { "height": "36px" } }).form; //创建窗体
  7362. _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); } }
  7363. break;
  7364. case "futureClass": //AI共创
  7365. _formdiv = new U.UF.UI.form(
  7366. "协同建构",
  7367. $$("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
  7368. "id": "synergyCourse",
  7369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () {
  7373. $("iframe", _formdiv)[0].contentWindow.loginout();
  7374. }
  7375. }, { "style": { "height": "36px" } }).form; //创建窗体
  7376. _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); } }
  7377. break;
  7378. case "aiagent": //ai agent
  7379. _formdiv = new U.UF.UI.form(
  7380. "AI Agent",
  7381. $$("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" }), {
  7382. "id": "AIAgent",
  7383. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7384. "onresize": function () { }
  7385. }, {
  7386. closecallback: function () { }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. break;
  7390. case "dataBoard": //数据看板
  7391. _formdiv = new U.UF.UI.form(
  7392. "数据看板",
  7393. $$("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 }), {
  7394. "id": "dataBoard",
  7395. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7396. "onresize": function () { }
  7397. }, {
  7398. closecallback: function () { }
  7399. }, { "style": { "height": "36px" } }).form; //创建窗体
  7400. _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); } }
  7401. break;
  7402. case "dataBoardSies": //数据融合
  7403. _formdiv = new U.UF.UI.form(
  7404. "数据融合",
  7405. $$("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 }), {
  7406. "id": "dataBoardSies",
  7407. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7408. "onresize": function () { }
  7409. }, {
  7410. closecallback: function () { }
  7411. }, { "style": { "height": "36px" } }).form; //创建窗体
  7412. _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); } }
  7413. break;
  7414. case "dataBoardNew": //数据看板
  7415. _formdiv = new U.UF.UI.form(
  7416. "综合看板",
  7417. $$("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 }), {
  7418. "id": "dataBoardNew",
  7419. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //创建窗体
  7424. _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); } }
  7425. break;
  7426. case "dataBoardTest": //数据看板
  7427. _formdiv = new U.UF.UI.form(
  7428. "评测看板",
  7429. $$("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 }), {
  7430. "id": "dataBoardTest",
  7431. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7432. "onresize": function () { }
  7433. }, {
  7434. closecallback: function () { }
  7435. }, { "style": { "height": "36px" } }).form; //创建窗体
  7436. _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); } }
  7437. break;
  7438. case "AIAnalyse": //AI共创
  7439. _formdiv = new U.UF.UI.form(
  7440. "AI分析",
  7441. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7442. "id": "AIAnalyse",
  7443. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7444. "onresize": function () { }
  7445. }, {
  7446. closecallback: function () { }
  7447. }, { "style": { "height": "36px" } }).form; //创建窗体
  7448. _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); } }
  7449. break;
  7450. case "studioCourse": //AI共创
  7451. _formdiv = new U.UF.UI.form(
  7452. "工作管理",
  7453. $$("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 }), {
  7454. "id": "studioCourse",
  7455. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7456. "onresize": function () { }
  7457. }, {
  7458. closecallback: function () { }
  7459. }, { "style": { "height": "36px" } }).form; //创建窗体
  7460. _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); } }
  7461. break;
  7462. case "studioIndex": //AI共创
  7463. _formdiv = new U.UF.UI.form(
  7464. "工作中心",
  7465. $$("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 }), {
  7466. "id": "studioIndex",
  7467. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7468. "onresize": function () { }
  7469. }, {
  7470. closecallback: function () { }
  7471. }, { "style": { "height": "36px" } }).form; //创建窗体
  7472. _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); } }
  7473. break;
  7474. case "source":
  7475. _formdiv = new U.UF.UI.form(
  7476. "教学资源",
  7477. $$("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 }), {
  7478. "id": "source",
  7479. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7480. "onresize": function () { }
  7481. }, {
  7482. closecallback: function () { }
  7483. }, { "style": { "height": "36px" } }).form; //创建窗体
  7484. _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); } }
  7485. break;
  7486. case "testTeacher":
  7487. _formdiv = new U.UF.UI.form(
  7488. "智能表单",
  7489. $$("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 }), {
  7490. "id": "testTeacher",
  7491. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7492. "onresize": function () { }
  7493. }, {
  7494. closecallback: function () { }
  7495. }, { "style": { "height": "36px" } }).form; //创建窗体
  7496. _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); } }
  7497. break;
  7498. case "testStudent":
  7499. _formdiv = new U.UF.UI.form(
  7500. "教师中心",
  7501. $$("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 }), {
  7502. "id": "testStudent",
  7503. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7504. "onresize": function () { }
  7505. }, {
  7506. closecallback: function () { }
  7507. }, { "style": { "height": "36px" } }).form; //创建窗体
  7508. _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); } }
  7509. break;
  7510. case "testTeacherSies":
  7511. _formdiv = new U.UF.UI.form(
  7512. "教师管理",
  7513. $$("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 }), {
  7514. "id": "testTeacherSies",
  7515. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7516. "onresize": function () { }
  7517. }, {
  7518. closecallback: function () { }
  7519. }, { "style": { "height": "36px" } }).form; //创建窗体
  7520. _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); } }
  7521. break;
  7522. case "testStudentSies":
  7523. _formdiv = new U.UF.UI.form(
  7524. "教师中心",
  7525. $$("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 }), {
  7526. "id": "testStudentSies",
  7527. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7528. "onresize": function () { }
  7529. }, {
  7530. closecallback: function () { }
  7531. }, { "style": { "height": "36px" } }).form; //创建窗体
  7532. _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); } }
  7533. break;
  7534. case "ytpbl": //消息通知
  7535. _formdiv = new U.UF.UI.form(
  7536. "案例征集",
  7537. $$("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 }), {
  7538. "id": "ytpbl",
  7539. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7540. "onresize": function () { }
  7541. }, {
  7542. closecallback: function () { }
  7543. }, { "style": { "height": "36px" } }).form; //创建窗体
  7544. _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); } }
  7545. // 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");
  7546. break;
  7547. case "aiCourseResource": //人工智能窗体
  7548. _formdiv = new U.UF.UI.form(
  7549. false,
  7550. $$("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 }), {
  7551. "id": "aiCourseResource",
  7552. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7553. "onresize": function () { },
  7554. "isdrag": false,
  7555. }, {
  7556. closecallback: function () { }
  7557. }, { "style": { "height": "36px" } }).form; //创建窗体
  7558. _taskbar = ''
  7559. break;
  7560. case "szdjgCocooroboX": //图形化编程
  7561. _formdiv = new U.UF.UI.form(
  7562. "图形化编程",
  7563. $$("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" }), {
  7564. "id": "szdjgCocooroboX",
  7565. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7566. "onresize": function () { }
  7567. }, {
  7568. closecallback: function () { }
  7569. }, { "style": { "height": "36px" } }).form; //创建窗体
  7570. _taskbar = ''
  7571. break;
  7572. case "szdjgPython": //python编程
  7573. _formdiv = new U.UF.UI.form(
  7574. "Python编程",
  7575. $$("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" }), {
  7576. "id": "szdjgPython",
  7577. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7578. "onresize": function () { }
  7579. }, {
  7580. closecallback: function () { }
  7581. }, { "style": { "height": "36px" } }).form; //创建窗体
  7582. _taskbar = ''
  7583. break;
  7584. case "Record":
  7585. _formdiv = new U.UF.UI.form(
  7586. "观察记录",
  7587. $$("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 }), {
  7588. "id": "Record",
  7589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7590. "onresize": function () { }
  7591. }, {
  7592. closecallback: function () { }
  7593. }, { "style": { "height": "36px" } }).form; //创建窗体
  7594. _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); } }
  7595. break;
  7596. case "aigptCourse":
  7597. _formdiv = new U.UF.UI.form(
  7598. "AI智能体",
  7599. $$("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' }), {
  7600. "id": "aigptCourse",
  7601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7602. "onresize": function () { }
  7603. }, {
  7604. closecallback: function () { }
  7605. }, { "style": { "height": "36px" } }).form; //创建窗体
  7606. _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); } }
  7607. break;
  7608. case "classroomObservation":
  7609. _formdiv = new U.UF.UI.form(
  7610. "课堂观察",
  7611. $$("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 }), {
  7612. "id": "classroomObservation",
  7613. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7614. "onresize": function () { }
  7615. }, {
  7616. closecallback: function () { }
  7617. }, { "style": { "height": "36px" } }).form; //创建窗体
  7618. _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); } }
  7619. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7620. break;
  7621. case "pblCourse":
  7622. _formdiv = new U.UF.UI.form(
  7623. "学生PBL",
  7624. $$("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 }), {
  7625. "id": "pblCourse",
  7626. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7627. "onresize": function () { }
  7628. }, {
  7629. closecallback: function () { }
  7630. }, { "style": { "height": "36px" } }).form; //创建窗体
  7631. _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); } }
  7632. break;
  7633. case "appStore":
  7634. U.MD.D.addOp('','cocoflowOpen','')
  7635. _formdiv = new U.UF.UI.form(
  7636. "CocoFlow",
  7637. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7638. "id": "appStore",
  7639. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7640. "onresize": function () { }
  7641. }, {
  7642. closecallback: function () { }
  7643. }, { "style": { "height": "36px" } }).form; //创建窗体
  7644. _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); } }
  7645. break;
  7646. case "sassPlatform":
  7647. _formdiv = new U.UF.UI.form(
  7648. "Sass通用后台管理",
  7649. $$("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 }), {
  7650. "id": "sassPlatform",
  7651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7652. "onresize": function () { }
  7653. }, {
  7654. closecallback: function () { }
  7655. }, { "style": { "height": "36px" } }).form; //创建窗体
  7656. _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); } }
  7657. break;
  7658. case "EDU":
  7659. _formdiv = new U.UF.UI.form(
  7660. "EDU",
  7661. $$("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" }), {
  7662. "id": "EDU",
  7663. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7664. "onresize": function () { }
  7665. }, {
  7666. closecallback: function () { }
  7667. }, { "style": { "height": "36px" } }).form; //创建窗体
  7668. _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); } }
  7669. break;
  7670. case "knowledge":
  7671. _formdiv = new U.UF.UI.form(
  7672. "知识库",
  7673. $$("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 }), {
  7674. "id": "knowledge",
  7675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //创建窗体
  7680. _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); } }
  7681. break;
  7682. case "userExamine":
  7683. _formdiv = new U.UF.UI.form(
  7684. "账号申请",
  7685. $$("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" }), {
  7686. "id": "userExamine",
  7687. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () { }
  7691. }, { "style": { "height": "36px" } }).form; //创建窗体
  7692. break;
  7693. case "cocoflowDeskTop": //cocoflowDeskTop
  7694. _formdiv = new U.UF.UI.form(
  7695. false,
  7696. $$("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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7697. "id": "cocoflowDeskTop",
  7698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7699. "onresize": function () { },
  7700. }, {
  7701. closecallback: function () { },
  7702. "isdrag": false,
  7703. }, { "style": { "height": "36px" } }).form; //创建窗体
  7704. _taskbar = ''
  7705. break;
  7706. case "liyuanLogin": //liyuanLogin
  7707. _formdiv = new U.UF.UI.form(
  7708. false,
  7709. $$("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": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7710. "id": "liyuanLogin",
  7711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7712. "onresize": function () { },
  7713. }, {
  7714. closecallback: function () { },
  7715. isdrag: false,
  7716. isstretching: false,
  7717. isenlarge: false,
  7718. isnarrow: false
  7719. }, { "style": { "height": "36px" } }).form; //创建窗体
  7720. _taskbar = ''
  7721. break;
  7722. case "updatePaDialog":
  7723. _formdiv = new U.UF.UI.form(
  7724. "密码修改",
  7725. $$("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://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  7726. "id": "updatePaDialog",
  7727. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7728. "onresize": function () { },
  7729. }, {
  7730. closecallback: function () { },
  7731. isclose: false,
  7732. isdrag: false,
  7733. isstretching: false,
  7734. isenlarge: false,
  7735. isnarrow: false
  7736. }, { "style": { "height": "36px" } }).form; //创建窗体
  7737. break;
  7738. }
  7739. //U.MD.D.I.openClick(str);
  7740. //如果有任务栏信息
  7741. if (_taskbar) {
  7742. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7743. }
  7744. if(iframeBool){
  7745. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7746. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7747. // console.log("iframe进入");
  7748. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7749. // };
  7750. setTimeout(() => {
  7751. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7752. }, 2000);
  7753. }
  7754. }
  7755. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7756. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7757. _userinfo = US.userInfo, //登录用户信息
  7758. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7759. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7760. let iframeBool = true;
  7761. let queryString = ''
  7762. if(array && array.length){
  7763. const paramsMap = {
  7764. userid: _userid,
  7765. org: _org,
  7766. oid: _oid,
  7767. type: _type,
  7768. role: _role,
  7769. classId: _classId,
  7770. TscreenType: _TscreenType,
  7771. SscreenType: _SscreenType
  7772. };
  7773. const canshu = array
  7774. .filter(param => paramsMap[param] !== undefined)
  7775. .map(param => `${param}=${paramsMap[param]}`);
  7776. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7777. }
  7778. let _url = url + queryString
  7779. if(U.UF.UI.form.allForm[id]){
  7780. iframeBool = false
  7781. }
  7782. _formdiv = new U.UF.UI.form(
  7783. false,
  7784. $$("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 }),
  7785. {
  7786. "id": id,
  7787. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7788. "onresize": function () { },
  7789. },
  7790. {
  7791. closecallback: function () { },
  7792. isdrag: false,
  7793. isstretching: false,
  7794. isenlarge: false,
  7795. isnarrow: false
  7796. },
  7797. { "style": { "height": "36px" } },
  7798. undefined,
  7799. undefined,
  7800. dom
  7801. ).form
  7802. }
  7803. // U.MD.D.I.openClick = function(str){
  7804. // var click = '';
  7805. // switch(str){
  7806. // case 'friend':
  7807. // click = '我的好友';
  7808. // break;
  7809. // case 'domain':
  7810. // click = '域名管理';
  7811. // break;
  7812. // case 'disk':
  7813. // click = '我的云盘';
  7814. // break;
  7815. // case 'word':
  7816. // click = 'Word';
  7817. // break;
  7818. // case 'excel':
  7819. // click = 'Execl';
  7820. // break;
  7821. // case 'txt':
  7822. // click = '文本文件';
  7823. // break;
  7824. // case 'lookupFriend':
  7825. // click = '查找好友';
  7826. // break;
  7827. // case 'ftp':
  7828. // click = 'FTP';
  7829. // break;
  7830. // case 'group':
  7831. // click = '群组';
  7832. // break;
  7833. // case 'set':
  7834. // click = '我的设置';
  7835. // break;
  7836. // case 'systemSet':
  7837. // click = '系统设置';
  7838. // break;
  7839. // case 'boomYun':
  7840. // click = '互联办公';
  7841. // break;
  7842. // case 'xz':
  7843. // click = '云端下载';
  7844. // break;
  7845. // case 'client':
  7846. // click = '有思浏览器';
  7847. // break;
  7848. // case 'backEndProgramming':
  7849. // click = '在线后台编程';
  7850. // break;
  7851. // case 'frontEndProgramming':
  7852. // click = '在线前端编程';
  7853. // break;
  7854. // default: break;
  7855. // }
  7856. // if(U.MD.D.I.Ip && click){
  7857. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7858. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7859. // })
  7860. // }
  7861. // }
  7862. /**
  7863. *函数作用:ajax简易函数,使用post格式
  7864. *@param url {data} 后台地址
  7865. *@param data {data} 参数json
  7866. *@param fn {data} 回调函数
  7867. *
  7868. */
  7869. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7870. // var xhr = new XMLHttpRequest();
  7871. // xhr.open("GET",url,true);
  7872. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7873. // xhr.onreadystatechange = function(){
  7874. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7875. // fn.call(this,xhr.responseText);
  7876. // }
  7877. // };
  7878. // xhr.send();
  7879. // }
  7880. /*判断是否是内网IP*/
  7881. // U.MD.D.I.isInnerIPFn = function(str){
  7882. // var curPageUrl = str;
  7883. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7884. // curPageUrl =curPageUrl.replace(reg1,'');
  7885. // // console.log('curPageUrl-1 '+curPageUrl);
  7886. // var reg2 = /\:+/g;//替换冒号为一点
  7887. // curPageUrl =curPageUrl.replace(reg2,'.');
  7888. // // console.log('curPageUrl-2 '+curPageUrl);
  7889. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7890. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7891. // if(curPageUrl[2] != '16'){
  7892. // return ipAddress;
  7893. // }else{
  7894. // return false;
  7895. // }
  7896. // }
  7897. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7898. // //compatibility for firefox and chrome
  7899. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7900. // var pc = new myPeerConnection({
  7901. // iceServers: []
  7902. // }),
  7903. // noop = function() {},
  7904. // localIPs = {},
  7905. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7906. // key;
  7907. // function iterateIP(ip) {
  7908. // if (!localIPs[ip]) onNewIP(ip);
  7909. // localIPs[ip] = true;
  7910. // }
  7911. // //create a bogus data channel
  7912. // pc.createDataChannel("");
  7913. // // create offer and set local description
  7914. // pc.createOffer().then(function(sdp) {
  7915. // sdp.sdp.split('\n').forEach(function(line) {
  7916. // if (line.indexOf('candidate') < 0) return;
  7917. // line.match(ipRegex).forEach(iterateIP);
  7918. // });
  7919. // pc.setLocalDescription(sdp, noop, noop);
  7920. // }).catch(function(reason) {
  7921. // // An error occurred, so handle the failure to connect
  7922. // });
  7923. // //sten for candidate events
  7924. // pc.onicecandidate = function(ice) {
  7925. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7926. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7927. // };
  7928. // }
  7929. // U.MD.D.I.getUserIpBool = function(callback){
  7930. // U.MD.D.I.getUserIP(function(ip){
  7931. // alert("Got IP! :" + ip);
  7932. // });
  7933. //}
  7934. //#endregion
  7935. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7936. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7937. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7938. _userinfo = US.userInfo, //登录用户信息
  7939. _userid = US.userInfo.userid //登录用户id
  7940. let _iframe;
  7941. let _cid = cid,
  7942. _stage = stage,
  7943. _task = task,
  7944. _tool = tool;
  7945. var _jie = $$("div", {
  7946. "style": {
  7947. "position": "absolute",
  7948. "bottom": "50px",
  7949. "right": "50px",
  7950. "zIndex": "9999",
  7951. "backgroundColor": "#2268bc",
  7952. "color": "#fff",
  7953. "padding": "12px 20px",
  7954. "cursor": "pointer",
  7955. "borderRadius": "4px",
  7956. },
  7957. "innerHTML": "提交作业"
  7958. })
  7959. let aTool = ''
  7960. let _loading = document.createElement('div')
  7961. _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;"
  7962. // _loading.id = "";
  7963. let _lchild = document.createElement('div')
  7964. let _limg = document.createElement('img')
  7965. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7966. _limg.style = "width: 26px;margin-right: 10px;"
  7967. _lchild.appendChild(_limg)
  7968. let _lspan = document.createElement('span')
  7969. _lspan.innerHTML = "上传中..."
  7970. _lchild.appendChild(_lspan)
  7971. _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%);"
  7972. _loading.appendChild(_lchild)
  7973. var _box = $$('div', {
  7974. "style": {
  7975. "position": "relative",
  7976. "width": "100%",
  7977. "height": "100%",
  7978. },
  7979. })
  7980. _box.appendChild(_loading)
  7981. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7982. switch (str) {
  7983. case "whiteboard":
  7984. aTool = 1;
  7985. _iframe = $$("iframe", {
  7986. "frameborder": "no",
  7987. "border": "0",
  7988. "scrolling ": "no",
  7989. "style": {
  7990. "cssText": "border:0;width:100%;height:100%"
  7991. },
  7992. "src": "https://beta.iwb.cocorobo.cn/"
  7993. })
  7994. _box.appendChild(_iframe);
  7995. _box.appendChild(_jie);
  7996. _formdiv = new U.UF.UI.form(
  7997. "电子白板",
  7998. _box, {
  7999. "id": "whiteboard" + cid + stage + task + tool,
  8000. "style": {
  8001. "width": "90%",
  8002. "height": "90%",
  8003. "overflow": 'hidden'
  8004. },
  8005. "onresize": function () { }
  8006. }, {
  8007. closecallback: function () { }
  8008. }, {
  8009. "style": {
  8010. "height": "36px"
  8011. }
  8012. }).form; //创建窗体
  8013. _taskbar = {
  8014. "id": str + _formdiv.id,
  8015. "style": {
  8016. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8017. },
  8018. "name": "电子白板",
  8019. "forms": _formdiv,
  8020. "click": function () {
  8021. U.MD.D.I.openApplication(str, obj, info);
  8022. }
  8023. }
  8024. break;
  8025. case "mind":
  8026. aTool = 3;
  8027. _iframe = $$("iframe", {
  8028. "frameborder": "no",
  8029. "border": "0",
  8030. "scrolling ": "no",
  8031. "style": {
  8032. "cssText": "border:0;width:100%;height:100%"
  8033. },
  8034. "src": "/kityminder-editor/dist/index.html"
  8035. })
  8036. _box.appendChild(_iframe);
  8037. _box.appendChild(_jie);
  8038. _formdiv = new U.UF.UI.form(
  8039. "思维导图",
  8040. _box, { //"/jsmind/example/demo.html"
  8041. "id": "mind" + cid + stage + task + tool,
  8042. "style": {
  8043. "width": "90%",
  8044. "height": "90%",
  8045. "overflow": 'hidden'
  8046. },
  8047. "onresize": function () { }
  8048. }, {
  8049. closecallback: function () { }
  8050. }, {
  8051. "style": {
  8052. "height": "36px"
  8053. }
  8054. }).form; //创建窗体
  8055. _taskbar = {
  8056. "id": str + _formdiv.id,
  8057. "style": {
  8058. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8059. },
  8060. "name": "思维导图",
  8061. "forms": _formdiv,
  8062. "click": function () {
  8063. U.MD.D.I.openApplication(str, obj, info);
  8064. }
  8065. }
  8066. break;
  8067. case "MindMap":
  8068. aTool = 3;
  8069. _iframe = $$("iframe", {
  8070. "frameborder": "no",
  8071. "border": "0",
  8072. "scrolling ": "no",
  8073. "style": {
  8074. "cssText": "border:0;width:100%;height:100%"
  8075. },
  8076. "src": "//cloud.cocorobo.cn/mind/"
  8077. })
  8078. _box.appendChild(_iframe);
  8079. _box.appendChild(_jie);
  8080. _formdiv = new U.UF.UI.form(
  8081. "思维导图",
  8082. _box, { //"/jsmind/example/demo.html"
  8083. "id": "mind" + cid + stage + task + tool,
  8084. "style": {
  8085. "width": "90%",
  8086. "height": "90%",
  8087. "overflow": 'hidden'
  8088. },
  8089. "onresize": function () { }
  8090. }, {
  8091. closecallback: function () { }
  8092. }, {
  8093. "style": {
  8094. "height": "36px"
  8095. }
  8096. }).form; //创建窗体
  8097. _taskbar = {
  8098. "id": str + _formdiv.id,
  8099. "style": {
  8100. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8101. },
  8102. "name": "思维导图",
  8103. "forms": _formdiv,
  8104. "click": function () {
  8105. U.MD.D.I.openApplication(str, obj, info);
  8106. }
  8107. }
  8108. break;
  8109. case "doc":
  8110. aTool = 6;
  8111. _iframe = $$("iframe", {
  8112. "frameborder": "no",
  8113. "border": "0",
  8114. "scrolling ": "no",
  8115. "style": {
  8116. "cssText": "border:0;width:100%;height:100%"
  8117. },
  8118. "src": "/Office/Word/WordEditArea.htm"
  8119. })
  8120. _box.appendChild(_iframe);
  8121. _box.appendChild(_jie);
  8122. _formdiv = new U.UF.UI.form(
  8123. "协同文档",
  8124. _box, {
  8125. "id": "doc" + cid + stage + task + tool,
  8126. "style": {
  8127. "width": "90%",
  8128. "height": "90%",
  8129. "overflow": 'hidden'
  8130. },
  8131. "onresize": function () { }
  8132. }, {
  8133. closecallback: function () { }
  8134. }, {
  8135. "style": {
  8136. "height": "36px"
  8137. }
  8138. }).form; //创建窗体
  8139. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8140. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8141. })
  8142. _taskbar = {
  8143. "id": str + _formdiv.id,
  8144. "style": {
  8145. "backgroundImage": "url(/img/icon/doc.png)"
  8146. },
  8147. "name": "协同文档",
  8148. "forms": _formdiv,
  8149. "click": function () {
  8150. U.MD.D.I.openApplication(str, obj, info);
  8151. }
  8152. }
  8153. break;
  8154. case "mindNetwork": //好友打开
  8155. aTool = 7;
  8156. _iframe = $$("iframe", {
  8157. "webkitallowfullscreen": "",
  8158. "mozallowfullscreen": "",
  8159. "allowfullscreen": "",
  8160. "frameborder": "no",
  8161. "border": "0",
  8162. "scrolling ": "no",
  8163. "style": {
  8164. "cssText": "border:0; width:100%; height:100%;"
  8165. },
  8166. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8167. })
  8168. _box.appendChild(_iframe);
  8169. _box.appendChild(_jie);
  8170. _formdiv = new U.UF.UI.form(
  8171. "思维网格",
  8172. _box, {
  8173. "id": "mindNetwork" + cid + stage + task + tool,
  8174. "style": {
  8175. "width": "90%",
  8176. "height": "90%",
  8177. "overflow": 'hidden'
  8178. },
  8179. "onresize": function () { }
  8180. }, {
  8181. closecallback: function () { }
  8182. }, {
  8183. "style": {
  8184. "height": "36px"
  8185. }
  8186. }).form; //创建窗体
  8187. _taskbar = {
  8188. "id": str + _formdiv.id,
  8189. "style": {
  8190. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8191. },
  8192. "name": "思维网格",
  8193. "forms": _formdiv,
  8194. "click": function () {
  8195. U.MD.D.I.openApplication(str, obj, info);
  8196. }
  8197. }
  8198. break;
  8199. case "courseDesign":
  8200. _iframe = $$("iframe", {
  8201. "webkitallowfullscreen": "",
  8202. "mozallowfullscreen": "",
  8203. "allowfullscreen": "",
  8204. "frameborder": "no",
  8205. "border": "0",
  8206. "scrolling ": "no",
  8207. "style": {
  8208. "cssText": "border:0; width:100%; height:100%;"
  8209. },
  8210. "src": "/course-design-vue"
  8211. })
  8212. _box.appendChild(_iframe);
  8213. _box.appendChild(_jie);
  8214. _formdiv = new U.UF.UI.form(
  8215. "项目设计",
  8216. _box, {
  8217. "id": "courseDesign" + cid + stage + task + tool,
  8218. "style": {
  8219. "width": "90%",
  8220. "height": "90%",
  8221. "overflow": 'hidden'
  8222. },
  8223. "onresize": function () { }
  8224. }, {
  8225. closecallback: function () { }
  8226. }, {
  8227. "style": {
  8228. "height": "36px"
  8229. }
  8230. }).form; //创建窗体
  8231. _taskbar = {
  8232. "id": str + _formdiv.id,
  8233. "style": {
  8234. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8235. },
  8236. "name": "项目设计",
  8237. "forms": _formdiv,
  8238. "click": function () {
  8239. U.MD.D.I.openApplication(str, obj, info);
  8240. }
  8241. }
  8242. break;
  8243. }
  8244. const script1 = document.createElement("script");
  8245. script1.type = "text/javascript";
  8246. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8247. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8248. const script2 = document.createElement("script");
  8249. script2.type = "text/javascript";
  8250. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8251. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8252. const script3 = document.createElement("script");
  8253. script3.type = "text/javascript";
  8254. script3.charset = "UTF-8";
  8255. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8256. const script4 = document.createElement("script");
  8257. script4.type = "text/javascript";
  8258. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8259. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8260. if (_iframe) {
  8261. if (str == 'doc') {
  8262. _iframe = _formdiv.querySelector('iframe')
  8263. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8264. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8265. _iframe.contentWindow.document.body.appendChild(script1);
  8266. _iframe.contentWindow.document.body.appendChild(script2);
  8267. // _iframe.contentWindow.document.body.appendChild(script3);
  8268. _iframe.contentWindow.document.body.appendChild(script4);
  8269. })
  8270. if (onloadListener) {
  8271. _iframe.contentDocument.location.reload()
  8272. } else {
  8273. _iframe.contentDocument.location.reload()
  8274. }
  8275. } else if (str == 'courseDesign') {
  8276. U.UF.DL.iframeLoad(_iframe, function () {
  8277. // _iframe.contentWindow.U.MD.O.W.load();
  8278. // _iframe.contentWindow.document.body.appendChild(script1);
  8279. _iframe.contentWindow.document.body.appendChild(script2);
  8280. _iframe.contentWindow.document.body.appendChild(script4);
  8281. })
  8282. } else if (str == 'mind') {
  8283. _iframe = _formdiv.querySelector('iframe')
  8284. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8285. //
  8286. _iframe.contentWindow.document.body.appendChild(script1);
  8287. _iframe.contentWindow.document.body.appendChild(script2);
  8288. _iframe.contentWindow.document.body.appendChild(script4);
  8289. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8290. })
  8291. if (onloadListener) {
  8292. _iframe.contentDocument.location.reload()
  8293. } else {
  8294. _iframe.contentDocument.location.reload()
  8295. }
  8296. } else if (str == 'whiteboard') {
  8297. _iframe = _formdiv.querySelector('iframe')
  8298. let onloadListener = _iframe.onload = () => {
  8299. _iframe.contentWindow.document.body.appendChild(script1);
  8300. _iframe.contentWindow.document.body.appendChild(script2);
  8301. _iframe.contentWindow.document.body.appendChild(script4);
  8302. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8303. };
  8304. // if (onloadListener) {
  8305. // try {
  8306. // _iframe.src += "?cocorobo="+new Date().getTime()
  8307. // _iframe.contentWindow.document.location.reload()
  8308. // } catch (error) {
  8309. // }
  8310. // } else {
  8311. // _iframe.contentDocument.location.reload()
  8312. // }
  8313. } else {
  8314. _iframe.onload = () => {
  8315. _iframe.contentWindow.document.body.appendChild(script1);
  8316. _iframe.contentWindow.document.body.appendChild(script2);
  8317. // _iframe.contentWindow.document.body.appendChild(script3);
  8318. _iframe.contentWindow.document.body.appendChild(script4);
  8319. };
  8320. }
  8321. _jie.onclick = async () => {
  8322. let text = ''
  8323. if (aTool == 1) {
  8324. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8325. } else if (aTool == 6) {
  8326. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8327. } else if (aTool == 3) {
  8328. text = await U.MD.D.I.getEditorContent(_iframe);
  8329. }
  8330. _loading.style.display = 'flex'
  8331. console.log(_loading);
  8332. var _ajs = _iframe.contentWindow.document.createElement("script");
  8333. _ajs.type = "text/javascript";
  8334. _ajs.innerHTML =
  8335. // 'console.log(' + _loading + ');\n' +
  8336. 'var _js = document.createElement("script");\n' +
  8337. '_js.type="text/javascript";\n' +
  8338. '_js.charset="UTF-8";\n' +
  8339. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8340. "_js.onload = function(){\n" +
  8341. ' var a = document.getElementsByTagName("img")\n' +
  8342. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8343. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8344. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8345. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8346. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8347. "beforeUpload_shishi(file," +
  8348. "'" +
  8349. _userid +
  8350. "'" +
  8351. ", " +
  8352. "'" +
  8353. _cid +
  8354. "'" +
  8355. ", " +
  8356. "'" +
  8357. _stage +
  8358. "'" +
  8359. ", " +
  8360. "'" +
  8361. _task +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. _tool +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8370. "'" +
  8371. ", " +
  8372. "'" +
  8373. aTool +
  8374. "'" +
  8375. ", " +
  8376. "`" +
  8377. text +
  8378. "`" +
  8379. ")\n" +
  8380. " });\n" +
  8381. "}\n" +
  8382. "document.head.appendChild(_js);\n";
  8383. _iframe.contentWindow.document.head.appendChild(_ajs);
  8384. }
  8385. }
  8386. //U.MD.D.I.openClick(str);
  8387. //如果有任务栏信息
  8388. // if (_taskbar) {
  8389. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8390. // }
  8391. }
  8392. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8393. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8394. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8395. _userinfo = US.userInfo, //登录用户信息
  8396. _userid = US.userInfo.userid //登录用户id
  8397. let _iframe;
  8398. let _cid = cid,
  8399. _stage = stage,
  8400. _task = task,
  8401. _tool = tool;
  8402. var _jie = $$("div", {
  8403. "style": {
  8404. "position": "absolute",
  8405. "bottom": "50px",
  8406. "right": "50px",
  8407. "zIndex": "9999",
  8408. "backgroundColor": "#2268bc",
  8409. "color": "#fff",
  8410. "padding": "12px 20px",
  8411. "cursor": "pointer",
  8412. "borderRadius": "4px",
  8413. },
  8414. "innerHTML": "提交作业"
  8415. })
  8416. let aTool = ''
  8417. let _loading = document.createElement('div')
  8418. _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;"
  8419. // _loading.id = "";
  8420. let _lchild = document.createElement('div')
  8421. let _limg = document.createElement('img')
  8422. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8423. _limg.style = "width: 26px;margin-right: 10px;"
  8424. _lchild.appendChild(_limg)
  8425. let _lspan = document.createElement('span')
  8426. _lspan.innerHTML = "上传中..."
  8427. _lchild.appendChild(_lspan)
  8428. _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%);"
  8429. _loading.appendChild(_lchild)
  8430. let _box = $$('div', {
  8431. "style": {
  8432. "position": "relative",
  8433. "width": "100%",
  8434. "height": "100%",
  8435. },
  8436. })
  8437. _box.appendChild(_loading)
  8438. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8439. switch (str) {
  8440. case "whiteboard":
  8441. aTool = 1;
  8442. _iframe = $$("iframe", {
  8443. "frameborder": "no",
  8444. "border": "0",
  8445. "scrolling ": "no",
  8446. "style": {
  8447. "cssText": "border:0;width:100%;height:100%"
  8448. },
  8449. "src": "https://beta.iwb.cocorobo.cn/"
  8450. })
  8451. _box.appendChild(_iframe);
  8452. _box.appendChild(_jie);
  8453. _formdiv = new U.UF.UI.form(
  8454. "电子白板",
  8455. _box, {
  8456. "id": "whiteboard" + cid + stage + task + tool,
  8457. "style": {
  8458. "width": "90%",
  8459. "height": "90%",
  8460. "overflow": 'hidden'
  8461. },
  8462. "onresize": function () { }
  8463. }, {
  8464. closecallback: function () { }
  8465. }, {
  8466. "style": {
  8467. "height": "36px"
  8468. }
  8469. }).form; //创建窗体
  8470. _taskbar = {
  8471. "id": str + _formdiv.id,
  8472. "style": {
  8473. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8474. },
  8475. "name": "电子白板",
  8476. "forms": _formdiv,
  8477. "click": function () {
  8478. U.MD.D.I.openApplication(str, obj, info);
  8479. }
  8480. }
  8481. break;
  8482. case "mind":
  8483. aTool = 3;
  8484. _iframe = $$("iframe", {
  8485. "frameborder": "no",
  8486. "border": "0",
  8487. "scrolling ": "no",
  8488. "style": {
  8489. "cssText": "border:0;width:100%;height:100%"
  8490. },
  8491. "src": "/kityminder-editor/dist/index.html"
  8492. })
  8493. _box.appendChild(_iframe);
  8494. _box.appendChild(_jie);
  8495. _formdiv = new U.UF.UI.form(
  8496. "思维导图",
  8497. _box, { //"/jsmind/example/demo.html"
  8498. "id": "mind" + cid + stage + task + tool,
  8499. "style": {
  8500. "width": "90%",
  8501. "height": "90%",
  8502. "overflow": 'hidden'
  8503. },
  8504. "onresize": function () { }
  8505. }, {
  8506. closecallback: function () { }
  8507. }, {
  8508. "style": {
  8509. "height": "36px"
  8510. }
  8511. }).form; //创建窗体
  8512. _taskbar = {
  8513. "id": str + _formdiv.id,
  8514. "style": {
  8515. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8516. },
  8517. "name": "思维导图",
  8518. "forms": _formdiv,
  8519. "click": function () {
  8520. U.MD.D.I.openApplication(str, obj, info);
  8521. }
  8522. }
  8523. break;
  8524. case "MindMap":
  8525. aTool = 3;
  8526. _iframe = $$("iframe", {
  8527. "frameborder": "no",
  8528. "border": "0",
  8529. "scrolling ": "no",
  8530. "style": {
  8531. "cssText": "border:0;width:100%;height:100%"
  8532. },
  8533. "src": "//cloud.cocorobo.cn/mind/"
  8534. })
  8535. _box.appendChild(_iframe);
  8536. _box.appendChild(_jie);
  8537. _formdiv = new U.UF.UI.form(
  8538. "思维导图",
  8539. _box, { //"/jsmind/example/demo.html"
  8540. "id": "mind" + cid + stage + task + tool,
  8541. "style": {
  8542. "width": "90%",
  8543. "height": "90%",
  8544. "overflow": 'hidden'
  8545. },
  8546. "onresize": function () { }
  8547. }, {
  8548. closecallback: function () { }
  8549. }, {
  8550. "style": {
  8551. "height": "36px"
  8552. }
  8553. }).form; //创建窗体
  8554. _taskbar = {
  8555. "id": str + _formdiv.id,
  8556. "style": {
  8557. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8558. },
  8559. "name": "思维导图",
  8560. "forms": _formdiv,
  8561. "click": function () {
  8562. U.MD.D.I.openApplication(str, obj, info);
  8563. }
  8564. }
  8565. break;
  8566. case "doc":
  8567. aTool = 6;
  8568. _iframe = $$("iframe", {
  8569. "frameborder": "no",
  8570. "border": "0",
  8571. "scrolling ": "no",
  8572. "style": {
  8573. "cssText": "border:0;width:100%;height:100%"
  8574. },
  8575. "src": "/Office/Word/WordEditArea.htm"
  8576. })
  8577. _box.appendChild(_iframe);
  8578. _box.appendChild(_jie);
  8579. _formdiv = new U.UF.UI.form(
  8580. "协同文档",
  8581. _box, {
  8582. "id": "doc" + cid + stage + task + tool,
  8583. "style": {
  8584. "width": "90%",
  8585. "height": "90%",
  8586. "overflow": 'hidden'
  8587. },
  8588. "onresize": function () { }
  8589. }, {
  8590. closecallback: function () { }
  8591. }, {
  8592. "style": {
  8593. "height": "36px"
  8594. }
  8595. }).form; //创建窗体
  8596. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8597. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8598. })
  8599. _taskbar = {
  8600. "id": str + _formdiv.id,
  8601. "style": {
  8602. "backgroundImage": "url(/img/icon/doc.png)"
  8603. },
  8604. "name": "协同文档",
  8605. "forms": _formdiv,
  8606. "click": function () {
  8607. U.MD.D.I.openApplication(str, obj, info);
  8608. }
  8609. }
  8610. break;
  8611. case "mindNetwork": //好友打开
  8612. aTool = 7;
  8613. _iframe = $$("iframe", {
  8614. "webkitallowfullscreen": "",
  8615. "mozallowfullscreen": "",
  8616. "allowfullscreen": "",
  8617. "frameborder": "no",
  8618. "border": "0",
  8619. "scrolling ": "no",
  8620. "style": {
  8621. "cssText": "border:0; width:100%; height:100%;"
  8622. },
  8623. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8624. })
  8625. _box.appendChild(_iframe);
  8626. _box.appendChild(_jie);
  8627. _formdiv = new U.UF.UI.form(
  8628. "思维网格",
  8629. _box, {
  8630. "id": "mindNetwork" + cid + stage + task + tool,
  8631. "style": {
  8632. "width": "90%",
  8633. "height": "90%",
  8634. "overflow": 'hidden'
  8635. },
  8636. "onresize": function () { }
  8637. }, {
  8638. closecallback: function () { }
  8639. }, {
  8640. "style": {
  8641. "height": "36px"
  8642. }
  8643. }).form; //创建窗体
  8644. _taskbar = {
  8645. "id": str + _formdiv.id,
  8646. "style": {
  8647. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8648. },
  8649. "name": "思维网格",
  8650. "forms": _formdiv,
  8651. "click": function () {
  8652. U.MD.D.I.openApplication(str, obj, info);
  8653. }
  8654. }
  8655. break;
  8656. case "courseDesign":
  8657. _iframe = $$("iframe", {
  8658. "webkitallowfullscreen": "",
  8659. "mozallowfullscreen": "",
  8660. "allowfullscreen": "",
  8661. "frameborder": "no",
  8662. "border": "0",
  8663. "scrolling ": "no",
  8664. "style": {
  8665. "cssText": "border:0; width:100%; height:100%;"
  8666. },
  8667. "src": "/course-design-vue"
  8668. })
  8669. _box.appendChild(_iframe);
  8670. _box.appendChild(_jie);
  8671. _formdiv = new U.UF.UI.form(
  8672. "项目设计",
  8673. _box, {
  8674. "id": "courseDesign" + cid + stage + task + tool,
  8675. "style": {
  8676. "width": "90%",
  8677. "height": "90%",
  8678. "overflow": 'hidden'
  8679. },
  8680. "onresize": function () { }
  8681. }, {
  8682. closecallback: function () { }
  8683. }, {
  8684. "style": {
  8685. "height": "36px"
  8686. }
  8687. }).form; //创建窗体
  8688. _taskbar = {
  8689. "id": str + _formdiv.id,
  8690. "style": {
  8691. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8692. },
  8693. "name": "项目设计",
  8694. "forms": _formdiv,
  8695. "click": function () {
  8696. U.MD.D.I.openApplication(str, obj, info);
  8697. }
  8698. }
  8699. break;
  8700. }
  8701. const script1 = document.createElement("script");
  8702. script1.type = "text/javascript";
  8703. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8704. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8705. const script2 = document.createElement("script");
  8706. script2.type = "text/javascript";
  8707. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8708. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8709. const script3 = document.createElement("script");
  8710. script3.type = "text/javascript";
  8711. script3.charset = "UTF-8";
  8712. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8713. const script4 = document.createElement("script");
  8714. script4.type = "text/javascript";
  8715. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8716. script4.src = window.origin + "/js/Common/jietu2E.js";
  8717. if (_iframe) {
  8718. if (str == 'doc') {
  8719. _iframe = _formdiv.querySelector('iframe')
  8720. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8721. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8722. _iframe.contentWindow.document.body.appendChild(script1);
  8723. _iframe.contentWindow.document.body.appendChild(script2);
  8724. // _iframe.contentWindow.document.body.appendChild(script3);
  8725. _iframe.contentWindow.document.body.appendChild(script4);
  8726. })
  8727. if (onloadListener) {
  8728. _iframe.contentDocument.location.reload()
  8729. } else {
  8730. _iframe.contentDocument.location.reload()
  8731. }
  8732. } else if (str == 'courseDesign') {
  8733. U.UF.DL.iframeLoad(_iframe, function () {
  8734. // _iframe.contentWindow.U.MD.O.W.load();
  8735. // _iframe.contentWindow.document.body.appendChild(script1);
  8736. _iframe.contentWindow.document.body.appendChild(script2);
  8737. _iframe.contentWindow.document.body.appendChild(script4);
  8738. })
  8739. } else if (str == 'mind') {
  8740. _iframe = _formdiv.querySelector('iframe')
  8741. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8742. //
  8743. _iframe.contentWindow.document.body.appendChild(script1);
  8744. _iframe.contentWindow.document.body.appendChild(script2);
  8745. _iframe.contentWindow.document.body.appendChild(script4);
  8746. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8747. })
  8748. if (onloadListener) {
  8749. _iframe.contentDocument.location.reload()
  8750. } else {
  8751. _iframe.contentDocument.location.reload()
  8752. }
  8753. } else if (str == 'whiteboard') {
  8754. _iframe = _formdiv.querySelector('iframe')
  8755. let onloadListener = _iframe.onload = () => {
  8756. _iframe.contentWindow.document.body.appendChild(script1);
  8757. _iframe.contentWindow.document.body.appendChild(script2);
  8758. _iframe.contentWindow.document.body.appendChild(script4);
  8759. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8760. };
  8761. // if (onloadListener) {
  8762. // try {
  8763. // _iframe.src += "?cocorobo="+new Date().getTime()
  8764. // _iframe.contentWindow.document.location.reload()
  8765. // } catch (error) {
  8766. // }
  8767. // } else {
  8768. // _iframe.contentDocument.location.reload()
  8769. // }
  8770. } else {
  8771. _iframe.onload = () => {
  8772. _iframe.contentWindow.document.body.appendChild(script1);
  8773. _iframe.contentWindow.document.body.appendChild(script2);
  8774. // _iframe.contentWindow.document.body.appendChild(script3);
  8775. _iframe.contentWindow.document.body.appendChild(script4);
  8776. };
  8777. }
  8778. _jie.onclick = async () => {
  8779. let text = ''
  8780. if (aTool == 1) {
  8781. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8782. } else if (aTool == 6) {
  8783. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8784. } else if (aTool == 3) {
  8785. text = await U.MD.D.I.getEditorContent(_iframe);
  8786. }
  8787. _loading.style.display = 'flex'
  8788. console.log(_loading);
  8789. var _ajs = _iframe.contentWindow.document.createElement("script");
  8790. _ajs.type = "text/javascript";
  8791. _ajs.innerHTML =
  8792. // 'console.log(' + _loading + ');\n' +
  8793. 'var _js = document.createElement("script");\n' +
  8794. '_js.type="text/javascript";\n' +
  8795. '_js.charset="UTF-8";\n' +
  8796. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8797. "_js.onload = function(){\n" +
  8798. ' var a = document.getElementsByTagName("img")\n' +
  8799. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8800. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8801. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8802. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8803. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8804. "beforeUpload_shishi(file," +
  8805. "'" +
  8806. _userid +
  8807. "'" +
  8808. ", " +
  8809. "'" +
  8810. _cid +
  8811. "'" +
  8812. ", " +
  8813. "'" +
  8814. _stage +
  8815. "'" +
  8816. ", " +
  8817. "'" +
  8818. _task +
  8819. "'" +
  8820. ", " +
  8821. "'" +
  8822. _tool +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. aTool +
  8831. "'" +
  8832. ", " +
  8833. "`" +
  8834. text +
  8835. "`" +
  8836. ")\n" +
  8837. " });\n" +
  8838. "}\n" +
  8839. "document.head.appendChild(_js);\n";
  8840. _iframe.contentWindow.document.head.appendChild(_ajs);
  8841. }
  8842. }
  8843. //U.MD.D.I.openClick(str);
  8844. //如果有任务栏信息
  8845. // if (_taskbar) {
  8846. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8847. // }
  8848. }
  8849. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8850. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8851. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8852. _userid = student.userid, //登录用户id
  8853. _username = student.student //用户名字
  8854. let _iframe;
  8855. let _cid = cid,
  8856. _stage = stage,
  8857. _task = task,
  8858. _tool = tool;
  8859. var _jie = $$("div", {
  8860. "style": {
  8861. "position": "absolute",
  8862. "bottom": "50px",
  8863. "right": "50px",
  8864. "zIndex": "9999",
  8865. "backgroundColor": "#2268bc",
  8866. "color": "#fff",
  8867. "padding": "12px 20px",
  8868. "cursor": "pointer",
  8869. "borderRadius": "4px",
  8870. },
  8871. "innerHTML": "提交作业"
  8872. })
  8873. let aTool = ''
  8874. let _loading = document.createElement('div')
  8875. _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;"
  8876. // _loading.id = "";
  8877. let _lchild = document.createElement('div')
  8878. let _limg = document.createElement('img')
  8879. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8880. _limg.style = "width: 26px;margin-right: 10px;"
  8881. _lchild.appendChild(_limg)
  8882. let _lspan = document.createElement('span')
  8883. _lspan.innerHTML = "上传中..."
  8884. _lchild.appendChild(_lspan)
  8885. _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%);"
  8886. _loading.appendChild(_lchild)
  8887. var _box = $$('div', {
  8888. "style": {
  8889. "position": "relative",
  8890. "width": "100%",
  8891. "height": "100%",
  8892. },
  8893. })
  8894. _box.appendChild(_loading)
  8895. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8896. switch (str) {
  8897. case "whiteboard":
  8898. aTool = 1;
  8899. _iframe = $$("iframe", {
  8900. "frameborder": "no",
  8901. "border": "0",
  8902. "scrolling ": "no",
  8903. "style": {
  8904. "cssText": "border:0;width:100%;height:100%"
  8905. },
  8906. "src": "https://beta.iwb.cocorobo.cn/"
  8907. })
  8908. _box.appendChild(_iframe);
  8909. _box.appendChild(_jie);
  8910. _formdiv = new U.UF.UI.form(
  8911. "电子白板-" + _username,
  8912. _box, {
  8913. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8914. "style": {
  8915. "width": "90%",
  8916. "height": "90%",
  8917. "overflow": 'hidden'
  8918. },
  8919. "onresize": function () { }
  8920. }, {
  8921. closecallback: function () { }
  8922. }, {
  8923. "style": {
  8924. "height": "36px"
  8925. }
  8926. }).form; //创建窗体
  8927. _taskbar = {
  8928. "id": str + _formdiv.id,
  8929. "style": {
  8930. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8931. },
  8932. "name": "电子白板",
  8933. "forms": _formdiv,
  8934. "click": function () {
  8935. U.MD.D.I.openApplication(str, obj, info);
  8936. }
  8937. }
  8938. break;
  8939. case "mind":
  8940. aTool = 3;
  8941. _iframe = $$("iframe", {
  8942. "frameborder": "no",
  8943. "border": "0",
  8944. "scrolling ": "no",
  8945. "style": {
  8946. "cssText": "border:0;width:100%;height:100%"
  8947. },
  8948. "src": "/kityminder-editor/dist/index.html"
  8949. })
  8950. _box.appendChild(_iframe);
  8951. _box.appendChild(_jie);
  8952. _formdiv = new U.UF.UI.form(
  8953. "思维导图-" + _username,
  8954. _box, { //"/jsmind/example/demo.html"
  8955. "id": "mind" + cid + stage + task + tool + _userid,
  8956. "style": {
  8957. "width": "90%",
  8958. "height": "90%",
  8959. "overflow": 'hidden'
  8960. },
  8961. "onresize": function () { }
  8962. }, {
  8963. closecallback: function () { }
  8964. }, {
  8965. "style": {
  8966. "height": "36px"
  8967. }
  8968. }).form; //创建窗体
  8969. _taskbar = {
  8970. "id": str + _formdiv.id,
  8971. "style": {
  8972. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8973. },
  8974. "name": "思维导图",
  8975. "forms": _formdiv,
  8976. "click": function () {
  8977. U.MD.D.I.openApplication(str, obj, info);
  8978. }
  8979. }
  8980. break;
  8981. case "MindMap":
  8982. aTool = 3;
  8983. _iframe = $$("iframe", {
  8984. "frameborder": "no",
  8985. "border": "0",
  8986. "scrolling ": "no",
  8987. "style": {
  8988. "cssText": "border:0;width:100%;height:100%"
  8989. },
  8990. "src": "//cloud.cocorobo.cn/mind/"
  8991. })
  8992. _box.appendChild(_iframe);
  8993. _box.appendChild(_jie);
  8994. _formdiv = new U.UF.UI.form(
  8995. "思维导图-" + _username,
  8996. _box, { //"/jsmind/example/demo.html"
  8997. "id": "mind" + cid + stage + task + tool + _userid,
  8998. "style": {
  8999. "width": "90%",
  9000. "height": "90%",
  9001. "overflow": 'hidden'
  9002. },
  9003. "onresize": function () { }
  9004. }, {
  9005. closecallback: function () { }
  9006. }, {
  9007. "style": {
  9008. "height": "36px"
  9009. }
  9010. }).form; //创建窗体
  9011. _taskbar = {
  9012. "id": str + _formdiv.id,
  9013. "style": {
  9014. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9015. },
  9016. "name": "思维导图",
  9017. "forms": _formdiv,
  9018. "click": function () {
  9019. U.MD.D.I.openApplication(str, obj, info);
  9020. }
  9021. }
  9022. break;
  9023. case "doc":
  9024. aTool = 6;
  9025. _iframe = $$("iframe", {
  9026. "frameborder": "no",
  9027. "border": "0",
  9028. "scrolling ": "no",
  9029. "style": {
  9030. "cssText": "border:0;width:100%;height:100%"
  9031. },
  9032. "src": "/Office/Word/WordEditArea.htm"
  9033. })
  9034. _box.appendChild(_iframe);
  9035. _box.appendChild(_jie);
  9036. _formdiv = new U.UF.UI.form(
  9037. "协同文档-" + _username,
  9038. _box, {
  9039. "id": "doc" + cid + stage + task + tool + _userid,
  9040. "style": {
  9041. "width": "90%",
  9042. "height": "90%",
  9043. "overflow": 'hidden'
  9044. },
  9045. "onresize": function () { }
  9046. }, {
  9047. closecallback: function () { }
  9048. }, {
  9049. "style": {
  9050. "height": "36px"
  9051. }
  9052. }).form; //创建窗体
  9053. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9054. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9055. })
  9056. _taskbar = {
  9057. "id": str + _formdiv.id,
  9058. "style": {
  9059. "backgroundImage": "url(/img/icon/doc.png)"
  9060. },
  9061. "name": "协同文档",
  9062. "forms": _formdiv,
  9063. "click": function () {
  9064. U.MD.D.I.openApplication(str, obj, info);
  9065. }
  9066. }
  9067. break;
  9068. case "mindNetwork": //好友打开
  9069. aTool = 7;
  9070. _iframe = $$("iframe", {
  9071. "webkitallowfullscreen": "",
  9072. "mozallowfullscreen": "",
  9073. "allowfullscreen": "",
  9074. "frameborder": "no",
  9075. "border": "0",
  9076. "scrolling ": "no",
  9077. "style": {
  9078. "cssText": "border:0; width:100%; height:100%;"
  9079. },
  9080. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9081. })
  9082. _box.appendChild(_iframe);
  9083. _box.appendChild(_jie);
  9084. _formdiv = new U.UF.UI.form(
  9085. "思维网格-" + _username,
  9086. _box, {
  9087. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9088. "style": {
  9089. "width": "90%",
  9090. "height": "90%",
  9091. "overflow": 'hidden'
  9092. },
  9093. "onresize": function () { }
  9094. }, {
  9095. closecallback: function () { }
  9096. }, {
  9097. "style": {
  9098. "height": "36px"
  9099. }
  9100. }).form; //创建窗体
  9101. _taskbar = {
  9102. "id": str + _formdiv.id,
  9103. "style": {
  9104. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9105. },
  9106. "name": "思维网格",
  9107. "forms": _formdiv,
  9108. "click": function () {
  9109. U.MD.D.I.openApplication(str, obj, info);
  9110. }
  9111. }
  9112. break;
  9113. case "courseDesign":
  9114. _iframe = $$("iframe", {
  9115. "webkitallowfullscreen": "",
  9116. "mozallowfullscreen": "",
  9117. "allowfullscreen": "",
  9118. "frameborder": "no",
  9119. "border": "0",
  9120. "scrolling ": "no",
  9121. "style": {
  9122. "cssText": "border:0; width:100%; height:100%;"
  9123. },
  9124. "src": "/course-design-vue"
  9125. })
  9126. _box.appendChild(_iframe);
  9127. _box.appendChild(_jie);
  9128. _formdiv = new U.UF.UI.form(
  9129. "项目设计-" + _username,
  9130. _box, {
  9131. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9132. "style": {
  9133. "width": "90%",
  9134. "height": "90%",
  9135. "overflow": 'hidden'
  9136. },
  9137. "onresize": function () { }
  9138. }, {
  9139. closecallback: function () { }
  9140. }, {
  9141. "style": {
  9142. "height": "36px"
  9143. }
  9144. }).form; //创建窗体
  9145. _taskbar = {
  9146. "id": str + _formdiv.id,
  9147. "style": {
  9148. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9149. },
  9150. "name": "项目设计",
  9151. "forms": _formdiv,
  9152. "click": function () {
  9153. U.MD.D.I.openApplication(str, obj, info);
  9154. }
  9155. }
  9156. break;
  9157. }
  9158. const script1 = document.createElement("script");
  9159. script1.type = "text/javascript";
  9160. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9161. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9162. const script2 = document.createElement("script");
  9163. script2.type = "text/javascript";
  9164. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9165. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9166. const script3 = document.createElement("script");
  9167. script3.type = "text/javascript";
  9168. script3.charset = "UTF-8";
  9169. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9170. const script4 = document.createElement("script");
  9171. script4.type = "text/javascript";
  9172. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9173. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9174. if (_iframe) {
  9175. if (str == 'doc') {
  9176. _iframe = _formdiv.querySelector('iframe')
  9177. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9178. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9179. _iframe.contentWindow.document.body.appendChild(script1);
  9180. _iframe.contentWindow.document.body.appendChild(script2);
  9181. // _iframe.contentWindow.document.body.appendChild(script3);
  9182. _iframe.contentWindow.document.body.appendChild(script4);
  9183. })
  9184. if (onloadListener) {
  9185. _iframe.contentDocument.location.reload()
  9186. } else {
  9187. _iframe.contentDocument.location.reload()
  9188. }
  9189. } else if (str == 'courseDesign') {
  9190. U.UF.DL.iframeLoad(_iframe, function () {
  9191. // _iframe.contentWindow.U.MD.O.W.load();
  9192. // _iframe.contentWindow.document.body.appendChild(script1);
  9193. _iframe.contentWindow.document.body.appendChild(script2);
  9194. _iframe.contentWindow.document.body.appendChild(script4);
  9195. })
  9196. } else if (str == 'mind') {
  9197. _iframe = _formdiv.querySelector('iframe')
  9198. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9199. //
  9200. _iframe.contentWindow.document.body.appendChild(script1);
  9201. _iframe.contentWindow.document.body.appendChild(script2);
  9202. _iframe.contentWindow.document.body.appendChild(script4);
  9203. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9204. })
  9205. if (onloadListener) {
  9206. _iframe.contentDocument.location.reload()
  9207. } else {
  9208. _iframe.contentDocument.location.reload()
  9209. }
  9210. } else if (str == 'whiteboard') {
  9211. _iframe = _formdiv.querySelector('iframe')
  9212. let onloadListener = _iframe.onload = () => {
  9213. _iframe.contentWindow.document.body.appendChild(script1);
  9214. _iframe.contentWindow.document.body.appendChild(script2);
  9215. _iframe.contentWindow.document.body.appendChild(script4);
  9216. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9217. };
  9218. // if (onloadListener) {
  9219. // try {
  9220. // _iframe.src += "?cocorobo="+new Date().getTime()
  9221. // _iframe.contentWindow.document.location.reload()
  9222. // } catch (error) {
  9223. // }
  9224. // } else {
  9225. // _iframe.contentDocument.location.reload()
  9226. // }
  9227. } else {
  9228. _iframe.onload = () => {
  9229. _iframe.contentWindow.document.body.appendChild(script1);
  9230. _iframe.contentWindow.document.body.appendChild(script2);
  9231. // _iframe.contentWindow.document.body.appendChild(script3);
  9232. _iframe.contentWindow.document.body.appendChild(script4);
  9233. };
  9234. }
  9235. _jie.onclick = async () => {
  9236. let text = ''
  9237. if (aTool == 1) {
  9238. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9239. } else if (aTool == 6) {
  9240. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9241. } else if (aTool == 3) {
  9242. text = await U.MD.D.I.getEditorContent(_iframe);
  9243. }
  9244. _loading.style.display = 'flex'
  9245. console.log(_loading);
  9246. var _ajs = _iframe.contentWindow.document.createElement("script");
  9247. _ajs.type = "text/javascript";
  9248. _ajs.innerHTML =
  9249. // 'console.log(' + _loading + ');\n' +
  9250. 'var _js = document.createElement("script");\n' +
  9251. '_js.type="text/javascript";\n' +
  9252. '_js.charset="UTF-8";\n' +
  9253. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9254. "_js.onload = function(){\n" +
  9255. ' var a = document.getElementsByTagName("img")\n' +
  9256. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9257. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9258. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9259. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9260. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9261. "beforeUpload_shishi(file," +
  9262. "'" +
  9263. _userid +
  9264. "'" +
  9265. ", " +
  9266. "'" +
  9267. _cid +
  9268. "'" +
  9269. ", " +
  9270. "'" +
  9271. _stage +
  9272. "'" +
  9273. ", " +
  9274. "'" +
  9275. _task +
  9276. "'" +
  9277. ", " +
  9278. "'" +
  9279. _tool +
  9280. "'" +
  9281. ", " +
  9282. "'" +
  9283. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9284. "'" +
  9285. ", " +
  9286. "'" +
  9287. aTool +
  9288. "'" +
  9289. ", " +
  9290. "`" +
  9291. text +
  9292. "`" +
  9293. ")\n" +
  9294. " });\n" +
  9295. "}\n" +
  9296. "document.head.appendChild(_js);\n";
  9297. _iframe.contentWindow.document.head.appendChild(_ajs);
  9298. }
  9299. }
  9300. }
  9301. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9302. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9303. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9304. _userid = student.userid, //登录用户id
  9305. _username = student.student //用户名字
  9306. let _iframe;
  9307. let _cid = cid,
  9308. _stage = stage,
  9309. _task = task,
  9310. _tool = tool;
  9311. var _jie = $$("div", {
  9312. "style": {
  9313. "position": "absolute",
  9314. "bottom": "50px",
  9315. "right": "50px",
  9316. "zIndex": "9999",
  9317. "backgroundColor": "#2268bc",
  9318. "color": "#fff",
  9319. "padding": "12px 20px",
  9320. "cursor": "pointer",
  9321. "borderRadius": "4px",
  9322. },
  9323. "innerHTML": "提交作业"
  9324. })
  9325. let aTool = ''
  9326. let _loading = document.createElement('div')
  9327. _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;"
  9328. // _loading.id = "";
  9329. let _lchild = document.createElement('div')
  9330. let _limg = document.createElement('img')
  9331. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9332. _limg.style = "width: 26px;margin-right: 10px;"
  9333. _lchild.appendChild(_limg)
  9334. let _lspan = document.createElement('span')
  9335. _lspan.innerHTML = "上传中..."
  9336. _lchild.appendChild(_lspan)
  9337. _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%);"
  9338. _loading.appendChild(_lchild)
  9339. var _box = $$('div', {
  9340. "style": {
  9341. "position": "relative",
  9342. "width": "100%",
  9343. "height": "100%",
  9344. },
  9345. })
  9346. _box.appendChild(_loading)
  9347. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9348. switch (str) {
  9349. case "whiteboard":
  9350. aTool = 1;
  9351. _iframe = $$("iframe", {
  9352. "frameborder": "no",
  9353. "border": "0",
  9354. "scrolling ": "no",
  9355. "style": {
  9356. "cssText": "border:0;width:100%;height:100%"
  9357. },
  9358. "src": "https://beta.iwb.cocorobo.cn/"
  9359. })
  9360. _box.appendChild(_iframe);
  9361. _box.appendChild(_jie);
  9362. _formdiv = new U.UF.UI.form(
  9363. "电子白板-" + _username,
  9364. _box, {
  9365. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9366. "style": {
  9367. "width": "90%",
  9368. "height": "90%",
  9369. "overflow": 'hidden'
  9370. },
  9371. "onresize": function () { }
  9372. }, {
  9373. closecallback: function () { }
  9374. }, {
  9375. "style": {
  9376. "height": "36px"
  9377. }
  9378. }).form; //创建窗体
  9379. _taskbar = {
  9380. "id": str + _formdiv.id,
  9381. "style": {
  9382. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9383. },
  9384. "name": "电子白板",
  9385. "forms": _formdiv,
  9386. "click": function () {
  9387. U.MD.D.I.openApplication(str, obj, info);
  9388. }
  9389. }
  9390. break;
  9391. case "mind":
  9392. aTool = 3;
  9393. _iframe = $$("iframe", {
  9394. "frameborder": "no",
  9395. "border": "0",
  9396. "scrolling ": "no",
  9397. "style": {
  9398. "cssText": "border:0;width:100%;height:100%"
  9399. },
  9400. "src": "/kityminder-editor/dist/index.html"
  9401. })
  9402. _box.appendChild(_iframe);
  9403. _box.appendChild(_jie);
  9404. _formdiv = new U.UF.UI.form(
  9405. "思维导图-" + _username,
  9406. _box, { //"/jsmind/example/demo.html"
  9407. "id": "mind" + cid + stage + task + tool + _userid,
  9408. "style": {
  9409. "width": "90%",
  9410. "height": "90%",
  9411. "overflow": 'hidden'
  9412. },
  9413. "onresize": function () { }
  9414. }, {
  9415. closecallback: function () { }
  9416. }, {
  9417. "style": {
  9418. "height": "36px"
  9419. }
  9420. }).form; //创建窗体
  9421. _taskbar = {
  9422. "id": str + _formdiv.id,
  9423. "style": {
  9424. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9425. },
  9426. "name": "思维导图",
  9427. "forms": _formdiv,
  9428. "click": function () {
  9429. U.MD.D.I.openApplication(str, obj, info);
  9430. }
  9431. }
  9432. break;
  9433. case "MindMap":
  9434. aTool = 3;
  9435. _iframe = $$("iframe", {
  9436. "frameborder": "no",
  9437. "border": "0",
  9438. "scrolling ": "no",
  9439. "style": {
  9440. "cssText": "border:0;width:100%;height:100%"
  9441. },
  9442. "src": "//cloud.cocorobo.cn/mind/"
  9443. })
  9444. _box.appendChild(_iframe);
  9445. _box.appendChild(_jie);
  9446. _formdiv = new U.UF.UI.form(
  9447. "思维导图-" + _username,
  9448. _box, { //"/jsmind/example/demo.html"
  9449. "id": "mind" + cid + stage + task + tool + _userid,
  9450. "style": {
  9451. "width": "90%",
  9452. "height": "90%",
  9453. "overflow": 'hidden'
  9454. },
  9455. "onresize": function () { }
  9456. }, {
  9457. closecallback: function () { }
  9458. }, {
  9459. "style": {
  9460. "height": "36px"
  9461. }
  9462. }).form; //创建窗体
  9463. _taskbar = {
  9464. "id": str + _formdiv.id,
  9465. "style": {
  9466. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9467. },
  9468. "name": "思维导图",
  9469. "forms": _formdiv,
  9470. "click": function () {
  9471. U.MD.D.I.openApplication(str, obj, info);
  9472. }
  9473. }
  9474. break;
  9475. case "doc":
  9476. aTool = 6;
  9477. _iframe = $$("iframe", {
  9478. "frameborder": "no",
  9479. "border": "0",
  9480. "scrolling ": "no",
  9481. "style": {
  9482. "cssText": "border:0;width:100%;height:100%"
  9483. },
  9484. "src": "/Office/Word/WordEditArea.htm"
  9485. })
  9486. _box.appendChild(_iframe);
  9487. _box.appendChild(_jie);
  9488. _formdiv = new U.UF.UI.form(
  9489. "协同文档-" + _username,
  9490. _box, {
  9491. "id": "doc" + cid + stage + task + tool + _userid,
  9492. "style": {
  9493. "width": "90%",
  9494. "height": "90%",
  9495. "overflow": 'hidden'
  9496. },
  9497. "onresize": function () { }
  9498. }, {
  9499. closecallback: function () { }
  9500. }, {
  9501. "style": {
  9502. "height": "36px"
  9503. }
  9504. }).form; //创建窗体
  9505. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9506. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9507. })
  9508. _taskbar = {
  9509. "id": str + _formdiv.id,
  9510. "style": {
  9511. "backgroundImage": "url(/img/icon/doc.png)"
  9512. },
  9513. "name": "协同文档",
  9514. "forms": _formdiv,
  9515. "click": function () {
  9516. U.MD.D.I.openApplication(str, obj, info);
  9517. }
  9518. }
  9519. break;
  9520. case "mindNetwork": //好友打开
  9521. aTool = 7;
  9522. _iframe = $$("iframe", {
  9523. "webkitallowfullscreen": "",
  9524. "mozallowfullscreen": "",
  9525. "allowfullscreen": "",
  9526. "frameborder": "no",
  9527. "border": "0",
  9528. "scrolling ": "no",
  9529. "style": {
  9530. "cssText": "border:0; width:100%; height:100%;"
  9531. },
  9532. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9533. })
  9534. _box.appendChild(_iframe);
  9535. _box.appendChild(_jie);
  9536. _formdiv = new U.UF.UI.form(
  9537. "思维网格-" + _username,
  9538. _box, {
  9539. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9540. "style": {
  9541. "width": "90%",
  9542. "height": "90%",
  9543. "overflow": 'hidden'
  9544. },
  9545. "onresize": function () { }
  9546. }, {
  9547. closecallback: function () { }
  9548. }, {
  9549. "style": {
  9550. "height": "36px"
  9551. }
  9552. }).form; //创建窗体
  9553. _taskbar = {
  9554. "id": str + _formdiv.id,
  9555. "style": {
  9556. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9557. },
  9558. "name": "思维网格",
  9559. "forms": _formdiv,
  9560. "click": function () {
  9561. U.MD.D.I.openApplication(str, obj, info);
  9562. }
  9563. }
  9564. break;
  9565. case "courseDesign":
  9566. _iframe = $$("iframe", {
  9567. "webkitallowfullscreen": "",
  9568. "mozallowfullscreen": "",
  9569. "allowfullscreen": "",
  9570. "frameborder": "no",
  9571. "border": "0",
  9572. "scrolling ": "no",
  9573. "style": {
  9574. "cssText": "border:0; width:100%; height:100%;"
  9575. },
  9576. "src": "/course-design-vue"
  9577. })
  9578. _box.appendChild(_iframe);
  9579. _box.appendChild(_jie);
  9580. _formdiv = new U.UF.UI.form(
  9581. "项目设计-" + _username,
  9582. _box, {
  9583. "id": "courseDesign" + cid + stage + task + tool + _userid,
  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/courseDesign.png)"
  9601. },
  9602. "name": "项目设计",
  9603. "forms": _formdiv,
  9604. "click": function () {
  9605. U.MD.D.I.openApplication(str, obj, info);
  9606. }
  9607. }
  9608. break;
  9609. }
  9610. const script1 = document.createElement("script");
  9611. script1.type = "text/javascript";
  9612. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9613. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9614. const script2 = document.createElement("script");
  9615. script2.type = "text/javascript";
  9616. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9617. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9618. const script3 = document.createElement("script");
  9619. script3.type = "text/javascript";
  9620. script3.charset = "UTF-8";
  9621. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9622. const script4 = document.createElement("script");
  9623. script4.type = "text/javascript";
  9624. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9625. script4.src = window.origin + "/js/Common/jietu2E.js";
  9626. if (_iframe) {
  9627. if (str == 'doc') {
  9628. _iframe = _formdiv.querySelector('iframe')
  9629. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9630. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9631. _iframe.contentWindow.document.body.appendChild(script1);
  9632. _iframe.contentWindow.document.body.appendChild(script2);
  9633. // _iframe.contentWindow.document.body.appendChild(script3);
  9634. _iframe.contentWindow.document.body.appendChild(script4);
  9635. })
  9636. if (onloadListener) {
  9637. _iframe.contentDocument.location.reload()
  9638. } else {
  9639. _iframe.contentDocument.location.reload()
  9640. }
  9641. } else if (str == 'courseDesign') {
  9642. U.UF.DL.iframeLoad(_iframe, function () {
  9643. // _iframe.contentWindow.U.MD.O.W.load();
  9644. // _iframe.contentWindow.document.body.appendChild(script1);
  9645. _iframe.contentWindow.document.body.appendChild(script2);
  9646. _iframe.contentWindow.document.body.appendChild(script4);
  9647. })
  9648. } else if (str == 'mind') {
  9649. _iframe = _formdiv.querySelector('iframe')
  9650. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9651. //
  9652. _iframe.contentWindow.document.body.appendChild(script1);
  9653. _iframe.contentWindow.document.body.appendChild(script2);
  9654. _iframe.contentWindow.document.body.appendChild(script4);
  9655. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9656. })
  9657. if (onloadListener) {
  9658. _iframe.contentDocument.location.reload()
  9659. } else {
  9660. _iframe.contentDocument.location.reload()
  9661. }
  9662. } else if (str == 'whiteboard') {
  9663. _iframe = _formdiv.querySelector('iframe')
  9664. let onloadListener = _iframe.onload = () => {
  9665. _iframe.contentWindow.document.body.appendChild(script1);
  9666. _iframe.contentWindow.document.body.appendChild(script2);
  9667. _iframe.contentWindow.document.body.appendChild(script4);
  9668. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9669. };
  9670. // if (onloadListener) {
  9671. // try {
  9672. // _iframe.src += "?cocorobo="+new Date().getTime()
  9673. // _iframe.contentWindow.document.location.reload()
  9674. // } catch (error) {
  9675. // }
  9676. // } else {
  9677. // _iframe.contentDocument.location.reload()
  9678. // }
  9679. } else {
  9680. _iframe.onload = () => {
  9681. _iframe.contentWindow.document.body.appendChild(script1);
  9682. _iframe.contentWindow.document.body.appendChild(script2);
  9683. // _iframe.contentWindow.document.body.appendChild(script3);
  9684. _iframe.contentWindow.document.body.appendChild(script4);
  9685. };
  9686. }
  9687. _jie.onclick = async () => {
  9688. let text = ''
  9689. if (aTool == 1) {
  9690. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9691. } else if (aTool == 6) {
  9692. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9693. } else if (aTool == 3) {
  9694. text = await U.MD.D.I.getEditorContent(_iframe);
  9695. }
  9696. _loading.style.display = 'flex'
  9697. console.log(_loading);
  9698. var _ajs = _iframe.contentWindow.document.createElement("script");
  9699. _ajs.type = "text/javascript";
  9700. _ajs.innerHTML =
  9701. // 'console.log(' + _loading + ');\n' +
  9702. 'var _js = document.createElement("script");\n' +
  9703. '_js.type="text/javascript";\n' +
  9704. '_js.charset="UTF-8";\n' +
  9705. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9706. "_js.onload = function(){\n" +
  9707. ' var a = document.getElementsByTagName("img")\n' +
  9708. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9709. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9710. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9711. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9712. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9713. "beforeUpload_shishi(file," +
  9714. "'" +
  9715. _userid +
  9716. "'" +
  9717. ", " +
  9718. "'" +
  9719. _cid +
  9720. "'" +
  9721. ", " +
  9722. "'" +
  9723. _stage +
  9724. "'" +
  9725. ", " +
  9726. "'" +
  9727. _task +
  9728. "'" +
  9729. ", " +
  9730. "'" +
  9731. _tool +
  9732. "'" +
  9733. ", " +
  9734. "'" +
  9735. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9736. "'" +
  9737. ", " +
  9738. "'" +
  9739. aTool +
  9740. "'" +
  9741. ", " +
  9742. "`" +
  9743. text +
  9744. "`" +
  9745. ")\n" +
  9746. " });\n" +
  9747. "}\n" +
  9748. "document.head.appendChild(_js);\n";
  9749. _iframe.contentWindow.document.head.appendChild(_ajs);
  9750. }
  9751. }
  9752. }
  9753. U.MD.D.I.getEditorContent = function (iframe) {
  9754. return new Promise((resolve, reject) => {
  9755. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9756. console.log(content);
  9757. resolve(content)
  9758. });
  9759. });
  9760. }
  9761. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9762. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9763. // if (res.value[0].length > 0) {
  9764. // // resolve(res.value[0][0].text);
  9765. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9766. // $(fileInput).val('');
  9767. // });
  9768. // }
  9769. // }, [], { "type": "GET", "withCredentials": true });
  9770. var xmlhttp;
  9771. var Mac, Sn, DeviceId
  9772. if (window.XMLHttpRequest) {
  9773. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9774. xmlhttp = new XMLHttpRequest();
  9775. } else {
  9776. // IE6, IE5 浏览器执行代码
  9777. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9778. }
  9779. xmlhttp.onreadystatechange = function () {
  9780. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9781. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9782. // resolve(res.value[0][0].text);
  9783. if (type == '2') {
  9784. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9785. } else if (type == '3') {
  9786. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9787. }
  9788. } else {
  9789. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9790. }
  9791. }
  9792. }
  9793. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9794. xmlhttp.send();
  9795. }
  9796. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9797. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9798. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9799. _userinfo = US.userInfo, //登录用户信息
  9800. _userid = US.userInfo.userid //登录用户id
  9801. let _iframe;
  9802. let _cid = cid,
  9803. _stage = stage,
  9804. _task = task,
  9805. _tool = tool;
  9806. var _jie = $$("div", {
  9807. "style": {
  9808. "position": "absolute",
  9809. "bottom": "50px",
  9810. "right": "50px",
  9811. "zIndex": "9999",
  9812. "backgroundColor": "#2268bc",
  9813. "color": "#fff",
  9814. "padding": "12px 20px",
  9815. "cursor": "pointer",
  9816. "borderRadius": "4px",
  9817. },
  9818. "innerHTML": "确认并提交"
  9819. })
  9820. let aTool = ''
  9821. let _loading = document.createElement('div')
  9822. _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;"
  9823. // _loading.id = "";
  9824. let _lchild = document.createElement('div')
  9825. let _limg = document.createElement('img')
  9826. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9827. _limg.style = "width: 26px;margin-right: 10px;"
  9828. _lchild.appendChild(_limg)
  9829. let _lspan = document.createElement('span')
  9830. _lspan.innerHTML = "上传中..."
  9831. _lchild.appendChild(_lspan)
  9832. _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%);"
  9833. _loading.appendChild(_lchild)
  9834. var _box = $$('div', {
  9835. "style": {
  9836. "position": "relative",
  9837. "width": "100%",
  9838. "height": "100%",
  9839. },
  9840. })
  9841. _box.appendChild(_loading)
  9842. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9843. switch (str) {
  9844. case "whiteboard":
  9845. aTool = 1;
  9846. _iframe = $$("iframe", {
  9847. "frameborder": "no",
  9848. "border": "0",
  9849. "scrolling ": "no",
  9850. "style": {
  9851. "cssText": "border:0;width:100%;height:100%"
  9852. },
  9853. "src": "https://beta.iwb.cocorobo.cn/"
  9854. })
  9855. _box.appendChild(_iframe);
  9856. _box.appendChild(_jie);
  9857. _formdiv = new U.UF.UI.form(
  9858. "电子白板",
  9859. _box, {
  9860. "id": "whiteboards" + cid + stage + task + tool,
  9861. "style": {
  9862. "width": "90%",
  9863. "height": "90%",
  9864. "overflow": 'hidden'
  9865. },
  9866. "onresize": function () { }
  9867. }, {
  9868. closecallback: function () { }
  9869. }, {
  9870. "style": {
  9871. "height": "36px"
  9872. }
  9873. }).form; //创建窗体
  9874. _taskbar = {
  9875. "id": str + _formdiv.id,
  9876. "style": {
  9877. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9878. },
  9879. "name": "电子白板",
  9880. "forms": _formdiv,
  9881. "click": function () {
  9882. U.MD.D.I.openApplication(str, obj, info);
  9883. }
  9884. }
  9885. break;
  9886. case "mind":
  9887. aTool = 3;
  9888. _iframe = $$("iframe", {
  9889. "frameborder": "no",
  9890. "border": "0",
  9891. "scrolling ": "no",
  9892. "style": {
  9893. "cssText": "border:0;width:100%;height:100%"
  9894. },
  9895. "src": "/kityminder-editor/dist/index.html"
  9896. });
  9897. _box.appendChild(_iframe);
  9898. _box.appendChild(_jie);
  9899. _formdiv = new U.UF.UI.form(
  9900. "思维导图",
  9901. _box, { //"/jsmind/example/demo.html"
  9902. "id": "minds" + cid + stage + task + tool,
  9903. "style": {
  9904. "width": "90%",
  9905. "height": "90%",
  9906. "overflow": 'hidden'
  9907. },
  9908. "onresize": function () { }
  9909. }, {
  9910. closecallback: function () { }
  9911. }, {
  9912. "style": {
  9913. "height": "36px"
  9914. }
  9915. }).form; //创建窗体
  9916. _taskbar = {
  9917. "id": str + _formdiv.id,
  9918. "style": {
  9919. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9920. },
  9921. "name": "思维导图",
  9922. "forms": _formdiv,
  9923. "click": function () {
  9924. U.MD.D.I.openApplication(str, obj, info);
  9925. }
  9926. }
  9927. break;
  9928. case "doc":
  9929. aTool = 6;
  9930. _iframe = $$("iframe", {
  9931. "frameborder": "no",
  9932. "border": "0",
  9933. "scrolling ": "no",
  9934. "style": {
  9935. "cssText": "border:0;width:100%;height:100%"
  9936. },
  9937. "src": "/Office/Word/WordEditArea.htm"
  9938. })
  9939. _box.appendChild(_iframe);
  9940. _box.appendChild(_jie);
  9941. _formdiv = new U.UF.UI.form(
  9942. "协同文档",
  9943. _box, {
  9944. "id": "docs" + cid + stage + task + tool,
  9945. "style": {
  9946. "width": "90%",
  9947. "height": "90%",
  9948. "overflow": 'hidden'
  9949. },
  9950. "onresize": function () { }
  9951. }, {
  9952. closecallback: function () { }
  9953. }, {
  9954. "style": {
  9955. "height": "36px"
  9956. }
  9957. }).form; //创建窗体
  9958. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9959. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9960. })
  9961. _taskbar = {
  9962. "id": str + _formdiv.id,
  9963. "style": {
  9964. "backgroundImage": "url(/img/icon/doc.png)"
  9965. },
  9966. "name": "协同文档",
  9967. "forms": _formdiv,
  9968. "click": function () {
  9969. U.MD.D.I.openApplication(str, obj, info);
  9970. }
  9971. }
  9972. break;
  9973. }
  9974. const script1 = document.createElement("script");
  9975. script1.type = "text/javascript";
  9976. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9977. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9978. const script2 = document.createElement("script");
  9979. script2.type = "text/javascript";
  9980. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9981. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9982. const script3 = document.createElement("script");
  9983. script3.type = "text/javascript";
  9984. script3.charset = "UTF-8";
  9985. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9986. const script4 = document.createElement("script");
  9987. script4.type = "text/javascript";
  9988. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9989. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9990. if (_iframe) {
  9991. if (str == 'doc') {
  9992. _iframe = _formdiv.querySelector('iframe')
  9993. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9994. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9995. _iframe.contentWindow.document.body.appendChild(script1);
  9996. _iframe.contentWindow.document.body.appendChild(script2);
  9997. // _iframe.contentWindow.document.body.appendChild(script3);
  9998. _iframe.contentWindow.document.body.appendChild(script4);
  9999. })
  10000. if (onloadListener) {
  10001. _iframe.contentDocument.location.reload()
  10002. } else {
  10003. _iframe.contentDocument.location.reload()
  10004. }
  10005. } else if (str == 'mind') {
  10006. _iframe = _formdiv.querySelector('iframe')
  10007. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10008. _iframe.contentWindow.document.body.appendChild(script1);
  10009. _iframe.contentWindow.document.body.appendChild(script2);
  10010. _iframe.contentWindow.document.body.appendChild(script4);
  10011. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10012. })
  10013. if (onloadListener) {
  10014. _iframe.contentDocument.location.reload()
  10015. } else {
  10016. _iframe.contentDocument.location.reload()
  10017. }
  10018. } else {
  10019. _iframe.onload = () => {
  10020. _iframe.contentWindow.document.body.appendChild(script1);
  10021. _iframe.contentWindow.document.body.appendChild(script2);
  10022. // _iframe.contentWindow.document.body.appendChild(script3);
  10023. _iframe.contentWindow.document.body.appendChild(script4);
  10024. };
  10025. }
  10026. _jie.onclick = async () => {
  10027. let text = ''
  10028. if (aTool == 6) {
  10029. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10030. } else if (aTool == 3) {
  10031. text = await U.MD.D.I.getEditorContent(_iframe);
  10032. }
  10033. _loading.style.display = 'flex'
  10034. console.log(_loading);
  10035. var _ajs = _iframe.contentWindow.document.createElement("script");
  10036. _ajs.type = "text/javascript";
  10037. _ajs.innerHTML =
  10038. // 'console.log(' + _loading + ');\n' +
  10039. 'var _js = document.createElement("script");\n' +
  10040. '_js.type="text/javascript";\n' +
  10041. '_js.charset="UTF-8";\n' +
  10042. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10043. "_js.onload = function(){\n" +
  10044. ' var a = document.getElementsByTagName("img")\n' +
  10045. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10046. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10047. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10048. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10049. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10050. "beforeUpload_shishi(file," +
  10051. "'" +
  10052. _userid +
  10053. "'" +
  10054. ", " +
  10055. "'" +
  10056. _cid +
  10057. "'" +
  10058. ", " +
  10059. "'" +
  10060. _stage +
  10061. "'" +
  10062. ", " +
  10063. "'" +
  10064. _task +
  10065. "'" +
  10066. ", " +
  10067. "'" +
  10068. _tool +
  10069. "'" +
  10070. ", " +
  10071. "'" +
  10072. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10073. "'" +
  10074. ", " +
  10075. "'" +
  10076. aTool +
  10077. "'" +
  10078. ", " +
  10079. "`" +
  10080. text +
  10081. "`" +
  10082. ")\n" +
  10083. " });\n" +
  10084. "}\n" +
  10085. "document.head.appendChild(_js);\n";
  10086. _iframe.contentWindow.document.head.appendChild(_ajs);
  10087. }
  10088. }
  10089. //U.MD.D.I.openClick(str);
  10090. //如果有任务栏信息
  10091. // if (_taskbar) {
  10092. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10093. // }
  10094. }
  10095. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10096. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10097. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10098. _userinfo = US.userInfo, //登录用户信息
  10099. _userid = US.userInfo.userid //登录用户id
  10100. let _iframe;
  10101. let _cid = cid,
  10102. _stage = stage,
  10103. _task = task,
  10104. _tool = tool;
  10105. var _jie = $$("div", {
  10106. "style": {
  10107. "position": "absolute",
  10108. "bottom": "50px",
  10109. "right": "50px",
  10110. "zIndex": "9999",
  10111. "backgroundColor": "#2268bc",
  10112. "color": "#fff",
  10113. "padding": "12px 20px",
  10114. "cursor": "pointer",
  10115. "borderRadius": "4px",
  10116. },
  10117. "innerHTML": "确认并提交"
  10118. })
  10119. let aTool = ''
  10120. let _loading = document.createElement('div')
  10121. _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;"
  10122. // _loading.id = "";
  10123. let _lchild = document.createElement('div')
  10124. let _limg = document.createElement('img')
  10125. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10126. _limg.style = "width: 26px;margin-right: 10px;"
  10127. _lchild.appendChild(_limg)
  10128. let _lspan = document.createElement('span')
  10129. _lspan.innerHTML = "上传中..."
  10130. _lchild.appendChild(_lspan)
  10131. _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%);"
  10132. _loading.appendChild(_lchild)
  10133. var _box = $$('div', {
  10134. "style": {
  10135. "position": "relative",
  10136. "width": "100%",
  10137. "height": "100%",
  10138. },
  10139. })
  10140. _box.appendChild(_loading)
  10141. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10142. switch (str) {
  10143. case "whiteboard":
  10144. aTool = 1;
  10145. _iframe = $$("iframe", {
  10146. "frameborder": "no",
  10147. "border": "0",
  10148. "scrolling ": "no",
  10149. "style": {
  10150. "cssText": "border:0;width:100%;height:100%"
  10151. },
  10152. "src": "https://beta.iwb.cocorobo.cn/"
  10153. })
  10154. _box.appendChild(_iframe);
  10155. _box.appendChild(_jie);
  10156. _formdiv = new U.UF.UI.form(
  10157. "电子白板",
  10158. _box, {
  10159. "id": "whiteboards" + cid + stage + task + tool,
  10160. "style": {
  10161. "width": "90%",
  10162. "height": "90%",
  10163. "overflow": 'hidden'
  10164. },
  10165. "onresize": function () { }
  10166. }, {
  10167. closecallback: function () { }
  10168. }, {
  10169. "style": {
  10170. "height": "36px"
  10171. }
  10172. }).form; //创建窗体
  10173. _taskbar = {
  10174. "id": str + _formdiv.id,
  10175. "style": {
  10176. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10177. },
  10178. "name": "电子白板",
  10179. "forms": _formdiv,
  10180. "click": function () {
  10181. U.MD.D.I.openApplication(str, obj, info);
  10182. }
  10183. }
  10184. break;
  10185. case "mind":
  10186. aTool = 3;
  10187. _iframe = $$("iframe", {
  10188. "frameborder": "no",
  10189. "border": "0",
  10190. "scrolling ": "no",
  10191. "style": {
  10192. "cssText": "border:0;width:100%;height:100%"
  10193. },
  10194. "src": "/kityminder-editor/dist/index.html"
  10195. });
  10196. _box.appendChild(_iframe);
  10197. _box.appendChild(_jie);
  10198. _formdiv = new U.UF.UI.form(
  10199. "思维导图",
  10200. _box, { //"/jsmind/example/demo.html"
  10201. "id": "minds" + cid + stage + task + tool,
  10202. "style": {
  10203. "width": "90%",
  10204. "height": "90%",
  10205. "overflow": 'hidden'
  10206. },
  10207. "onresize": function () { }
  10208. }, {
  10209. closecallback: function () { }
  10210. }, {
  10211. "style": {
  10212. "height": "36px"
  10213. }
  10214. }).form; //创建窗体
  10215. _taskbar = {
  10216. "id": str + _formdiv.id,
  10217. "style": {
  10218. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10219. },
  10220. "name": "思维导图",
  10221. "forms": _formdiv,
  10222. "click": function () {
  10223. U.MD.D.I.openApplication(str, obj, info);
  10224. }
  10225. }
  10226. break;
  10227. case "doc":
  10228. aTool = 6;
  10229. _iframe = $$("iframe", {
  10230. "frameborder": "no",
  10231. "border": "0",
  10232. "scrolling ": "no",
  10233. "style": {
  10234. "cssText": "border:0;width:100%;height:100%"
  10235. },
  10236. "src": "/Office/Word/WordEditArea.htm"
  10237. })
  10238. _box.appendChild(_iframe);
  10239. _box.appendChild(_jie);
  10240. _formdiv = new U.UF.UI.form(
  10241. "协同文档",
  10242. _box, {
  10243. "id": "docs" + cid + stage + task + tool,
  10244. "style": {
  10245. "width": "90%",
  10246. "height": "90%",
  10247. "overflow": 'hidden'
  10248. },
  10249. "onresize": function () { }
  10250. }, {
  10251. closecallback: function () { }
  10252. }, {
  10253. "style": {
  10254. "height": "36px"
  10255. }
  10256. }).form; //创建窗体
  10257. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10258. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10259. })
  10260. _taskbar = {
  10261. "id": str + _formdiv.id,
  10262. "style": {
  10263. "backgroundImage": "url(/img/icon/doc.png)"
  10264. },
  10265. "name": "协同文档",
  10266. "forms": _formdiv,
  10267. "click": function () {
  10268. U.MD.D.I.openApplication(str, obj, info);
  10269. }
  10270. }
  10271. break;
  10272. }
  10273. const script1 = document.createElement("script");
  10274. script1.type = "text/javascript";
  10275. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10276. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10277. const script2 = document.createElement("script");
  10278. script2.type = "text/javascript";
  10279. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10280. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10281. const script3 = document.createElement("script");
  10282. script3.type = "text/javascript";
  10283. script3.charset = "UTF-8";
  10284. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10285. const script4 = document.createElement("script");
  10286. script4.type = "text/javascript";
  10287. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10288. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10289. if (_iframe) {
  10290. if (str == 'doc') {
  10291. _iframe = _formdiv.querySelector('iframe')
  10292. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10293. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10294. _iframe.contentWindow.document.body.appendChild(script1);
  10295. _iframe.contentWindow.document.body.appendChild(script2);
  10296. // _iframe.contentWindow.document.body.appendChild(script3);
  10297. _iframe.contentWindow.document.body.appendChild(script4);
  10298. })
  10299. if (onloadListener) {
  10300. _iframe.contentDocument.location.reload()
  10301. } else {
  10302. _iframe.contentDocument.location.reload()
  10303. }
  10304. } else if (str == 'mind') {
  10305. _iframe = _formdiv.querySelector('iframe')
  10306. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10307. _iframe.contentWindow.document.body.appendChild(script1);
  10308. _iframe.contentWindow.document.body.appendChild(script2);
  10309. _iframe.contentWindow.document.body.appendChild(script4);
  10310. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10311. })
  10312. if (onloadListener) {
  10313. _iframe.contentDocument.location.reload()
  10314. } else {
  10315. _iframe.contentDocument.location.reload()
  10316. }
  10317. } else {
  10318. _iframe.onload = () => {
  10319. _iframe.contentWindow.document.body.appendChild(script1);
  10320. _iframe.contentWindow.document.body.appendChild(script2);
  10321. // _iframe.contentWindow.document.body.appendChild(script3);
  10322. _iframe.contentWindow.document.body.appendChild(script4);
  10323. };
  10324. }
  10325. _jie.onclick = async () => {
  10326. let text = ''
  10327. if (aTool == 6) {
  10328. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10329. } else if (aTool == 3) {
  10330. text = await U.MD.D.I.getEditorContent(_iframe);
  10331. }
  10332. _loading.style.display = 'flex'
  10333. console.log(_loading);
  10334. var _ajs = _iframe.contentWindow.document.createElement("script");
  10335. _ajs.type = "text/javascript";
  10336. _ajs.innerHTML =
  10337. // 'console.log(' + _loading + ');\n' +
  10338. 'var _js = document.createElement("script");\n' +
  10339. '_js.type="text/javascript";\n' +
  10340. '_js.charset="UTF-8";\n' +
  10341. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10342. "_js.onload = function(){\n" +
  10343. ' var a = document.getElementsByTagName("img")\n' +
  10344. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10345. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10346. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10347. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10348. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10349. "beforeUpload_shishi(file," +
  10350. "'" +
  10351. _userid +
  10352. "'" +
  10353. ", " +
  10354. "'" +
  10355. _cid +
  10356. "'" +
  10357. ", " +
  10358. "'" +
  10359. _stage +
  10360. "'" +
  10361. ", " +
  10362. "'" +
  10363. _task +
  10364. "'" +
  10365. ", " +
  10366. "'" +
  10367. _tool +
  10368. "'" +
  10369. ", " +
  10370. "'" +
  10371. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10372. "'" +
  10373. ", " +
  10374. "'" +
  10375. aTool +
  10376. "'" +
  10377. ", " +
  10378. "`" +
  10379. text +
  10380. "`" +
  10381. ")\n" +
  10382. " });\n" +
  10383. "}\n" +
  10384. "document.head.appendChild(_js);\n";
  10385. _iframe.contentWindow.document.head.appendChild(_ajs);
  10386. }
  10387. }
  10388. //U.MD.D.I.openClick(str);
  10389. //如果有任务栏信息
  10390. // if (_taskbar) {
  10391. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10392. // }
  10393. }
  10394. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10395. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10396. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10397. _userinfo = US.userInfo, //登录用户信息
  10398. _userid = US.userInfo.userid //登录用户id
  10399. let _iframe;
  10400. let _cid = cid,
  10401. _stage = stage,
  10402. _task = task,
  10403. _tool = tool;
  10404. var _jie = $$("div", {
  10405. "style": {
  10406. "position": "absolute",
  10407. "bottom": "50px",
  10408. "right": "50px",
  10409. "zIndex": "9999",
  10410. "backgroundColor": "#2268bc",
  10411. "color": "#fff",
  10412. "padding": "12px 20px",
  10413. "cursor": "pointer",
  10414. "borderRadius": "4px",
  10415. },
  10416. "innerHTML": "上传模板"
  10417. })
  10418. let aTool = ''
  10419. let _loading = document.createElement('div')
  10420. _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;"
  10421. // _loading.id = "";
  10422. let _lchild = document.createElement('div')
  10423. let _limg = document.createElement('img')
  10424. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10425. _limg.style = "width: 26px;margin-right: 10px;"
  10426. _lchild.appendChild(_limg)
  10427. let _lspan = document.createElement('span')
  10428. _lspan.innerHTML = "上传中..."
  10429. _lchild.appendChild(_lspan)
  10430. _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%);"
  10431. _loading.appendChild(_lchild)
  10432. var _box = $$('div', {
  10433. "style": {
  10434. "position": "relative",
  10435. "width": "100%",
  10436. "height": "100%",
  10437. },
  10438. })
  10439. _box.appendChild(_loading)
  10440. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10441. switch (str) {
  10442. case "whiteboard":
  10443. aTool = 1;
  10444. _iframe = $$("iframe", {
  10445. "frameborder": "no",
  10446. "border": "0",
  10447. "scrolling ": "no",
  10448. "style": {
  10449. "cssText": "border:0;width:100%;height:100%"
  10450. },
  10451. "src": "https://beta.iwb.cocorobo.cn/"
  10452. })
  10453. _box.appendChild(_iframe);
  10454. _box.appendChild(_jie);
  10455. _formdiv = new U.UF.UI.form(
  10456. "电子白板",
  10457. _box, {
  10458. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10459. "style": {
  10460. "width": "90%",
  10461. "height": "90%",
  10462. "overflow": 'hidden'
  10463. },
  10464. "onresize": function () { }
  10465. }, {
  10466. closecallback: function () { }
  10467. }, {
  10468. "style": {
  10469. "height": "36px"
  10470. }
  10471. }).form; //创建窗体
  10472. _taskbar = {
  10473. "id": str + _formdiv.id,
  10474. "style": {
  10475. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10476. },
  10477. "name": "电子白板",
  10478. "forms": _formdiv,
  10479. "click": function () {
  10480. U.MD.D.I.openApplication(str, obj, info);
  10481. }
  10482. }
  10483. break;
  10484. case "mind":
  10485. aTool = 3;
  10486. _iframe = $$("iframe", {
  10487. "frameborder": "no",
  10488. "border": "0",
  10489. "scrolling ": "no",
  10490. "style": {
  10491. "cssText": "border:0;width:100%;height:100%"
  10492. },
  10493. "src": "/kityminder-editor/dist/index.html"
  10494. });
  10495. _box.appendChild(_iframe);
  10496. _box.appendChild(_jie);
  10497. _formdiv = new U.UF.UI.form(
  10498. "思维导图",
  10499. _box, { //"/jsmind/example/demo.html"
  10500. "id": "minds_Yu" + cid + stage + task + tool,
  10501. "style": {
  10502. "width": "90%",
  10503. "height": "90%",
  10504. "overflow": 'hidden'
  10505. },
  10506. "onresize": function () { }
  10507. }, {
  10508. closecallback: function () { }
  10509. }, {
  10510. "style": {
  10511. "height": "36px"
  10512. }
  10513. }).form; //创建窗体
  10514. _taskbar = {
  10515. "id": str + _formdiv.id,
  10516. "style": {
  10517. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10518. },
  10519. "name": "思维导图",
  10520. "forms": _formdiv,
  10521. "click": function () {
  10522. U.MD.D.I.openApplication(str, obj, info);
  10523. }
  10524. }
  10525. break;
  10526. case "doc":
  10527. aTool = 6;
  10528. _iframe = $$("iframe", {
  10529. "frameborder": "no",
  10530. "border": "0",
  10531. "scrolling ": "no",
  10532. "style": {
  10533. "cssText": "border:0;width:100%;height:100%"
  10534. },
  10535. "src": "/Office/Word/WordEditArea.htm"
  10536. })
  10537. _box.appendChild(_iframe);
  10538. _box.appendChild(_jie);
  10539. _formdiv = new U.UF.UI.form(
  10540. "协同文档",
  10541. _box, {
  10542. "id": "docs_Yu" + cid + stage + task + tool,
  10543. "style": {
  10544. "width": "90%",
  10545. "height": "90%",
  10546. "overflow": 'hidden'
  10547. },
  10548. "onresize": function () { }
  10549. }, {
  10550. closecallback: function () { }
  10551. }, {
  10552. "style": {
  10553. "height": "36px"
  10554. }
  10555. }).form; //创建窗体
  10556. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10557. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10558. })
  10559. _taskbar = {
  10560. "id": str + _formdiv.id,
  10561. "style": {
  10562. "backgroundImage": "url(/img/icon/doc.png)"
  10563. },
  10564. "name": "协同文档",
  10565. "forms": _formdiv,
  10566. "click": function () {
  10567. U.MD.D.I.openApplication(str, obj, info);
  10568. }
  10569. }
  10570. break;
  10571. case "CocoPi":
  10572. aTool = 57;
  10573. _iframe = $$("iframe", {
  10574. "allowpaymentrequest": "allowpaymentrequest",
  10575. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10576. "webkitallowfullscreen": "",
  10577. "mozallowfullscreen": "",
  10578. "frameborder": "no",
  10579. "border": "0",
  10580. "scrolling ": "no",
  10581. "style": {
  10582. "cssText": "border:0;width:100%;height:100%"
  10583. },
  10584. "src": "https://pi.cocorobo.cn/"
  10585. })
  10586. _box.appendChild(_iframe);
  10587. _box.appendChild(_jie);
  10588. _formdiv = new U.UF.UI.form(
  10589. "CocoPi",
  10590. _box, {
  10591. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10592. "style": {
  10593. "width": "90%",
  10594. "height": "90%",
  10595. "overflow": 'hidden'
  10596. },
  10597. "onresize": function () { }
  10598. }, {
  10599. closecallback: function () { }
  10600. }, {
  10601. "style": {
  10602. "height": "36px"
  10603. }
  10604. }).form; //创建窗体
  10605. _taskbar = {
  10606. "id": str + _formdiv.id,
  10607. "style": {
  10608. "backgroundImage": "url(/img/icon/cocopi.png)"
  10609. },
  10610. "name": "CocoPi",
  10611. "forms": _formdiv,
  10612. "click": function () {
  10613. U.MD.D.I.openApplication(str, obj, info);
  10614. }
  10615. }
  10616. break;
  10617. }
  10618. if (_iframe) {
  10619. if (str == 'doc') {
  10620. _iframe = _formdiv.querySelector('iframe')
  10621. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10622. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10623. })
  10624. if (onloadListener) {
  10625. _iframe.contentDocument.location.reload()
  10626. } else {
  10627. _iframe.contentDocument.location.reload()
  10628. }
  10629. } else if (str == 'mind') {
  10630. _iframe = _formdiv.querySelector('iframe')
  10631. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10632. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10633. })
  10634. if (onloadListener) {
  10635. _iframe.contentDocument.location.reload()
  10636. } else {
  10637. _iframe.contentDocument.location.reload()
  10638. }
  10639. } else if (str == 'whiteboard') {
  10640. _iframe = _formdiv.querySelector('iframe')
  10641. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10642. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10643. })
  10644. // if (onloadListener) {
  10645. // try {
  10646. // _iframe.src += "?cocorobo="+new Date().getTime()
  10647. // _iframe.contentWindow.document.location.reload()
  10648. // } catch (error) {
  10649. // }
  10650. // } else {
  10651. // _iframe.contentDocument.location.reload()
  10652. // }
  10653. } else if (str == 'CocoPi') {
  10654. _iframe = _formdiv.querySelector('iframe')
  10655. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10656. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10657. })
  10658. if (onloadListener) {
  10659. _iframe.contentDocument.location.reload()
  10660. } else {
  10661. _iframe.contentDocument.location.reload()
  10662. }
  10663. } else {
  10664. _iframe.onload = () => { };
  10665. }
  10666. _jie.onclick = async () => {
  10667. let text = ''
  10668. let type = '2'
  10669. if (aTool == 1) {
  10670. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10671. type = '3'
  10672. } else if (aTool == 6) {
  10673. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10674. type = '1'
  10675. } else if (aTool == 3) {
  10676. text = await U.MD.D.I.getEditorContent(_iframe);
  10677. type = '2'
  10678. } else if (aTool == 57) {
  10679. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10680. type = '4'
  10681. }
  10682. _loading.style.display = 'flex'
  10683. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10684. }
  10685. }
  10686. //U.MD.D.I.openClick(str);
  10687. //如果有任务栏信息
  10688. // if (_taskbar) {
  10689. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10690. // }
  10691. }
  10692. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10693. var xmlhttp;
  10694. var Mac, Sn, DeviceId
  10695. if (window.XMLHttpRequest) {
  10696. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10697. xmlhttp = new XMLHttpRequest();
  10698. } else {
  10699. // IE6, IE5 浏览器执行代码
  10700. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10701. }
  10702. xmlhttp.onreadystatechange = function () {
  10703. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10704. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10705. // resolve(res.value[0][0].text);
  10706. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10707. }
  10708. }
  10709. }
  10710. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10711. xmlhttp.send();
  10712. }
  10713. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10714. var xmlhttp;
  10715. var Mac, Sn, DeviceId
  10716. if (window.XMLHttpRequest) {
  10717. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10718. xmlhttp = new XMLHttpRequest();
  10719. } else {
  10720. // IE6, IE5 浏览器执行代码
  10721. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10722. }
  10723. xmlhttp.onreadystatechange = function () {
  10724. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10725. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10726. // resolve(res.value[0][0].text);
  10727. if (type == '2') {
  10728. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10729. } else if (type == '3') {
  10730. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10731. } else if (type == '4') {
  10732. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10733. }
  10734. } else {
  10735. if (type == '2') {
  10736. iframe.contentWindow.editor.minder.importData('json', '')
  10737. } else if (type == '3') {
  10738. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10739. } else if (type == '4') {
  10740. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10741. }
  10742. }
  10743. }
  10744. }
  10745. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10746. xmlhttp.send();
  10747. }
  10748. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10749. var xmlhttp;
  10750. var Mac, Sn, DeviceId
  10751. if (window.XMLHttpRequest) {
  10752. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10753. xmlhttp = new XMLHttpRequest();
  10754. } else {
  10755. // IE6, IE5 浏览器执行代码
  10756. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10757. }
  10758. xmlhttp.onreadystatechange = function () {
  10759. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10760. if (xmlhttp.response) {
  10761. // resolve(res.value[0][0].text);
  10762. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10763. // $(fileInput).val('');
  10764. // });
  10765. span.innerHTML = '上传成功'
  10766. setTimeout(() => {
  10767. loading.style.display = 'none'
  10768. }, 1000);
  10769. }
  10770. }
  10771. }
  10772. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10773. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10774. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10775. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10776. // 设置请求头,表示请求体的编码格式
  10777. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10778. // 设置请求体,使用url-encoded格式的数据
  10779. }
  10780. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10781. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10782. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10783. _userinfo = US.userInfo, //登录用户信息
  10784. _userid = US.userInfo.userid //登录用户id
  10785. let _iframe;
  10786. let _cid = cid,
  10787. _stage = stage,
  10788. _task = task,
  10789. _tool = tool;
  10790. var _jie = $$("div", {
  10791. "style": {
  10792. "position": "absolute",
  10793. "bottom": "50px",
  10794. "right": "50px",
  10795. "zIndex": "9999",
  10796. "backgroundColor": "#2268bc",
  10797. "color": "#fff",
  10798. "padding": "12px 20px",
  10799. "cursor": "pointer",
  10800. "borderRadius": "4px",
  10801. },
  10802. "innerHTML": "提交作业"
  10803. })
  10804. let aTool = ''
  10805. let _loading = document.createElement('div')
  10806. _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;"
  10807. // _loading.id = "";
  10808. let _lchild = document.createElement('div')
  10809. let _limg = document.createElement('img')
  10810. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10811. _limg.style = "width: 26px;margin-right: 10px;"
  10812. _lchild.appendChild(_limg)
  10813. let _lspan = document.createElement('span')
  10814. _lspan.innerHTML = "上传中..."
  10815. _lchild.appendChild(_lspan)
  10816. _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%);"
  10817. _loading.appendChild(_lchild)
  10818. var _box = $$('div', {
  10819. "style": {
  10820. "position": "relative",
  10821. "width": "100%",
  10822. "height": "100%",
  10823. },
  10824. })
  10825. _box.appendChild(_loading)
  10826. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10827. switch (str) {
  10828. case "CocoPi":
  10829. aTool = 57;
  10830. _iframe = $$("iframe", {
  10831. "allowpaymentrequest": "allowpaymentrequest",
  10832. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10833. "webkitallowfullscreen": "",
  10834. "mozallowfullscreen": "",
  10835. "frameborder": "no",
  10836. "border": "0",
  10837. "scrolling ": "no",
  10838. "style": {
  10839. "cssText": "border:0;width:100%;height:100%"
  10840. },
  10841. "src": "https://pi.cocorobo.cn/"
  10842. })
  10843. _box.appendChild(_iframe);
  10844. _box.appendChild(_jie);
  10845. _formdiv = new U.UF.UI.form(
  10846. "CocoPi",
  10847. _box, {
  10848. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10849. "style": {
  10850. "width": "90%",
  10851. "height": "90%",
  10852. "overflow": 'hidden'
  10853. },
  10854. "onresize": function () { }
  10855. }, {
  10856. closecallback: function () { }
  10857. }, {
  10858. "style": {
  10859. "height": "36px"
  10860. }
  10861. }).form; //创建窗体
  10862. _taskbar = {
  10863. "id": str + _formdiv.id,
  10864. "style": {
  10865. "backgroundImage": "url(/img/icon/cocopi.png)"
  10866. },
  10867. "name": "CocoPi",
  10868. "forms": _formdiv,
  10869. "click": function () {
  10870. U.MD.D.I.openApplication(str, obj, info);
  10871. }
  10872. }
  10873. break;
  10874. }
  10875. if (_iframe) {
  10876. if (str == 'CocoPi') {
  10877. _iframe = _formdiv.querySelector('iframe')
  10878. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10879. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10880. })
  10881. if (onloadListener) {
  10882. _iframe.contentDocument.location.reload()
  10883. } else {
  10884. _iframe.contentDocument.location.reload()
  10885. }
  10886. }
  10887. _jie.onclick = async () => {
  10888. let text = ''
  10889. if (aTool == 57) {
  10890. text = _iframe.contentWindow.getLoadXmlStr()
  10891. }
  10892. _loading.style.display = 'flex'
  10893. console.log(_loading);
  10894. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10895. _loading.style.display = 'none'
  10896. let _div = document.createElement('div')
  10897. _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;"
  10898. let _inner = document.createElement('div')
  10899. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10900. _inner.innerHTML = "上传成功"
  10901. _div.appendChild(_inner)
  10902. _iframe.contentWindow.window.document.body.appendChild(_div)
  10903. _div.onclick = () => {
  10904. _iframe.contentWindow.window.document.body.removeChild(_div)
  10905. }
  10906. setTimeout(() => {
  10907. _iframe.contentWindow.window.document.body.removeChild(_div)
  10908. }, 1000);
  10909. }, [], { "type": "POST", "withCredentials": true });
  10910. }
  10911. }
  10912. }
  10913. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10914. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10915. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10916. _userid = student.userid, //登录用户id
  10917. _username = student.student //用户名字
  10918. let _iframe;
  10919. let _cid = cid,
  10920. _stage = stage,
  10921. _task = task,
  10922. _tool = tool;
  10923. var _jie = $$("div", {
  10924. "style": {
  10925. "position": "absolute",
  10926. "bottom": "50px",
  10927. "right": "50px",
  10928. "zIndex": "9999",
  10929. "backgroundColor": "#2268bc",
  10930. "color": "#fff",
  10931. "padding": "12px 20px",
  10932. "cursor": "pointer",
  10933. "borderRadius": "4px",
  10934. },
  10935. "innerHTML": "提交作业"
  10936. })
  10937. let aTool = ''
  10938. let _loading = document.createElement('div')
  10939. _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;"
  10940. // _loading.id = "";
  10941. let _lchild = document.createElement('div')
  10942. let _limg = document.createElement('img')
  10943. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10944. _limg.style = "width: 26px;margin-right: 10px;"
  10945. _lchild.appendChild(_limg)
  10946. let _lspan = document.createElement('span')
  10947. _lspan.innerHTML = "上传中..."
  10948. _lchild.appendChild(_lspan)
  10949. _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%);"
  10950. _loading.appendChild(_lchild)
  10951. var _box = $$('div', {
  10952. "style": {
  10953. "position": "relative",
  10954. "width": "100%",
  10955. "height": "100%",
  10956. },
  10957. })
  10958. _box.appendChild(_loading)
  10959. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10960. switch (str) {
  10961. case "CocoPi":
  10962. aTool = 57;
  10963. _iframe = $$("iframe", {
  10964. "allowpaymentrequest": "allowpaymentrequest",
  10965. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10966. "webkitallowfullscreen": "",
  10967. "mozallowfullscreen": "",
  10968. "frameborder": "no",
  10969. "border": "0",
  10970. "scrolling ": "no",
  10971. "style": {
  10972. "cssText": "border:0;width:100%;height:100%"
  10973. },
  10974. "src": "https://pi.cocorobo.cn/"
  10975. })
  10976. _box.appendChild(_iframe);
  10977. _box.appendChild(_jie);
  10978. _formdiv = new U.UF.UI.form(
  10979. "CocoPi-" + _username,
  10980. _box, {
  10981. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10982. "style": {
  10983. "width": "90%",
  10984. "height": "90%",
  10985. "overflow": 'hidden'
  10986. },
  10987. "onresize": function () { }
  10988. }, {
  10989. closecallback: function () { }
  10990. }, {
  10991. "style": {
  10992. "height": "36px"
  10993. }
  10994. }).form; //创建窗体
  10995. _taskbar = {
  10996. "id": str + _formdiv.id,
  10997. "style": {
  10998. "backgroundImage": "url(/img/icon/cocopi.png)"
  10999. },
  11000. "name": "CocoPi",
  11001. "forms": _formdiv,
  11002. "click": function () {
  11003. U.MD.D.I.openApplication(str, obj, info);
  11004. }
  11005. }
  11006. break;
  11007. }
  11008. if (_iframe) {
  11009. if (str == 'CocoPi') {
  11010. _iframe = _formdiv.querySelector('iframe')
  11011. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11012. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11013. })
  11014. if (onloadListener) {
  11015. _iframe.contentDocument.location.reload()
  11016. } else {
  11017. _iframe.contentDocument.location.reload()
  11018. }
  11019. }
  11020. _jie.onclick = async () => {
  11021. let text = ''
  11022. if (aTool == 57) {
  11023. text = _iframe.contentWindow.getLoadXmlStr()
  11024. }
  11025. _loading.style.display = 'flex'
  11026. console.log(_loading);
  11027. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11028. _loading.style.display = 'none'
  11029. let _div = document.createElement('div')
  11030. _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;"
  11031. let _inner = document.createElement('div')
  11032. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11033. _inner.innerHTML = "上传成功"
  11034. _div.appendChild(_inner)
  11035. _iframe.contentWindow.window.document.body.appendChild(_div)
  11036. _div.onclick = () => {
  11037. _iframe.contentWindow.window.document.body.removeChild(_div)
  11038. }
  11039. setTimeout(() => {
  11040. _iframe.contentWindow.window.document.body.removeChild(_div)
  11041. }, 1000);
  11042. }, [], { "type": "POST", "withCredentials": true });
  11043. }
  11044. }
  11045. }
  11046. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11047. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11048. if (res.value[0].length > 0) {
  11049. if (atool == 57) {
  11050. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11051. }
  11052. } else {
  11053. if (atool == 57) {
  11054. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11055. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11056. }
  11057. }
  11058. }, [], { "type": "POST", "withCredentials": true });
  11059. }
  11060. U.MD.D.addOp = function(text,type,time){
  11061. var userInfo = US.userInfo;
  11062. if(Object.keys(userInfo).length !== 0){
  11063. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11064. }, [], { "type": "POST", "withCredentials": true });
  11065. }
  11066. }