DeskTop.js 724 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. ];
  1456. //stia
  1457. U.MD.D.I.stiaTeacherDeskIcon = [
  1458. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1459. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1460. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1461. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1462. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1463. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1464. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1465. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1466. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1467. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1468. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1469. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1470. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1471. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1472. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1473. ];
  1474. //stia
  1475. U.MD.D.I.stiaStudentDeskIcon = [
  1476. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1477. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1478. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1479. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1480. ];
  1481. //szdjg
  1482. U.MD.D.I.szdjgTeacherDeskIcon = [
  1483. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1484. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1485. ];
  1486. //szdjg
  1487. U.MD.D.I.szdjgStudentDeskIcon = [
  1488. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1489. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1490. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1491. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1492. ];
  1493. //010607
  1494. U.MD.D.I.x010607TeacherDeskIcon = [
  1495. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1496. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1498. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1499. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1500. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1501. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1502. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1503. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //010607
  1512. U.MD.D.I.x010607StudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010608
  1519. U.MD.D.I.x010608TeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1527. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1530. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1531. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1532. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1533. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1534. ];
  1535. //010608
  1536. U.MD.D.I.x010608StudentDeskIcon = [
  1537. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1539. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1540. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1541. ];
  1542. //xhly
  1543. U.MD.D.I.xhlyTeacherDeskIcon = [
  1544. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1545. ];
  1546. //010608
  1547. U.MD.D.I.xhlyStudentDeskIcon = [
  1548. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1549. ];
  1550. //北师大
  1551. U.MD.D.I.BSDNSteacherDeskIcon = [
  1552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1559. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1560. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1561. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1562. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1563. ];
  1564. //北师大
  1565. U.MD.D.I.BSDNSstudentDeskIcon = [
  1566. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1567. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1568. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1569. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1570. ];
  1571. //CUHK_EDU
  1572. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1573. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1574. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1575. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1576. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1577. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1578. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1579. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1581. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1582. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1583. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1584. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1585. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1586. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1587. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1588. ];
  1589. //CUHK_EDU
  1590. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1591. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //010503
  1597. U.MD.D.I.x010503TeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1601. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1602. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1603. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1604. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1605. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1606. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1607. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1608. ];
  1609. //010503
  1610. U.MD.D.I.x010503StudentDeskIcon = [
  1611. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1612. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1613. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1614. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1615. ];
  1616. //SPROUT Lab
  1617. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1618. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1619. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1620. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1622. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1623. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1626. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1627. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1628. ];
  1629. //SPROUT Lab
  1630. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1631. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1632. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1633. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1634. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1635. ];
  1636. //010204
  1637. U.MD.D.I.x010204TeacherDeskIcon = [
  1638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1640. ];
  1641. //010204
  1642. U.MD.D.I.x010204StudentDeskIcon = [
  1643. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1644. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1645. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1646. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1647. ];
  1648. //trail
  1649. U.MD.D.I.trailTeacherDeskIcon = [
  1650. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1651. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1652. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1653. ];
  1654. //trail
  1655. U.MD.D.I.trailStudentDeskIcon = [
  1656. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1657. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1658. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1659. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1660. ];
  1661. //trial
  1662. U.MD.D.I.trialTeacherDeskIcon = [
  1663. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1664. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1665. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1666. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1668. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1669. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1670. ];
  1671. //trial
  1672. U.MD.D.I.trialStudentDeskIcon = [
  1673. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1674. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1675. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1676. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //010504
  1679. U.MD.D.I.x010504TeacherDeskIcon = [
  1680. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1683. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1684. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1685. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1688. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1689. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1690. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1691. ];
  1692. //010504
  1693. U.MD.D.I.x010504StudentDeskIcon = [
  1694. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1695. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1696. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1697. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1698. ];
  1699. //010505
  1700. U.MD.D.I.x010505TeacherDeskIcon = [
  1701. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1702. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1703. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1704. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1705. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1706. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1707. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1710. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1711. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1712. ];
  1713. //010505
  1714. U.MD.D.I.x010505StudentDeskIcon = [
  1715. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1716. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1717. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1719. ];
  1720. //SCNUET
  1721. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1722. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1723. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1726. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1727. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1728. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1729. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1730. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1731. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1732. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1733. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1734. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1735. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1737. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1738. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1739. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1740. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1741. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1742. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1743. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1744. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1745. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1746. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1747. ];
  1748. //SCNUET
  1749. U.MD.D.I.SCNUETAdminDeskIcon = [
  1750. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1751. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1752. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1754. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1755. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1756. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1757. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1758. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1759. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1760. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1761. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1762. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1763. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1764. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1766. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1767. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1768. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1769. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1770. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1771. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1772. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1773. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1774. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1775. ];
  1776. //SCNUET
  1777. U.MD.D.I.SCNUETStudentDeskIcon = [
  1778. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1779. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1780. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1781. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1782. ];
  1783. //x020201
  1784. U.MD.D.I.x020201TeacherDeskIcon = [
  1785. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1786. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1787. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1788. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1789. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1790. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1791. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1792. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1795. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1796. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1797. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1798. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1799. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1800. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1801. ];
  1802. //x020201
  1803. U.MD.D.I.x020201AdminDeskIcon = [
  1804. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1805. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1806. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1807. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1808. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1809. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1810. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1811. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1812. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1813. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1814. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1815. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1816. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1817. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1818. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1819. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1820. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1821. ];
  1822. //020201
  1823. U.MD.D.I.x020201StudentDeskIcon = [
  1824. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1825. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1827. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1828. ];
  1829. //010611
  1830. U.MD.D.I.x010611TeacherDeskIcon = [
  1831. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1832. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1833. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1834. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1835. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1836. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1837. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1838. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1839. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1840. ];
  1841. //010611
  1842. U.MD.D.I.x010611StudentDeskIcon = [
  1843. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1844. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1845. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1847. ];
  1848. //010612
  1849. U.MD.D.I.x010612TeacherDeskIcon = [
  1850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1852. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1853. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1854. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1855. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //010612
  1862. U.MD.D.I.x010612StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //tianyuan
  1869. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1873. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1874. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1875. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1876. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1877. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1878. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1879. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1880. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1881. ];
  1882. //010611
  1883. U.MD.D.I.tianyuanStudentDeskIcon = [
  1884. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1885. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1886. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1887. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1888. ];
  1889. //320101
  1890. U.MD.D.I.x320101TeacherDeskIcon = [
  1891. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1892. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1894. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1895. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1896. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1897. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1898. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1899. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1900. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1901. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1902. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1903. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1904. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1905. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1906. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1907. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1908. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1909. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1910. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1911. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1912. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1913. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1914. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1915. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1916. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1917. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1918. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1919. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1920. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1921. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1922. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1923. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1924. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1925. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1926. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1927. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1928. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1929. ];
  1930. //320101
  1931. U.MD.D.I.x320101StudentDeskIcon = [
  1932. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1933. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1934. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1935. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1936. ];
  1937. //szsy
  1938. U.MD.D.I.szsyTeacherDeskIcon = [
  1939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1941. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1942. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1943. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1944. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1945. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1946. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1947. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1948. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1950. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1951. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1952. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1953. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1954. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1955. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1956. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1957. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1958. ];
  1959. //szsy
  1960. U.MD.D.I.szsyStudentDeskIcon = [
  1961. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1962. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1963. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1964. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1965. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1966. ];
  1967. //010404
  1968. U.MD.D.I.x010404TeacherDeskIcon = [
  1969. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1970. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1971. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1972. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1975. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1976. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1977. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1978. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1979. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1980. ];
  1981. //010404
  1982. U.MD.D.I.x010404StudentDeskIcon = [
  1983. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1986. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1987. ];
  1988. //cocorobo demo
  1989. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1990. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1991. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1992. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1993. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1994. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1995. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1996. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1997. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1998. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1999. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2000. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2001. ];
  2002. //cocorobo demo
  2003. U.MD.D.I.demoCocoStudentDeskIcon = [
  2004. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2005. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2006. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2007. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2008. ];
  2009. //#region 桌面初始化a
  2010. /**
  2011. * 初始化桌面的起始函数
  2012. *
  2013. */
  2014. U.MD.D.I.init = function () {
  2015. if ($("#U_MD_D_K")[0]) {
  2016. //初始化桌面图标
  2017. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2018. // var clickUrl = ':12588/requestIp.php';
  2019. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2020. // U.MD.D.I.Ip = data;
  2021. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2022. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2023. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2024. // })
  2025. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2026. // })
  2027. }
  2028. }
  2029. /**
  2030. * 模式切换
  2031. *
  2032. */
  2033. U.MD.D.I.ModeCheck = function (type) {
  2034. if (US.Config.type == type) {
  2035. return
  2036. }
  2037. US.Config.type = type
  2038. $('.U_PBL_Check .active')[0].className = ''
  2039. if (type == 1) {
  2040. $('.U_PBL_Check div')[0].className = 'active'
  2041. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2042. } else {
  2043. $('.U_PBL_Check div')[1].className = 'active'
  2044. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2045. }
  2046. //初始化桌面图标
  2047. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2048. if (type == 2) {
  2049. U.MD.D.I.openApplication("project")
  2050. }
  2051. }
  2052. /**
  2053. * 隐藏任务栏
  2054. *
  2055. * @param {element} 桌面元素
  2056. */
  2057. U.MD.D.I.hiddenTaskbar = function (el) {
  2058. //任务栏位置变小
  2059. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2060. //桌面的位置变大
  2061. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2062. }
  2063. /**
  2064. * 隐藏任务栏
  2065. *
  2066. * @param {element} 桌面元素
  2067. */
  2068. U.MD.D.I.hiddenTaskbarout = function (el) {
  2069. //任务栏位置变小
  2070. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2071. //任务栏位置变化
  2072. U.selectEl(el).css({ "bottom": "-60px" });
  2073. //桌面的位置变大
  2074. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2075. }
  2076. }
  2077. /**
  2078. * 初始化打印桌面图标
  2079. *
  2080. * @param {element} 桌面元素
  2081. */
  2082. U.MD.D.I.initDesktopIcons = function (el, type) {
  2083. var i, //用于循环
  2084. _content, //桌面图标元素
  2085. _iconcontent, //桌面图标元素
  2086. _frag = $$("frag"), //定义一个碎片元素
  2087. _type = US.userInfo.type,
  2088. _org = US.userInfo.org,
  2089. _oid = US.userInfo.organizeid,
  2090. _role = US.userInfo.role,
  2091. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2092. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2093. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2094. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2095. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2096. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2097. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2098. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2099. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2100. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2101. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2102. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2103. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2104. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2105. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2106. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2107. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2108. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2109. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2110. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2111. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2112. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2113. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2114. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2115. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2116. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2117. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2118. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2119. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2120. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2121. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2122. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2123. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2124. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2125. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2126. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2127. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2128. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2129. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2130. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2131. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2132. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2133. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2134. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2135. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2136. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2137. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2138. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2139. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2140. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2141. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2142. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2143. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2144. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2145. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2146. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2147. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2148. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2149. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2150. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2151. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2152. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2153. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2154. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2155. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2156. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2157. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2158. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2159. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2160. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2161. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2162. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2163. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2164. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2165. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2166. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2167. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2168. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2169. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2170. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2171. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2172. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2173. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2174. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2175. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2176. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2177. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2178. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2179. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2180. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2181. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2182. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2183. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2184. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2185. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2186. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2187. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2188. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2189. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2190. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2191. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2192. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2193. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2194. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2195. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2196. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2197. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2198. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2199. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2200. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2201. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2202. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2203. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2204. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2205. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2206. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2207. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2208. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2209. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2210. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2211. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2212. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2213. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2214. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2215. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2216. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2217. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2218. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2219. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2220. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2221. 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'];
  2222. 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'];
  2223. 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",]
  2224. //清楚桌面图标
  2225. el.innerHTML = "";
  2226. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2227. _teacherDesktopIconInfo.push(
  2228. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2229. { "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)" } },
  2230. )
  2231. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2232. }
  2233. 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') {
  2234. _teacherDesktopIconInfo.push(
  2235. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2236. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2237. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2238. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2239. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2240. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2241. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2242. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2243. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2244. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2245. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2248. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2249. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2250. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2251. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2252. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2253. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2254. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2255. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2256. )
  2257. }
  2258. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2259. _teacherDesktopIconInfo.push(
  2260. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2261. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2262. )
  2263. }
  2264. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2265. _nsfxTeacherDeskIconInfo.push(
  2266. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2267. )
  2268. }
  2269. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2270. // _teacherDesktopIconInfo.push(
  2271. // )
  2272. // }
  2273. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2274. _teacherDesktopIconInfo.push(
  2275. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2276. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2277. )
  2278. }
  2279. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2280. _teacherDesktopIconInfo.push(
  2281. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2282. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2283. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2284. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2285. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2286. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2287. )
  2288. _studentDesktopIconInfo.push(
  2289. )
  2290. }
  2291. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2292. _teacherDesktopIconInfo.push(
  2293. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2294. )
  2295. _studentDesktopIconInfo.push(
  2296. )
  2297. }
  2298. //010606 组织
  2299. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2300. _teacherDesktopIconInfo.push(
  2301. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2302. )
  2303. _studentDesktopIconInfo.push(
  2304. )
  2305. }
  2306. //麒麟二中 和 民新小学
  2307. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2308. _teacherDesktopIconInfo.push(
  2309. )
  2310. }
  2311. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2312. _teacherDesktopIconInfo.push(
  2313. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2314. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2315. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2316. )
  2317. }
  2318. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2319. _hkTeacherDeskIconInfo.push(
  2320. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2321. )
  2322. }
  2323. //北师大附中(010601)
  2324. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2325. // _teacherDesktopIconInfo.push(
  2326. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2327. // )
  2328. // _studentDesktopIconInfo.push(
  2329. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2330. // )
  2331. // }
  2332. //樂善堂余近卿中學
  2333. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2334. _teacherDesktopIconInfo.push(
  2335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2336. )
  2337. }
  2338. // Education Artificial Intelligence
  2339. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2340. _teacherDesktopIconInfo.push(
  2341. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2342. )
  2343. }
  2344. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2345. _teacherDesktopIconInfo.push(
  2346. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2347. )
  2348. }
  2349. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2350. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2351. _teacherDesktopIconInfo.push(
  2352. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2353. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2354. )
  2355. }
  2356. //麒麟二中
  2357. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2358. _studentDesktopIconInfo.push(
  2359. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2361. )
  2362. }
  2363. //万科双语
  2364. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2365. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2366. if (el.Name == '项目管理') {
  2367. el.Name = 'PBL项目'
  2368. }
  2369. return el
  2370. })
  2371. _studentDesktopIconInfo3.push(
  2372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2373. )
  2374. }
  2375. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2376. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2377. return el.Name != '魔盒识字' && el.Name != '24点'
  2378. })
  2379. }
  2380. 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) {
  2381. _studentDesktopIconInfo.push(
  2382. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2383. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2384. )
  2385. }
  2386. //循环创建桌面图标
  2387. if (type == 1) {
  2388. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2389. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2390. _content = $$("div", {
  2391. className: "U_MD_D_KO",
  2392. "onmousedown": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_studentDesktopIconInfo[i]]),
  2396. "onclick": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_studentDesktopIconInfo[i]])
  2400. }, _frag); //
  2401. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2402. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2403. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2404. }
  2405. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2406. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2407. _content = $$("div", {
  2408. className: "U_MD_D_KO",
  2409. "onmousedown": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2413. "onclick": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_hkZJLSStudentDeskIconInfo[i]])
  2417. }, _frag); //
  2418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2421. } //
  2422. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2423. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2424. _content = $$("div", {
  2425. className: "U_MD_D_KO",
  2426. "onmousedown": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_ytyStudentDeskIconInfo[i]]),
  2430. "onclick": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_ytyStudentDeskIconInfo[i]])
  2434. }, _frag); //
  2435. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2436. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2437. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2438. } //
  2439. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2440. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2441. _content = $$("div", {
  2442. className: "U_MD_D_KO",
  2443. "onmousedown": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_jccssylStudentDeskIconInfo[i]]),
  2447. "onclick": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_jccssylStudentDeskIconInfo[i]])
  2451. }, _frag); //
  2452. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2453. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2454. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2455. }
  2456. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2457. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2458. _content = $$("div", {
  2459. className: "U_MD_D_KO",
  2460. "onmousedown": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_scnuaiStudentDeskIconInfo[i]]),
  2464. "onclick": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_scnuaiStudentDeskIconInfo[i]])
  2468. }, _frag); //
  2469. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2470. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2471. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2472. }
  2473. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2474. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2475. _content = $$("div", {
  2476. className: "U_MD_D_KO",
  2477. "onmousedown": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_caleStudentDeskIconInfo[i]]),
  2481. "onclick": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_caleStudentDeskIconInfo[i]])
  2485. }, _frag); //
  2486. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2487. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2488. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2489. }
  2490. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2491. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_thuioeStudentDeskIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_thuioeStudentDeskIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2508. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_tpcStudentDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_tpcStudentDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2523. } //
  2524. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2525. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2526. _content = $$("div", {
  2527. className: "U_MD_D_KO",
  2528. "onmousedown": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_chjyjStudentDeskIconInfo[i]]),
  2532. "onclick": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_chjyjStudentDeskIconInfo[i]])
  2536. }, _frag); //
  2537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2540. }
  2541. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2542. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2543. _content = $$("div", {
  2544. className: "U_MD_D_KO",
  2545. "onmousedown": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_szjkyStudentDeskIconInfo[i]]),
  2549. "onclick": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_szjkyStudentDeskIconInfo[i]])
  2553. }, _frag); //
  2554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2557. }
  2558. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2559. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2560. _content = $$("div", {
  2561. className: "U_MD_D_KO",
  2562. "onmousedown": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_x020201StudentDeskIconInfo[i]]),
  2566. "onclick": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_x020201StudentDeskIconInfo[i]])
  2570. }, _frag); //
  2571. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2572. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2573. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2574. }
  2575. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2576. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2577. _content = $$("div", {
  2578. className: "U_MD_D_KO",
  2579. "onmousedown": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_SCNUETStudentDeskIconInfo[i]]),
  2583. "onclick": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_SCNUETStudentDeskIconInfo[i]])
  2587. }, _frag); //
  2588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2591. }
  2592. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2593. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2594. _content = $$("div", {
  2595. className: "U_MD_D_KO",
  2596. "onmousedown": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_dseiStudentDeskIconInfo[i]]),
  2600. "onclick": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_dseiStudentDeskIconInfo[i]])
  2604. }, _frag); //
  2605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2608. }
  2609. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2610. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2611. _content = $$("div", {
  2612. className: "U_MD_D_KO",
  2613. "onmousedown": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2617. "onclick": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2621. }, _frag); //
  2622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2625. }
  2626. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2627. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2628. _content = $$("div", {
  2629. className: "U_MD_D_KO",
  2630. "onmousedown": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_nsfxStudentDeskIconInfo[i]]),
  2634. "onclick": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_nsfxStudentDeskIconInfo[i]])
  2638. }, _frag); //
  2639. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2640. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2641. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2642. }
  2643. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2644. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2645. _content = $$("div", {
  2646. className: "U_MD_D_KO",
  2647. "onmousedown": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_stiaStudentDeskIconInfo[i]]),
  2651. "onclick": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_stiaStudentDeskIconInfo[i]])
  2655. }, _frag); //
  2656. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2657. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2658. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2659. }
  2660. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2661. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2662. _content = $$("div", {
  2663. className: "U_MD_D_KO",
  2664. "onmousedown": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_szdjgStudentDeskIconInfo[i]]),
  2668. "onclick": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_szdjgStudentDeskIconInfo[i]])
  2672. }, _frag); //
  2673. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2674. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2675. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2676. }
  2677. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2678. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2679. _content = $$("div", {
  2680. className: "U_MD_D_KO",
  2681. "onmousedown": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_x010607StudentDeskIconInfo[i]]),
  2685. "onclick": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_x010607StudentDeskIconInfo[i]])
  2689. }, _frag); //
  2690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2693. }
  2694. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2695. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2696. _content = $$("div", {
  2697. className: "U_MD_D_KO",
  2698. "onmousedown": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_xhlyStudentDeskIconInfo[i]]),
  2702. "onclick": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_xhlyStudentDeskIconInfo[i]])
  2706. }, _frag); //
  2707. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2708. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2709. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2710. }
  2711. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2712. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2713. _content = $$("div", {
  2714. className: "U_MD_D_KO",
  2715. "onmousedown": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2719. "onclick": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2723. }, _frag); //
  2724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2727. }
  2728. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2729. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2730. _content = $$("div", {
  2731. className: "U_MD_D_KO",
  2732. "onmousedown": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_x010503StudentDeskIconInfo[i]]),
  2736. "onclick": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_x010503StudentDeskIconInfo[i]])
  2740. }, _frag); //
  2741. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2742. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2743. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2744. }
  2745. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2746. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2747. _content = $$("div", {
  2748. className: "U_MD_D_KO",
  2749. "onmousedown": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_x010504StudentDeskIconInfo[i]]),
  2753. "onclick": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_x010504StudentDeskIconInfo[i]])
  2757. }, _frag); //
  2758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2761. }
  2762. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2763. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2764. _content = $$("div", {
  2765. className: "U_MD_D_KO",
  2766. "onmousedown": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_x010505StudentDeskIconInfo[i]]),
  2770. "onclick": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_x010505StudentDeskIconInfo[i]])
  2774. }, _frag); //
  2775. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2776. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2777. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2778. }
  2779. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2780. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2781. _content = $$("div", {
  2782. className: "U_MD_D_KO",
  2783. "onmousedown": U.UF.C.closure(function (obj) {
  2784. //防止拖动图标即打开了桌面应用
  2785. U.MD.D.click(this, obj);
  2786. }, [_x010404StudentDeskIconInfo[i]]),
  2787. "onclick": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_x010404StudentDeskIconInfo[i]])
  2791. }, _frag); //
  2792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2795. }
  2796. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2797. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2798. _content = $$("div", {
  2799. className: "U_MD_D_KO",
  2800. "onmousedown": U.UF.C.closure(function (obj) {
  2801. //防止拖动图标即打开了桌面应用
  2802. U.MD.D.click(this, obj);
  2803. }, [_x010204StudentDeskIconInfo[i]]),
  2804. "onclick": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_x010204StudentDeskIconInfo[i]])
  2808. }, _frag); //
  2809. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2810. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2811. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2812. }
  2813. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2814. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2815. _content = $$("div", {
  2816. className: "U_MD_D_KO",
  2817. "onmousedown": U.UF.C.closure(function (obj) {
  2818. //防止拖动图标即打开了桌面应用
  2819. U.MD.D.click(this, obj);
  2820. }, [_x320101StudentDeskIconInfo[i]]),
  2821. "onclick": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_x320101StudentDeskIconInfo[i]])
  2825. }, _frag); //
  2826. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2827. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2828. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2829. }
  2830. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2831. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2832. _content = $$("div", {
  2833. className: "U_MD_D_KO",
  2834. "onmousedown": U.UF.C.closure(function (obj) {
  2835. //防止拖动图标即打开了桌面应用
  2836. U.MD.D.click(this, obj);
  2837. }, [_trailStudentDeskIconInfo[i]]),
  2838. "onclick": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_trailStudentDeskIconInfo[i]])
  2842. }, _frag); //
  2843. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2844. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2845. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2846. }
  2847. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2848. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2849. _content = $$("div", {
  2850. className: "U_MD_D_KO",
  2851. "onmousedown": U.UF.C.closure(function (obj) {
  2852. //防止拖动图标即打开了桌面应用
  2853. U.MD.D.click(this, obj);
  2854. }, [_trialStudentDeskIconInfo[i]]),
  2855. "onclick": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_trialStudentDeskIconInfo[i]])
  2859. }, _frag); //
  2860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2863. }
  2864. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2865. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2882. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_szsyStudentDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_szsyStudentDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2899. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2900. _content = $$("div", {
  2901. className: "U_MD_D_KO",
  2902. "onmousedown": U.UF.C.closure(function (obj) {
  2903. //防止拖动图标即打开了桌面应用
  2904. U.MD.D.click(this, obj);
  2905. }, [_demoCocoStudentDeskIconInfo[i]]),
  2906. "onclick": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_demoCocoStudentDeskIconInfo[i]])
  2910. }, _frag); //
  2911. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2912. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2913. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2914. }
  2915. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2916. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2917. _content = $$("div", {
  2918. className: "U_MD_D_KO",
  2919. "onmousedown": U.UF.C.closure(function (obj) {
  2920. //防止拖动图标即打开了桌面应用
  2921. U.MD.D.click(this, obj);
  2922. }, [_x010608StudentDeskIconInfo[i]]),
  2923. "onclick": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_x010608StudentDeskIconInfo[i]])
  2927. }, _frag); //
  2928. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2929. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2930. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2931. }
  2932. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2933. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2934. _content = $$("div", {
  2935. className: "U_MD_D_KO",
  2936. "onmousedown": U.UF.C.closure(function (obj) {
  2937. //防止拖动图标即打开了桌面应用
  2938. U.MD.D.click(this, obj);
  2939. }, [_x010611StudentDeskIconInfo[i]]),
  2940. "onclick": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_x010611StudentDeskIconInfo[i]])
  2944. }, _frag); //
  2945. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2946. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2947. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2948. }
  2949. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2950. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_x010612StudentDeskIconInfo[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_x010612StudentDeskIconInfo[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2965. }
  2966. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2967. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2968. _content = $$("div", {
  2969. className: "U_MD_D_KO",
  2970. "onmousedown": U.UF.C.closure(function (obj) {
  2971. //防止拖动图标即打开了桌面应用
  2972. U.MD.D.click(this, obj);
  2973. }, [_tianyuantudentDeskIconInfo[i]]),
  2974. "onclick": U.UF.C.closure(function (obj) {
  2975. //防止拖动图标即打开了桌面应用
  2976. U.MD.D.click(this, obj);
  2977. }, [_tianyuantudentDeskIconInfo[i]])
  2978. }, _frag); //
  2979. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2980. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2981. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2982. }
  2983. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2984. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2985. _content = $$("div", {
  2986. className: "U_MD_D_KO",
  2987. "onmousedown": U.UF.C.closure(function (obj) {
  2988. //防止拖动图标即打开了桌面应用
  2989. U.MD.D.click(this, obj);
  2990. }, [_siesStudentDeskIconInfo[i]]),
  2991. "onclick": U.UF.C.closure(function (obj) {
  2992. //防止拖动图标即打开了桌面应用
  2993. U.MD.D.click(this, obj);
  2994. }, [_siesStudentDeskIconInfo[i]])
  2995. }, _frag); //
  2996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2999. }
  3000. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3001. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3002. _content = $$("div", {
  3003. className: "U_MD_D_KO",
  3004. "onmousedown": U.UF.C.closure(function (obj) {
  3005. //防止拖动图标即打开了桌面应用
  3006. U.MD.D.click(this, obj);
  3007. }, [_guzmsStudentDeskIconInfo[i]]),
  3008. "onclick": U.UF.C.closure(function (obj) {
  3009. //防止拖动图标即打开了桌面应用
  3010. U.MD.D.click(this, obj);
  3011. }, [_guzmsStudentDeskIconInfo[i]])
  3012. }, _frag); //
  3013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3016. }
  3017. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3018. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3019. _content = $$("div", {
  3020. className: "U_MD_D_KO",
  3021. "onmousedown": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_hkStudentDeskIconInfo[i]]),
  3025. "onclick": U.UF.C.closure(function (obj) {
  3026. //防止拖动图标即打开了桌面应用
  3027. U.MD.D.click(this, obj);
  3028. }, [_hkStudentDeskIconInfo[i]])
  3029. }, _frag); //
  3030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3033. }
  3034. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3035. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3036. _content = $$("div", {
  3037. className: "U_MD_D_KO",
  3038. "onmousedown": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_tycyStudentDeskIconInfo[i]]),
  3042. "onclick": U.UF.C.closure(function (obj) {
  3043. //防止拖动图标即打开了桌面应用
  3044. U.MD.D.click(this, obj);
  3045. }, [_tycyStudentDeskIconInfo[i]])
  3046. }, _frag); //
  3047. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3048. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3049. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3050. }
  3051. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3052. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3053. _content = $$("div", {
  3054. className: "U_MD_D_KO",
  3055. "onmousedown": U.UF.C.closure(function (obj) {
  3056. //防止拖动图标即打开了桌面应用
  3057. U.MD.D.click(this, obj);
  3058. }, [_ckcpsStudentDeskIconInfo[i]]),
  3059. "onclick": U.UF.C.closure(function (obj) {
  3060. //防止拖动图标即打开了桌面应用
  3061. U.MD.D.click(this, obj);
  3062. }, [_ckcpsStudentDeskIconInfo[i]])
  3063. }, _frag); //
  3064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3067. }
  3068. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3069. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3070. _content = $$("div", {
  3071. className: "U_MD_D_KO",
  3072. "onmousedown": U.UF.C.closure(function (obj) {
  3073. //防止拖动图标即打开了桌面应用
  3074. U.MD.D.click(this, obj);
  3075. }, [_hkaceStudentDeskIconInfo[i]]),
  3076. "onclick": U.UF.C.closure(function (obj) {
  3077. //防止拖动图标即打开了桌面应用
  3078. U.MD.D.click(this, obj);
  3079. }, [_hkaceStudentDeskIconInfo[i]])
  3080. }, _frag); //
  3081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3084. }
  3085. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3086. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3087. _content = $$("div", {
  3088. className: "U_MD_D_KO",
  3089. "onmousedown": U.UF.C.closure(function (obj) {
  3090. //防止拖动图标即打开了桌面应用
  3091. U.MD.D.click(this, obj);
  3092. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3093. "onclick": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_BSDNSstudentDesktopIconInfo[i]])
  3097. }, _frag); //
  3098. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3099. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3100. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3101. }
  3102. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3103. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3104. _content = $$("div", {
  3105. className: "U_MD_D_KO",
  3106. "onmousedown": U.UF.C.closure(function (obj) {
  3107. //防止拖动图标即打开了桌面应用
  3108. U.MD.D.click(this, obj);
  3109. }, [_cocobizStudentDeskIconInfo[i]]),
  3110. "onclick": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_cocobizStudentDeskIconInfo[i]])
  3114. }, _frag); //
  3115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3118. }
  3119. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3120. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3121. _content = $$("div", {
  3122. className: "U_MD_D_KO",
  3123. "onmousedown": U.UF.C.closure(function (obj) {
  3124. //防止拖动图标即打开了桌面应用
  3125. U.MD.D.click(this, obj);
  3126. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3127. "onclick": U.UF.C.closure(function (obj) {
  3128. //防止拖动图标即打开了桌面应用
  3129. U.MD.D.click(this, obj);
  3130. }, [_xxzjkyStudentDeskIconInfo[i]])
  3131. }, _frag); //
  3132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3135. }
  3136. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3137. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3138. _content = $$("div", {
  3139. className: "U_MD_D_KO",
  3140. "onmousedown": U.UF.C.closure(function (obj) {
  3141. //防止拖动图标即打开了桌面应用
  3142. U.MD.D.click(this, obj);
  3143. }, [_studentDesktopIconInfo[i]]),
  3144. "onclick": U.UF.C.closure(function (obj) {
  3145. //防止拖动图标即打开了桌面应用
  3146. U.MD.D.click(this, obj);
  3147. }, [_studentDesktopIconInfo[i]])
  3148. }, _frag); //
  3149. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3150. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3151. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3152. }
  3153. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3154. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3155. _content = $$("div", {
  3156. className: "U_MD_D_KO",
  3157. "onmousedown": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_tcStudentDeskIconInfo[i]]),
  3161. "onclick": U.UF.C.closure(function (obj) {
  3162. //防止拖动图标即打开了桌面应用
  3163. U.MD.D.click(this, obj);
  3164. }, [_tcStudentDeskIconInfo[i]])
  3165. }, _frag); //
  3166. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3167. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3168. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3169. }
  3170. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3171. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_szscStudentDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_szscStudentDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3188. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_studentDesktopIconInfo3[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_studentDesktopIconInfo3[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3203. }
  3204. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3205. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3206. _content = $$("div", {
  3207. className: "U_MD_D_KO",
  3208. "onmousedown": U.UF.C.closure(function (obj) {
  3209. //防止拖动图标即打开了桌面应用
  3210. U.MD.D.click(this, obj);
  3211. }, [_studentDesktopIconInfo2[i]]),
  3212. "onclick": U.UF.C.closure(function (obj) {
  3213. //防止拖动图标即打开了桌面应用
  3214. U.MD.D.click(this, obj);
  3215. }, [_studentDesktopIconInfo2[i]])
  3216. }, _frag); //
  3217. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3218. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3219. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3220. }
  3221. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3222. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3223. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3224. continue
  3225. }
  3226. _content = $$("div", {
  3227. className: "U_MD_D_KO",
  3228. "onmousedown": U.UF.C.closure(function (obj) {
  3229. //防止拖动图标即打开了桌面应用
  3230. U.MD.D.click(this, obj);
  3231. }, [_wanketeacherDesktopIconInfo[i]]),
  3232. "onclick": U.UF.C.closure(function (obj) {
  3233. //防止拖动图标即打开了桌面应用
  3234. U.MD.D.click(this, obj);
  3235. }, [_wanketeacherDesktopIconInfo[i]])
  3236. }, _frag); //
  3237. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3238. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3239. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3240. }
  3241. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3242. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3243. _content = $$("div", {
  3244. className: "U_MD_D_KO",
  3245. "onmousedown": U.UF.C.closure(function (obj) {
  3246. //防止拖动图标即打开了桌面应用
  3247. U.MD.D.click(this, obj);
  3248. }, [_wankeAdminDesktopIconInfo[i]]),
  3249. "onclick": U.UF.C.closure(function (obj) {
  3250. //防止拖动图标即打开了桌面应用
  3251. U.MD.D.click(this, obj);
  3252. }, [_wankeAdminDesktopIconInfo[i]])
  3253. }, _frag); //
  3254. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3255. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3256. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3257. }
  3258. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3259. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3260. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3261. continue
  3262. }
  3263. _content = $$("div", {
  3264. className: "U_MD_D_KO",
  3265. "onmousedown": U.UF.C.closure(function (obj) {
  3266. //防止拖动图标即打开了桌面应用
  3267. U.MD.D.click(this, obj);
  3268. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3269. "onclick": U.UF.C.closure(function (obj) {
  3270. //防止拖动图标即打开了桌面应用
  3271. U.MD.D.click(this, obj);
  3272. }, [_scnuaiTeacherDeskIconInfo[i]])
  3273. }, _frag); //
  3274. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3275. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3276. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3277. }
  3278. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3279. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3280. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3281. continue
  3282. }
  3283. _content = $$("div", {
  3284. className: "U_MD_D_KO",
  3285. "onmousedown": U.UF.C.closure(function (obj) {
  3286. //防止拖动图标即打开了桌面应用
  3287. U.MD.D.click(this, obj);
  3288. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3289. "onclick": U.UF.C.closure(function (obj) {
  3290. //防止拖动图标即打开了桌面应用
  3291. U.MD.D.click(this, obj);
  3292. }, [_BSDNSteacherDesktopIconInfo[i]])
  3293. }, _frag); //
  3294. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3295. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3296. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3297. }
  3298. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3299. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3300. _content = $$("div", {
  3301. className: "U_MD_D_KO",
  3302. "onmousedown": U.UF.C.closure(function (obj) {
  3303. //防止拖动图标即打开了桌面应用
  3304. U.MD.D.click(this, obj);
  3305. }, [_scnuaiAdminDeskIconInfo[i]]),
  3306. "onclick": U.UF.C.closure(function (obj) {
  3307. //防止拖动图标即打开了桌面应用
  3308. U.MD.D.click(this, obj);
  3309. }, [_scnuaiAdminDeskIconInfo[i]])
  3310. }, _frag); //
  3311. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3312. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3313. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3314. }
  3315. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3316. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3317. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3318. continue
  3319. }
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_jccssylTeacherDeskIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_jccssylTeacherDeskIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3336. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3337. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3338. continue
  3339. }
  3340. _content = $$("div", {
  3341. className: "U_MD_D_KO",
  3342. "onmousedown": U.UF.C.closure(function (obj) {
  3343. //防止拖动图标即打开了桌面应用
  3344. U.MD.D.click(this, obj);
  3345. }, [_caleTeacherDeskIconInfo[i]]),
  3346. "onclick": U.UF.C.closure(function (obj) {
  3347. //防止拖动图标即打开了桌面应用
  3348. U.MD.D.click(this, obj);
  3349. }, [_caleTeacherDeskIconInfo[i]])
  3350. }, _frag); //
  3351. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3352. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3353. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3354. }
  3355. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3356. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3357. _content = $$("div", {
  3358. className: "U_MD_D_KO",
  3359. "onmousedown": U.UF.C.closure(function (obj) {
  3360. //防止拖动图标即打开了桌面应用
  3361. U.MD.D.click(this, obj);
  3362. }, [_tpcOrganizerDeskIconInfo[i]]),
  3363. "onclick": U.UF.C.closure(function (obj) {
  3364. //防止拖动图标即打开了桌面应用
  3365. U.MD.D.click(this, obj);
  3366. }, [_tpcOrganizerDeskIconInfo[i]])
  3367. }, _frag); //
  3368. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3369. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3370. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3371. }
  3372. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3373. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3374. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3375. continue
  3376. }
  3377. _content = $$("div", {
  3378. className: "U_MD_D_KO",
  3379. "onmousedown": U.UF.C.closure(function (obj) {
  3380. //防止拖动图标即打开了桌面应用
  3381. U.MD.D.click(this, obj);
  3382. }, [_tpcTeacherDeskIconInfo[i]]),
  3383. "onclick": U.UF.C.closure(function (obj) {
  3384. //防止拖动图标即打开了桌面应用
  3385. U.MD.D.click(this, obj);
  3386. }, [_tpcTeacherDeskIconInfo[i]])
  3387. }, _frag); //
  3388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3391. }
  3392. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3393. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3394. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3395. continue
  3396. }
  3397. _content = $$("div", {
  3398. className: "U_MD_D_KO",
  3399. "onmousedown": U.UF.C.closure(function (obj) {
  3400. //防止拖动图标即打开了桌面应用
  3401. U.MD.D.click(this, obj);
  3402. }, [_teacherDesktopIconInfo2[i]]),
  3403. "onclick": U.UF.C.closure(function (obj) {
  3404. //防止拖动图标即打开了桌面应用
  3405. U.MD.D.click(this, obj);
  3406. }, [_teacherDesktopIconInfo2[i]])
  3407. }, _frag); //
  3408. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3409. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3410. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3411. }
  3412. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3413. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3414. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3415. continue
  3416. }
  3417. _content = $$("div", {
  3418. className: "U_MD_D_KO",
  3419. "onmousedown": U.UF.C.closure(function (obj) {
  3420. //防止拖动图标即打开了桌面应用
  3421. U.MD.D.click(this, obj);
  3422. }, [_thuioeTeacherDeskIconInfo[i]]),
  3423. "onclick": U.UF.C.closure(function (obj) {
  3424. //防止拖动图标即打开了桌面应用
  3425. U.MD.D.click(this, obj);
  3426. }, [_thuioeTeacherDeskIconInfo[i]])
  3427. }, _frag); //
  3428. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3429. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3430. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3431. }
  3432. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3433. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3434. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3435. continue
  3436. }
  3437. _content = $$("div", {
  3438. className: "U_MD_D_KO",
  3439. "onmousedown": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_lotechTeacherDeskIconInfo[i]]),
  3443. "onclick": U.UF.C.closure(function (obj) {
  3444. //防止拖动图标即打开了桌面应用
  3445. U.MD.D.click(this, obj);
  3446. }, [_lotechTeacherDeskIconInfo[i]])
  3447. }, _frag); //
  3448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3451. }//
  3452. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3453. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3454. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3455. continue
  3456. }
  3457. _content = $$("div", {
  3458. className: "U_MD_D_KO",
  3459. "onmousedown": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3463. "onclick": U.UF.C.closure(function (obj) {
  3464. //防止拖动图标即打开了桌面应用
  3465. U.MD.D.click(this, obj);
  3466. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3467. }, _frag); //
  3468. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3469. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3470. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3471. }
  3472. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3473. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3474. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3475. continue
  3476. }
  3477. _content = $$("div", {
  3478. className: "U_MD_D_KO",
  3479. "onmousedown": U.UF.C.closure(function (obj) {
  3480. //防止拖动图标即打开了桌面应用
  3481. U.MD.D.click(this, obj);
  3482. }, [_siesTeacherDeskIconInfo[i]]),
  3483. "onclick": U.UF.C.closure(function (obj) {
  3484. //防止拖动图标即打开了桌面应用
  3485. U.MD.D.click(this, obj);
  3486. }, [_siesTeacherDeskIconInfo[i]])
  3487. }, _frag); //
  3488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3491. }
  3492. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3493. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3494. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3495. continue
  3496. }
  3497. _content = $$("div", {
  3498. className: "U_MD_D_KO",
  3499. "onmousedown": U.UF.C.closure(function (obj) {
  3500. //防止拖动图标即打开了桌面应用
  3501. U.MD.D.click(this, obj);
  3502. }, [_guzmsTeacherDeskIconInfo[i]]),
  3503. "onclick": U.UF.C.closure(function (obj) {
  3504. //防止拖动图标即打开了桌面应用
  3505. U.MD.D.click(this, obj);
  3506. }, [_guzmsTeacherDeskIconInfo[i]])
  3507. }, _frag); //
  3508. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3509. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3510. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3511. }
  3512. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3513. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3514. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3515. continue
  3516. }
  3517. _content = $$("div", {
  3518. className: "U_MD_D_KO",
  3519. "onmousedown": U.UF.C.closure(function (obj) {
  3520. //防止拖动图标即打开了桌面应用
  3521. U.MD.D.click(this, obj);
  3522. }, [_longhuaTeacherDeskIconInfo[i]]),
  3523. "onclick": U.UF.C.closure(function (obj) {
  3524. //防止拖动图标即打开了桌面应用
  3525. U.MD.D.click(this, obj);
  3526. }, [_longhuaTeacherDeskIconInfo[i]])
  3527. }, _frag); //
  3528. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3529. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3530. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3531. }
  3532. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3533. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3534. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3535. continue
  3536. }
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_ytyTeacherDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_ytyTeacherDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3551. }
  3552. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3553. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3554. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3555. continue
  3556. }
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_yunhaiTeacherDeskIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3571. } //_hkStudentDeskIconInfo
  3572. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3573. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3574. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3575. continue
  3576. }
  3577. _content = $$("div", {
  3578. className: "U_MD_D_KO",
  3579. "onmousedown": U.UF.C.closure(function (obj) {
  3580. //防止拖动图标即打开了桌面应用
  3581. U.MD.D.click(this, obj);
  3582. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3583. "onclick": U.UF.C.closure(function (obj) {
  3584. //防止拖动图标即打开了桌面应用
  3585. U.MD.D.click(this, obj);
  3586. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3587. }, _frag); //
  3588. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3589. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3590. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3591. }
  3592. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3593. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3594. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3595. continue
  3596. }
  3597. _content = $$("div", {
  3598. className: "U_MD_D_KO",
  3599. "onmousedown": U.UF.C.closure(function (obj) {
  3600. //防止拖动图标即打开了桌面应用
  3601. U.MD.D.click(this, obj);
  3602. }, [_ricohTeacherDeskIconInfo[i]]),
  3603. "onclick": U.UF.C.closure(function (obj) {
  3604. //防止拖动图标即打开了桌面应用
  3605. U.MD.D.click(this, obj);
  3606. }, [_ricohTeacherDeskIconInfo[i]])
  3607. }, _frag); //
  3608. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3609. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3610. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3611. }
  3612. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3613. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3614. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3615. continue
  3616. }
  3617. _content = $$("div", {
  3618. className: "U_MD_D_KO",
  3619. "onmousedown": U.UF.C.closure(function (obj) {
  3620. //防止拖动图标即打开了桌面应用
  3621. U.MD.D.click(this, obj);
  3622. }, [_hkTeacherDeskIconInfo[i]]),
  3623. "onclick": U.UF.C.closure(function (obj) {
  3624. //防止拖动图标即打开了桌面应用
  3625. U.MD.D.click(this, obj);
  3626. }, [_hkTeacherDeskIconInfo[i]])
  3627. }, _frag); //
  3628. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3629. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3630. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3631. }
  3632. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3633. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3634. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3635. continue
  3636. }
  3637. _content = $$("div", {
  3638. className: "U_MD_D_KO",
  3639. "onmousedown": U.UF.C.closure(function (obj) {
  3640. //防止拖动图标即打开了桌面应用
  3641. U.MD.D.click(this, obj);
  3642. }, [_tycyTeacherDeskIconInfo[i]]),
  3643. "onclick": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_tycyTeacherDeskIconInfo[i]])
  3647. }, _frag); //
  3648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3651. }
  3652. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3653. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3654. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3655. continue
  3656. }
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_ckcpsTeacherDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3671. }
  3672. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3673. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_hkaceTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_hkaceTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3693. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3694. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3695. continue
  3696. }
  3697. _content = $$("div", {
  3698. className: "U_MD_D_KO",
  3699. "onmousedown": U.UF.C.closure(function (obj) {
  3700. //防止拖动图标即打开了桌面应用
  3701. U.MD.D.click(this, obj);
  3702. }, [_cocobizTeacherDeskIconInfo[i]]),
  3703. "onclick": U.UF.C.closure(function (obj) {
  3704. //防止拖动图标即打开了桌面应用
  3705. U.MD.D.click(this, obj);
  3706. }, [_cocobizTeacherDeskIconInfo[i]])
  3707. }, _frag); //
  3708. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3709. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3710. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3711. }
  3712. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3713. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3714. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3715. continue
  3716. }
  3717. _content = $$("div", {
  3718. className: "U_MD_D_KO",
  3719. "onmousedown": U.UF.C.closure(function (obj) {
  3720. //防止拖动图标即打开了桌面应用
  3721. U.MD.D.click(this, obj);
  3722. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3723. "onclick": U.UF.C.closure(function (obj) {
  3724. //防止拖动图标即打开了桌面应用
  3725. U.MD.D.click(this, obj);
  3726. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3727. }, _frag); //
  3728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3731. }
  3732. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3733. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3734. _content = $$("div", {
  3735. className: "U_MD_D_KO",
  3736. "onmousedown": U.UF.C.closure(function (obj) {
  3737. //防止拖动图标即打开了桌面应用
  3738. U.MD.D.click(this, obj);
  3739. }, [_gdjgAdminDeskIconInfo[i]]),
  3740. "onclick": U.UF.C.closure(function (obj) {
  3741. //防止拖动图标即打开了桌面应用
  3742. U.MD.D.click(this, obj);
  3743. }, [_gdjgAdminDeskIconInfo[i]])
  3744. }, _frag); //
  3745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3748. }
  3749. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3750. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3751. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3752. continue
  3753. }
  3754. _content = $$("div", {
  3755. className: "U_MD_D_KO",
  3756. "onmousedown": U.UF.C.closure(function (obj) {
  3757. //防止拖动图标即打开了桌面应用
  3758. U.MD.D.click(this, obj);
  3759. }, [_gdjgTeacherDeskIconInfo[i]]),
  3760. "onclick": U.UF.C.closure(function (obj) {
  3761. //防止拖动图标即打开了桌面应用
  3762. U.MD.D.click(this, obj);
  3763. }, [_gdjgTeacherDeskIconInfo[i]])
  3764. }, _frag); //
  3765. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3766. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3767. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3768. }
  3769. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3770. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3771. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3772. continue
  3773. }
  3774. _content = $$("div", {
  3775. className: "U_MD_D_KO",
  3776. "onmousedown": U.UF.C.closure(function (obj) {
  3777. //防止拖动图标即打开了桌面应用
  3778. U.MD.D.click(this, obj);
  3779. }, [_szherTeacherDeskIconInfo[i]]),
  3780. "onclick": U.UF.C.closure(function (obj) {
  3781. //防止拖动图标即打开了桌面应用
  3782. U.MD.D.click(this, obj);
  3783. }, [_szherTeacherDeskIconInfo[i]])
  3784. }, _frag); //
  3785. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3786. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3787. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3788. }
  3789. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3790. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3791. _content = $$("div", {
  3792. className: "U_MD_D_KO",
  3793. "onmousedown": U.UF.C.closure(function (obj) {
  3794. //防止拖动图标即打开了桌面应用
  3795. U.MD.D.click(this, obj);
  3796. }, [_heyuannAdminDeskIconInfo[i]]),
  3797. "onclick": U.UF.C.closure(function (obj) {
  3798. //防止拖动图标即打开了桌面应用
  3799. U.MD.D.click(this, obj);
  3800. }, [_heyuannAdminDeskIconInfo[i]])
  3801. }, _frag); //
  3802. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3803. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3804. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3805. }
  3806. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3807. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3808. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3809. continue
  3810. }
  3811. _content = $$("div", {
  3812. className: "U_MD_D_KO",
  3813. "onmousedown": U.UF.C.closure(function (obj) {
  3814. //防止拖动图标即打开了桌面应用
  3815. U.MD.D.click(this, obj);
  3816. }, [_heyuanTeacherDeskIconInfo[i]]),
  3817. "onclick": U.UF.C.closure(function (obj) {
  3818. //防止拖动图标即打开了桌面应用
  3819. U.MD.D.click(this, obj);
  3820. }, [_heyuanTeacherDeskIconInfo[i]])
  3821. }, _frag); //
  3822. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3823. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3824. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3825. } //
  3826. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3827. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3828. _content = $$("div", {
  3829. className: "U_MD_D_KO",
  3830. "onmousedown": U.UF.C.closure(function (obj) {
  3831. //防止拖动图标即打开了桌面应用
  3832. U.MD.D.click(this, obj);
  3833. }, [_dseiAdminDeskIconInfo[i]]),
  3834. "onclick": U.UF.C.closure(function (obj) {
  3835. //防止拖动图标即打开了桌面应用
  3836. U.MD.D.click(this, obj);
  3837. }, [_dseiAdminDeskIconInfo[i]])
  3838. }, _frag); //
  3839. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3840. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3841. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3842. }
  3843. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3844. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3845. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3846. continue
  3847. }
  3848. _content = $$("div", {
  3849. className: "U_MD_D_KO",
  3850. "onmousedown": U.UF.C.closure(function (obj) {
  3851. //防止拖动图标即打开了桌面应用
  3852. U.MD.D.click(this, obj);
  3853. }, [_dseiTeacherDeskIconInfo[i]]),
  3854. "onclick": U.UF.C.closure(function (obj) {
  3855. //防止拖动图标即打开了桌面应用
  3856. U.MD.D.click(this, obj);
  3857. }, [_dseiTeacherDeskIconInfo[i]])
  3858. }, _frag); //
  3859. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3860. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3861. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3862. } //
  3863. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3864. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3865. _content = $$("div", {
  3866. className: "U_MD_D_KO",
  3867. "onmousedown": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_chjyjAdminDeskIconInfo[i]]),
  3871. "onclick": U.UF.C.closure(function (obj) {
  3872. //防止拖动图标即打开了桌面应用
  3873. U.MD.D.click(this, obj);
  3874. }, [_chjyjAdminDeskIconInfo[i]])
  3875. }, _frag); //
  3876. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3877. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3878. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3879. }//
  3880. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3881. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3882. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3883. continue
  3884. }
  3885. _content = $$("div", {
  3886. className: "U_MD_D_KO",
  3887. "onmousedown": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_chjyjTeacherDeskIconInfo[i]]),
  3891. "onclick": U.UF.C.closure(function (obj) {
  3892. //防止拖动图标即打开了桌面应用
  3893. U.MD.D.click(this, obj);
  3894. }, [_chjyjTeacherDeskIconInfo[i]])
  3895. }, _frag); //
  3896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3899. }
  3900. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3901. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_szjkyAdminDeskIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_szjkyAdminDeskIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3916. }//
  3917. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3918. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3919. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_szjkyTeacherDeskIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_szjkyTeacherDeskIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3938. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_x020201AdminDeskIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_x020201AdminDeskIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3953. }//
  3954. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3955. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3956. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_x020201TeacherDeskIconInfo[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_x020201TeacherDeskIconInfo[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3975. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3976. _content = $$("div", {
  3977. className: "U_MD_D_KO",
  3978. "onmousedown": U.UF.C.closure(function (obj) {
  3979. //防止拖动图标即打开了桌面应用
  3980. U.MD.D.click(this, obj);
  3981. }, [_SCNUETAdminDeskIconInfo[i]]),
  3982. "onclick": U.UF.C.closure(function (obj) {
  3983. //防止拖动图标即打开了桌面应用
  3984. U.MD.D.click(this, obj);
  3985. }, [_SCNUETAdminDeskIconInfo[i]])
  3986. }, _frag); //
  3987. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3988. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3989. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3990. }//
  3991. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3992. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3993. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3994. continue
  3995. }
  3996. _content = $$("div", {
  3997. className: "U_MD_D_KO",
  3998. "onmousedown": U.UF.C.closure(function (obj) {
  3999. //防止拖动图标即打开了桌面应用
  4000. U.MD.D.click(this, obj);
  4001. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4002. "onclick": U.UF.C.closure(function (obj) {
  4003. //防止拖动图标即打开了桌面应用
  4004. U.MD.D.click(this, obj);
  4005. }, [_SCNUETTeacherDeskIconInfo[i]])
  4006. }, _frag); //
  4007. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4008. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4009. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4010. }
  4011. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4012. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4013. _content = $$("div", {
  4014. className: "U_MD_D_KO",
  4015. "onmousedown": U.UF.C.closure(function (obj) {
  4016. //防止拖动图标即打开了桌面应用
  4017. U.MD.D.click(this, obj);
  4018. }, [_futianAdminDeskIconInfo[i]]),
  4019. "onclick": U.UF.C.closure(function (obj) {
  4020. //防止拖动图标即打开了桌面应用
  4021. U.MD.D.click(this, obj);
  4022. }, [_futianAdminDeskIconInfo[i]])
  4023. }, _frag); //
  4024. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4025. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4026. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4027. }
  4028. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4029. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4030. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4031. continue
  4032. }
  4033. _content = $$("div", {
  4034. className: "U_MD_D_KO",
  4035. "onmousedown": U.UF.C.closure(function (obj) {
  4036. //防止拖动图标即打开了桌面应用
  4037. U.MD.D.click(this, obj);
  4038. }, [_futianTeacherDeskIconInfo[i]]),
  4039. "onclick": U.UF.C.closure(function (obj) {
  4040. //防止拖动图标即打开了桌面应用
  4041. U.MD.D.click(this, obj);
  4042. }, [_futianTeacherDeskIconInfo[i]])
  4043. }, _frag); //
  4044. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4045. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4046. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4047. }
  4048. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4049. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4050. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4051. continue
  4052. }
  4053. _content = $$("div", {
  4054. className: "U_MD_D_KO",
  4055. "onmousedown": U.UF.C.closure(function (obj) {
  4056. //防止拖动图标即打开了桌面应用
  4057. U.MD.D.click(this, obj);
  4058. }, [_MingdeTeacherDeskIcon[i]]),
  4059. "onclick": U.UF.C.closure(function (obj) {
  4060. //防止拖动图标即打开了桌面应用
  4061. U.MD.D.click(this, obj);
  4062. }, [_MingdeTeacherDeskIcon[i]])
  4063. }, _frag); //
  4064. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4065. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4066. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4067. }
  4068. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4069. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4070. _content = $$("div", {
  4071. className: "U_MD_D_KO",
  4072. "onmousedown": U.UF.C.closure(function (obj) {
  4073. //防止拖动图标即打开了桌面应用
  4074. U.MD.D.click(this, obj);
  4075. }, [_lhsAdminDesktopIconInfo[i]]),
  4076. "onclick": U.UF.C.closure(function (obj) {
  4077. //防止拖动图标即打开了桌面应用
  4078. U.MD.D.click(this, obj);
  4079. }, [_lhsAdminDesktopIconInfo[i]])
  4080. }, _frag); //
  4081. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4082. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4083. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4084. }
  4085. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4086. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4087. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4088. continue
  4089. }
  4090. _content = $$("div", {
  4091. className: "U_MD_D_KO",
  4092. "onmousedown": U.UF.C.closure(function (obj) {
  4093. //防止拖动图标即打开了桌面应用
  4094. U.MD.D.click(this, obj);
  4095. }, [_lhsteacherDesktopIconInfo[i]]),
  4096. "onclick": U.UF.C.closure(function (obj) {
  4097. //防止拖动图标即打开了桌面应用
  4098. U.MD.D.click(this, obj);
  4099. }, [_lhsteacherDesktopIconInfo[i]])
  4100. }, _frag); //
  4101. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4102. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4103. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4104. }
  4105. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4106. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4107. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4108. continue
  4109. }
  4110. _content = $$("div", {
  4111. className: "U_MD_D_KO",
  4112. "onmousedown": U.UF.C.closure(function (obj) {
  4113. //防止拖动图标即打开了桌面应用
  4114. U.MD.D.click(this, obj);
  4115. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4116. "onclick": U.UF.C.closure(function (obj) {
  4117. //防止拖动图标即打开了桌面应用
  4118. U.MD.D.click(this, obj);
  4119. }, [_zhoujiateacherDesktopIconInfo[i]])
  4120. }, _frag); //
  4121. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4122. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4123. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4124. }
  4125. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4126. for (i = 0; i < _hanDeskIcon.length; i++) {
  4127. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4128. continue
  4129. }
  4130. _content = $$("div", {
  4131. className: "U_MD_D_KO",
  4132. "onmousedown": U.UF.C.closure(function (obj) {
  4133. //防止拖动图标即打开了桌面应用
  4134. U.MD.D.click(this, obj);
  4135. }, [_hanDeskIcon[i]]),
  4136. "onclick": U.UF.C.closure(function (obj) {
  4137. //防止拖动图标即打开了桌面应用
  4138. U.MD.D.click(this, obj);
  4139. }, [_hanDeskIcon[i]])
  4140. }, _frag); //
  4141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4144. }
  4145. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4146. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4147. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4148. continue
  4149. }
  4150. _content = $$("div", {
  4151. className: "U_MD_D_KO",
  4152. "onmousedown": U.UF.C.closure(function (obj) {
  4153. //防止拖动图标即打开了桌面应用
  4154. U.MD.D.click(this, obj);
  4155. }, [_orgStemDeskIcon[i]]),
  4156. "onclick": U.UF.C.closure(function (obj) {
  4157. //防止拖动图标即打开了桌面应用
  4158. U.MD.D.click(this, obj);
  4159. }, [_orgStemDeskIcon[i]])
  4160. }, _frag); //
  4161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4164. }
  4165. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4166. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4167. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4168. continue
  4169. }
  4170. _content = $$("div", {
  4171. className: "U_MD_D_KO",
  4172. "onmousedown": U.UF.C.closure(function (obj) {
  4173. //防止拖动图标即打开了桌面应用
  4174. U.MD.D.click(this, obj);
  4175. }, [_szulsDeskIcon[i]]),
  4176. "onclick": U.UF.C.closure(function (obj) {
  4177. //防止拖动图标即打开了桌面应用
  4178. U.MD.D.click(this, obj);
  4179. }, [_szulsDeskIcon[i]])
  4180. }, _frag); //
  4181. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4182. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4183. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4184. }
  4185. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4186. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4187. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4188. continue
  4189. }
  4190. _content = $$("div", {
  4191. className: "U_MD_D_KO",
  4192. "onmousedown": U.UF.C.closure(function (obj) {
  4193. //防止拖动图标即打开了桌面应用
  4194. U.MD.D.click(this, obj);
  4195. }, [_orgDesktopIconInfo[i]]),
  4196. "onclick": U.UF.C.closure(function (obj) {
  4197. //防止拖动图标即打开了桌面应用
  4198. U.MD.D.click(this, obj);
  4199. }, [_orgDesktopIconInfo[i]])
  4200. }, _frag); //
  4201. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4202. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4203. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4204. }
  4205. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4206. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4207. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4208. continue
  4209. }
  4210. _content = $$("div", {
  4211. className: "U_MD_D_KO",
  4212. "onmousedown": U.UF.C.closure(function (obj) {
  4213. //防止拖动图标即打开了桌面应用
  4214. U.MD.D.click(this, obj);
  4215. }, [_schoolDesktopIconInfo[i]]),
  4216. "onclick": U.UF.C.closure(function (obj) {
  4217. //防止拖动图标即打开了桌面应用
  4218. U.MD.D.click(this, obj);
  4219. }, [_schoolDesktopIconInfo[i]])
  4220. }, _frag); //
  4221. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4222. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4223. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4224. }
  4225. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4226. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4227. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4228. continue
  4229. }
  4230. _content = $$("div", {
  4231. className: "U_MD_D_KO",
  4232. "onmousedown": U.UF.C.closure(function (obj) {
  4233. //防止拖动图标即打开了桌面应用
  4234. U.MD.D.click(this, obj);
  4235. }, [_GMteacherDesktopIconInfo[i]]),
  4236. "onclick": U.UF.C.closure(function (obj) {
  4237. //防止拖动图标即打开了桌面应用
  4238. U.MD.D.click(this, obj);
  4239. }, [_GMteacherDesktopIconInfo[i]])
  4240. }, _frag); //
  4241. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4242. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4243. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4244. }
  4245. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4246. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4247. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4248. continue
  4249. }
  4250. _content = $$("div", {
  4251. className: "U_MD_D_KO",
  4252. "onmousedown": U.UF.C.closure(function (obj) {
  4253. //防止拖动图标即打开了桌面应用
  4254. U.MD.D.click(this, obj);
  4255. }, [_SONGteacherDesktopIconInfo[i]]),
  4256. "onclick": U.UF.C.closure(function (obj) {
  4257. //防止拖动图标即打开了桌面应用
  4258. U.MD.D.click(this, obj);
  4259. }, [_SONGteacherDesktopIconInfo[i]])
  4260. }, _frag); //
  4261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4264. }
  4265. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4266. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4267. _content = $$("div", {
  4268. className: "U_MD_D_KO",
  4269. "onmousedown": U.UF.C.closure(function (obj) {
  4270. //防止拖动图标即打开了桌面应用
  4271. U.MD.D.click(this, obj);
  4272. }, [_GMstudentDesktopIconInfo[i]]),
  4273. "onclick": U.UF.C.closure(function (obj) {
  4274. //防止拖动图标即打开了桌面应用
  4275. U.MD.D.click(this, obj);
  4276. }, [_GMstudentDesktopIconInfo[i]])
  4277. }, _frag); //
  4278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4281. }
  4282. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4283. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4284. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4285. continue
  4286. }
  4287. _content = $$("div", {
  4288. className: "U_MD_D_KO",
  4289. "onmousedown": U.UF.C.closure(function (obj) {
  4290. //防止拖动图标即打开了桌面应用
  4291. U.MD.D.click(this, obj);
  4292. }, [_tcTeacherDeskIconInfo[i]]),
  4293. "onclick": U.UF.C.closure(function (obj) {
  4294. //防止拖动图标即打开了桌面应用
  4295. U.MD.D.click(this, obj);
  4296. }, [_tcTeacherDeskIconInfo[i]])
  4297. }, _frag); //
  4298. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4299. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4300. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4301. }
  4302. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4303. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4304. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4305. continue
  4306. }
  4307. _content = $$("div", {
  4308. className: "U_MD_D_KO",
  4309. "onmousedown": U.UF.C.closure(function (obj) {
  4310. //防止拖动图标即打开了桌面应用
  4311. U.MD.D.click(this, obj);
  4312. }, [_tcOrganizerDeskIconInfo[i]]),
  4313. "onclick": U.UF.C.closure(function (obj) {
  4314. //防止拖动图标即打开了桌面应用
  4315. U.MD.D.click(this, obj);
  4316. }, [_tcOrganizerDeskIconInfo[i]])
  4317. }, _frag); //
  4318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4321. }
  4322. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4323. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4324. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4325. continue
  4326. }
  4327. _content = $$("div", {
  4328. className: "U_MD_D_KO",
  4329. "onmousedown": U.UF.C.closure(function (obj) {
  4330. //防止拖动图标即打开了桌面应用
  4331. U.MD.D.click(this, obj);
  4332. }, [_szscTeacherDeskIconInfo[i]]),
  4333. "onclick": U.UF.C.closure(function (obj) {
  4334. //防止拖动图标即打开了桌面应用
  4335. U.MD.D.click(this, obj);
  4336. }, [_szscTeacherDeskIconInfo[i]])
  4337. }, _frag); //
  4338. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4339. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4340. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4341. }
  4342. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4343. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4344. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4345. continue
  4346. }
  4347. _content = $$("div", {
  4348. className: "U_MD_D_KO",
  4349. "onmousedown": U.UF.C.closure(function (obj) {
  4350. //防止拖动图标即打开了桌面应用
  4351. U.MD.D.click(this, obj);
  4352. }, [_szscOrganizerDeskIconInfo[i]]),
  4353. "onclick": U.UF.C.closure(function (obj) {
  4354. //防止拖动图标即打开了桌面应用
  4355. U.MD.D.click(this, obj);
  4356. }, [_szscOrganizerDeskIconInfo[i]])
  4357. }, _frag); //
  4358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4361. }
  4362. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4363. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4364. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4365. continue
  4366. }
  4367. _content = $$("div", {
  4368. className: "U_MD_D_KO",
  4369. "onmousedown": U.UF.C.closure(function (obj) {
  4370. //防止拖动图标即打开了桌面应用
  4371. U.MD.D.click(this, obj);
  4372. }, [_nsfxTeacherDeskIconInfo[i]]),
  4373. "onclick": U.UF.C.closure(function (obj) {
  4374. //防止拖动图标即打开了桌面应用
  4375. U.MD.D.click(this, obj);
  4376. }, [_nsfxTeacherDeskIconInfo[i]])
  4377. }, _frag); //
  4378. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4379. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4380. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4381. }
  4382. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4383. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4384. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4385. continue
  4386. }
  4387. _content = $$("div", {
  4388. className: "U_MD_D_KO",
  4389. "onmousedown": U.UF.C.closure(function (obj) {
  4390. //防止拖动图标即打开了桌面应用
  4391. U.MD.D.click(this, obj);
  4392. }, [_stiaTeacherDeskIconInfo[i]]),
  4393. "onclick": U.UF.C.closure(function (obj) {
  4394. //防止拖动图标即打开了桌面应用
  4395. U.MD.D.click(this, obj);
  4396. }, [_stiaTeacherDeskIconInfo[i]])
  4397. }, _frag); //
  4398. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4399. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4400. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4401. }
  4402. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4403. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4404. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4405. continue
  4406. }
  4407. _content = $$("div", {
  4408. className: "U_MD_D_KO",
  4409. "onmousedown": U.UF.C.closure(function (obj) {
  4410. //防止拖动图标即打开了桌面应用
  4411. U.MD.D.click(this, obj);
  4412. }, [_szdjgTeacherDeskIconInfo[i]]),
  4413. "onclick": U.UF.C.closure(function (obj) {
  4414. //防止拖动图标即打开了桌面应用
  4415. U.MD.D.click(this, obj);
  4416. }, [_szdjgTeacherDeskIconInfo[i]])
  4417. }, _frag); //
  4418. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4419. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4420. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4421. }
  4422. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4423. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4424. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4425. continue
  4426. }
  4427. _content = $$("div", {
  4428. className: "U_MD_D_KO",
  4429. "onmousedown": U.UF.C.closure(function (obj) {
  4430. //防止拖动图标即打开了桌面应用
  4431. U.MD.D.click(this, obj);
  4432. }, [_x010607TeacherDeskIconInfo[i]]),
  4433. "onclick": U.UF.C.closure(function (obj) {
  4434. //防止拖动图标即打开了桌面应用
  4435. U.MD.D.click(this, obj);
  4436. }, [_x010607TeacherDeskIconInfo[i]])
  4437. }, _frag); //
  4438. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4439. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4440. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4441. }
  4442. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4443. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4444. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4445. continue
  4446. }
  4447. _content = $$("div", {
  4448. className: "U_MD_D_KO",
  4449. "onmousedown": U.UF.C.closure(function (obj) {
  4450. //防止拖动图标即打开了桌面应用
  4451. U.MD.D.click(this, obj);
  4452. }, [_xhlyTeacherDeskIconInfo[i]]),
  4453. "onclick": U.UF.C.closure(function (obj) {
  4454. //防止拖动图标即打开了桌面应用
  4455. U.MD.D.click(this, obj);
  4456. }, [_xhlyTeacherDeskIconInfo[i]])
  4457. }, _frag); //
  4458. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4459. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4460. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4461. }
  4462. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4463. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4464. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4465. continue
  4466. }
  4467. _content = $$("div", {
  4468. className: "U_MD_D_KO",
  4469. "onmousedown": U.UF.C.closure(function (obj) {
  4470. //防止拖动图标即打开了桌面应用
  4471. U.MD.D.click(this, obj);
  4472. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4473. "onclick": U.UF.C.closure(function (obj) {
  4474. //防止拖动图标即打开了桌面应用
  4475. U.MD.D.click(this, obj);
  4476. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4477. }, _frag); //
  4478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4481. }
  4482. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4483. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4484. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4485. continue
  4486. }
  4487. _content = $$("div", {
  4488. className: "U_MD_D_KO",
  4489. "onmousedown": U.UF.C.closure(function (obj) {
  4490. //防止拖动图标即打开了桌面应用
  4491. U.MD.D.click(this, obj);
  4492. }, [_x010503TeacherDeskIconInfo[i]]),
  4493. "onclick": U.UF.C.closure(function (obj) {
  4494. //防止拖动图标即打开了桌面应用
  4495. U.MD.D.click(this, obj);
  4496. }, [_x010503TeacherDeskIconInfo[i]])
  4497. }, _frag); //
  4498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4501. }
  4502. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4503. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4504. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4505. continue
  4506. }
  4507. _content = $$("div", {
  4508. className: "U_MD_D_KO",
  4509. "onmousedown": U.UF.C.closure(function (obj) {
  4510. //防止拖动图标即打开了桌面应用
  4511. U.MD.D.click(this, obj);
  4512. }, [_x010504TeacherDeskIconInfo[i]]),
  4513. "onclick": U.UF.C.closure(function (obj) {
  4514. //防止拖动图标即打开了桌面应用
  4515. U.MD.D.click(this, obj);
  4516. }, [_x010504TeacherDeskIconInfo[i]])
  4517. }, _frag); //
  4518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4521. }
  4522. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4523. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4524. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4525. continue
  4526. }
  4527. _content = $$("div", {
  4528. className: "U_MD_D_KO",
  4529. "onmousedown": U.UF.C.closure(function (obj) {
  4530. //防止拖动图标即打开了桌面应用
  4531. U.MD.D.click(this, obj);
  4532. }, [_x010505TeacherDeskIconInfo[i]]),
  4533. "onclick": U.UF.C.closure(function (obj) {
  4534. //防止拖动图标即打开了桌面应用
  4535. U.MD.D.click(this, obj);
  4536. }, [_x010505TeacherDeskIconInfo[i]])
  4537. }, _frag); //
  4538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4541. }
  4542. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4543. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4544. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4545. continue
  4546. }
  4547. _content = $$("div", {
  4548. className: "U_MD_D_KO",
  4549. "onmousedown": U.UF.C.closure(function (obj) {
  4550. //防止拖动图标即打开了桌面应用
  4551. U.MD.D.click(this, obj);
  4552. }, [_x010404TeacherDeskIconInfo[i]]),
  4553. "onclick": U.UF.C.closure(function (obj) {
  4554. //防止拖动图标即打开了桌面应用
  4555. U.MD.D.click(this, obj);
  4556. }, [_x010404TeacherDeskIconInfo[i]])
  4557. }, _frag); //
  4558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4561. }
  4562. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4563. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4564. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4565. continue
  4566. }
  4567. _content = $$("div", {
  4568. className: "U_MD_D_KO",
  4569. "onmousedown": U.UF.C.closure(function (obj) {
  4570. //防止拖动图标即打开了桌面应用
  4571. U.MD.D.click(this, obj);
  4572. }, [_x010204TeacherDeskIconInfo[i]]),
  4573. "onclick": U.UF.C.closure(function (obj) {
  4574. //防止拖动图标即打开了桌面应用
  4575. U.MD.D.click(this, obj);
  4576. }, [_x010204TeacherDeskIconInfo[i]])
  4577. }, _frag); //
  4578. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4579. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4580. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4581. }
  4582. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4583. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4584. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4585. continue
  4586. }
  4587. _content = $$("div", {
  4588. className: "U_MD_D_KO",
  4589. "onmousedown": U.UF.C.closure(function (obj) {
  4590. //防止拖动图标即打开了桌面应用
  4591. U.MD.D.click(this, obj);
  4592. }, [_x320101TeacherDeskIconInfo[i]]),
  4593. "onclick": U.UF.C.closure(function (obj) {
  4594. //防止拖动图标即打开了桌面应用
  4595. U.MD.D.click(this, obj);
  4596. }, [_x320101TeacherDeskIconInfo[i]])
  4597. }, _frag); //
  4598. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4599. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4600. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4601. }
  4602. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4603. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4604. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4605. continue
  4606. }
  4607. _content = $$("div", {
  4608. className: "U_MD_D_KO",
  4609. "onmousedown": U.UF.C.closure(function (obj) {
  4610. //防止拖动图标即打开了桌面应用
  4611. U.MD.D.click(this, obj);
  4612. }, [_trailTeacherDeskIconInfo[i]]),
  4613. "onclick": U.UF.C.closure(function (obj) {
  4614. //防止拖动图标即打开了桌面应用
  4615. U.MD.D.click(this, obj);
  4616. }, [_trailTeacherDeskIconInfo[i]])
  4617. }, _frag); //
  4618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4621. }
  4622. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4623. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4624. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4625. continue
  4626. }
  4627. _content = $$("div", {
  4628. className: "U_MD_D_KO",
  4629. "onmousedown": U.UF.C.closure(function (obj) {
  4630. //防止拖动图标即打开了桌面应用
  4631. U.MD.D.click(this, obj);
  4632. }, [_trialTeacherDeskIconInfo[i]]),
  4633. "onclick": U.UF.C.closure(function (obj) {
  4634. //防止拖动图标即打开了桌面应用
  4635. U.MD.D.click(this, obj);
  4636. }, [_trialTeacherDeskIconInfo[i]])
  4637. }, _frag); //
  4638. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4639. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4640. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4641. }
  4642. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4643. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4644. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4645. continue
  4646. }
  4647. _content = $$("div", {
  4648. className: "U_MD_D_KO",
  4649. "onmousedown": U.UF.C.closure(function (obj) {
  4650. //防止拖动图标即打开了桌面应用
  4651. U.MD.D.click(this, obj);
  4652. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4653. "onclick": U.UF.C.closure(function (obj) {
  4654. //防止拖动图标即打开了桌面应用
  4655. U.MD.D.click(this, obj);
  4656. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4657. }, _frag); //
  4658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4661. }
  4662. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4663. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4664. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4665. continue
  4666. }
  4667. _content = $$("div", {
  4668. className: "U_MD_D_KO",
  4669. "onmousedown": U.UF.C.closure(function (obj) {
  4670. //防止拖动图标即打开了桌面应用
  4671. U.MD.D.click(this, obj);
  4672. }, [_szsyTeacherDeskIconInfo[i]]),
  4673. "onclick": U.UF.C.closure(function (obj) {
  4674. //防止拖动图标即打开了桌面应用
  4675. U.MD.D.click(this, obj);
  4676. }, [_szsyTeacherDeskIconInfo[i]])
  4677. }, _frag); //
  4678. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4679. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4680. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4681. }
  4682. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4683. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4684. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4685. continue
  4686. }
  4687. _content = $$("div", {
  4688. className: "U_MD_D_KO",
  4689. "onmousedown": U.UF.C.closure(function (obj) {
  4690. //防止拖动图标即打开了桌面应用
  4691. U.MD.D.click(this, obj);
  4692. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4693. "onclick": U.UF.C.closure(function (obj) {
  4694. //防止拖动图标即打开了桌面应用
  4695. U.MD.D.click(this, obj);
  4696. }, [_demoCocoTeacherDeskIconInfo[i]])
  4697. }, _frag); //
  4698. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4699. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4700. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4701. }
  4702. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4703. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4704. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4705. continue
  4706. }
  4707. _content = $$("div", {
  4708. className: "U_MD_D_KO",
  4709. "onmousedown": U.UF.C.closure(function (obj) {
  4710. //防止拖动图标即打开了桌面应用
  4711. U.MD.D.click(this, obj);
  4712. }, [_x010608TeacherDeskIconInfo[i]]),
  4713. "onclick": U.UF.C.closure(function (obj) {
  4714. //防止拖动图标即打开了桌面应用
  4715. U.MD.D.click(this, obj);
  4716. }, [_x010608TeacherDeskIconInfo[i]])
  4717. }, _frag); //
  4718. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4719. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4720. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4721. }
  4722. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4723. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4724. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4725. continue
  4726. }
  4727. _content = $$("div", {
  4728. className: "U_MD_D_KO",
  4729. "onmousedown": U.UF.C.closure(function (obj) {
  4730. //防止拖动图标即打开了桌面应用
  4731. U.MD.D.click(this, obj);
  4732. }, [_x010611TeacherDeskIconInfo[i]]),
  4733. "onclick": U.UF.C.closure(function (obj) {
  4734. //防止拖动图标即打开了桌面应用
  4735. U.MD.D.click(this, obj);
  4736. }, [_x010611TeacherDeskIconInfo[i]])
  4737. }, _frag); //
  4738. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4739. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4740. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4741. }
  4742. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4743. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4744. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4745. continue
  4746. }
  4747. _content = $$("div", {
  4748. className: "U_MD_D_KO",
  4749. "onmousedown": U.UF.C.closure(function (obj) {
  4750. //防止拖动图标即打开了桌面应用
  4751. U.MD.D.click(this, obj);
  4752. }, [_x010612TeacherDeskIconInfo[i]]),
  4753. "onclick": U.UF.C.closure(function (obj) {
  4754. //防止拖动图标即打开了桌面应用
  4755. U.MD.D.click(this, obj);
  4756. }, [_x010612TeacherDeskIconInfo[i]])
  4757. }, _frag); //
  4758. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4759. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4760. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4761. }
  4762. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4763. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4764. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4765. continue
  4766. }
  4767. _content = $$("div", {
  4768. className: "U_MD_D_KO",
  4769. "onmousedown": U.UF.C.closure(function (obj) {
  4770. //防止拖动图标即打开了桌面应用
  4771. U.MD.D.click(this, obj);
  4772. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4773. "onclick": U.UF.C.closure(function (obj) {
  4774. //防止拖动图标即打开了桌面应用
  4775. U.MD.D.click(this, obj);
  4776. }, [_tianyuanTeacherDeskIconInfo[i]])
  4777. }, _frag); //
  4778. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4779. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4780. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4781. }
  4782. } else {
  4783. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4784. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4785. continue
  4786. }
  4787. _content = $$("div", {
  4788. className: "U_MD_D_KO",
  4789. "onmousedown": U.UF.C.closure(function (obj) {
  4790. //防止拖动图标即打开了桌面应用
  4791. U.MD.D.click(this, obj);
  4792. }, [_teacherDesktopIconInfo[i]]),
  4793. "onclick": U.UF.C.closure(function (obj) {
  4794. //防止拖动图标即打开了桌面应用
  4795. U.MD.D.click(this, obj);
  4796. }, [_teacherDesktopIconInfo[i]])
  4797. }, _frag); //
  4798. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4799. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4800. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4801. }
  4802. }
  4803. } else {
  4804. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4805. _content = $$("div", {
  4806. className: "U_MD_D_KO",
  4807. style: { 'width': '124px', 'height': '145px' },
  4808. "onmousedown": U.UF.C.closure(function (obj) {
  4809. //防止拖动图标即打开了桌面应用
  4810. U.MD.D.click(this, obj);
  4811. }, [_easyDesktopIconInfo[i]]),
  4812. "onclick": U.UF.C.closure(function (obj) {
  4813. //防止拖动图标即打开了桌面应用
  4814. U.MD.D.click(this, obj);
  4815. }, [_easyDesktopIconInfo[i]])
  4816. }, _frag); //
  4817. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4820. }
  4821. }
  4822. if (type == 1) {
  4823. //加载好后给图标定位
  4824. U.MD.D.iconPostion($(_frag).Child());
  4825. } else {
  4826. //加载好后给图标定位
  4827. U.MD.D.iconPostion2($(_frag).Child());
  4828. }
  4829. //把图标加载到页面
  4830. el.appendChild(_frag);
  4831. }
  4832. /**
  4833. * 显示任务栏
  4834. *
  4835. * @param {element} 桌面元素
  4836. */
  4837. U.MD.D.I.displayTaskbar = function (el) {
  4838. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4839. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4840. //任务栏位置变化
  4841. U.selectEl(el).css({ "bottom": "0px" });
  4842. //桌面位置变话
  4843. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4844. }
  4845. }
  4846. //#region 桌面图标拖动逻辑
  4847. /**
  4848. * 桌面排列图标
  4849. *
  4850. * @param {element} 桌面元素
  4851. * @param {object} 上下相距的距离
  4852. * @param {object} 左右相距的距离
  4853. * @return {object} 命名空间
  4854. */
  4855. U.MD.D.iconPostion = function (childs, top, left) {
  4856. var i; //用于循环处理
  4857. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4858. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4859. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4860. for (i = 0; i < childs.length; i++) {
  4861. //如果竖排top超过了范围处理
  4862. if (top + 95 > US.height - 10) {
  4863. //left超过了页面范围处理,则向上重叠打印处理
  4864. if ((left + 180) > US.width) {
  4865. top -= 110;
  4866. left -= 90;
  4867. }
  4868. //没有超过范围,那么left+90添加到下一个竖排打印
  4869. else {
  4870. left += 90;
  4871. top = 15;
  4872. };
  4873. }
  4874. //给图标的位置赋值
  4875. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4876. if (i < childs.length - 1) {
  4877. //页面图标每次向下加95
  4878. top += 95;
  4879. }
  4880. }
  4881. //返回最后调用的图标的位置
  4882. return [top, left];
  4883. }
  4884. /**
  4885. * 桌面排列图标
  4886. *
  4887. * @param {element} 桌面元素
  4888. * @param {object} 上下相距的距离
  4889. * @param {object} 左右相距的距离
  4890. * @return {object} 命名空间
  4891. */
  4892. U.MD.D.iconPostion2 = function (childs, top, left) {
  4893. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4894. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4895. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4896. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4897. for (i = 0; i < childs.length; i++) {
  4898. //如果竖排top超过了范围处理
  4899. if (left + 150 > US.width - 10) {
  4900. //left超过了页面范围处理,则向上重叠打印处理
  4901. if ((top + 180) > US.Height) {
  4902. top -= 150;
  4903. left -= 150;
  4904. }
  4905. //没有超过范围,那么left+90添加到下一个竖排打印
  4906. else {
  4907. top += 150;
  4908. left = ol;
  4909. };
  4910. }
  4911. //给图标的位置赋值
  4912. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4913. if (i < childs.length - 1) {
  4914. //页面图标每次向下加95
  4915. left += 150;
  4916. }
  4917. }
  4918. //返回最后调用的图标的位置
  4919. return [top, left];
  4920. }
  4921. /**
  4922. * 桌面点击事件逻辑
  4923. *
  4924. * @param {element} 桌面元素
  4925. * @param {object} 上下相距的距离
  4926. * @param {object} 左右相距的距离
  4927. * @return {object} 命名空间
  4928. */
  4929. U.MD.D.click = function (el, obj) {
  4930. var _buttonnumber = event.button; //点击的按钮的事件值
  4931. var _userinfo = US.userInfo;
  4932. U.UF.EV.stopBubble(); //阻止向上冒泡
  4933. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4934. if (_buttonnumber < 2) {
  4935. //如果是click事件的处理
  4936. if (event.type == "click") {
  4937. //如果元素在mousemove事件中没有移动则出发click事件
  4938. if (!U.MD.D.I.IsDrag) {
  4939. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4940. U.alert("请先登录您的账号!");
  4941. setTimeout(() => {
  4942. U.MD.U.L.login();
  4943. }, 2000);
  4944. } else {
  4945. //打开应用处理
  4946. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4947. }
  4948. }
  4949. }
  4950. //如果是mouse事件的处理
  4951. else {
  4952. if (US.Config.type == '1') {
  4953. //拖动处理,添加拖动和拖动结束事件
  4954. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4955. }
  4956. }
  4957. U.MD.D.I.IsDrag = false;
  4958. }
  4959. }
  4960. /**
  4961. * 拖动的处理
  4962. *
  4963. */
  4964. U.MD.D.iconMove = function () {
  4965. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4966. U.MD.D.I.IsDrag = true;
  4967. }
  4968. /**
  4969. * 拖动结束后,这里是定位处理,以网状的形式定位
  4970. *
  4971. * @param {element} 拖动的元素
  4972. * @return {object} 命名空间
  4973. */
  4974. U.MD.D.iconUp = function (el) {
  4975. var _top = 15,
  4976. _left = 20,
  4977. _margin,
  4978. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4979. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4980. if (_positioninfo["OT"] > 15) {
  4981. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4982. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4983. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4984. }
  4985. if (_positioninfo["OL"] > 20) {
  4986. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4987. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4988. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4989. }
  4990. //while循环判断么一个重叠的元素
  4991. do {
  4992. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4993. _top = _positioninfo[0] + 95; //得到定位后的top
  4994. _left = _positioninfo[1]; //得到定位后的left
  4995. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4996. }
  4997. /**
  4998. * 判断拖动后图标是否重叠
  4999. *
  5000. * @param {element} 拖动的元素
  5001. * @param {element} 桌面所有的元素
  5002. * @param {array} 拖动元素的位置
  5003. ----------[0] 上 top
  5004. ----------[1] 左 left
  5005. * @return {object} 命名空间
  5006. */
  5007. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5008. //循环所有的图标
  5009. for (var i = 0; i < childs.length; i++) {
  5010. //判断有没有和该图标诶子重叠的元素
  5011. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5012. return childs[i]; //如果有返回
  5013. }
  5014. }
  5015. }
  5016. //#endregion
  5017. //#endregion
  5018. //#region 桌面应用
  5019. /**
  5020. * 打开应用
  5021. *
  5022. * @param {string} 类型
  5023. -----------------Disk 网盘系统
  5024. -----------------PDisk 学习系统网盘
  5025. -----------------Poto 图片
  5026. -----------------Video 视频
  5027. -----------------Music 音乐
  5028. -----------------Word word
  5029. -----------------Excel excel
  5030. -----------------Txt 记事本
  5031. -----------------PB 学习系统
  5032. -----------------Blog 朋友圈系统
  5033. -----------------FTP ftp系统
  5034. -----------------Group 好友群
  5035. -----------------SY 首页系统
  5036. -----------------Set 个人设置
  5037. -----------------XSet 系统设置
  5038. -----------------App 我们所有的app
  5039. -----------------BC c.1473.cn 平台
  5040. -----------------CWeb d.1473.cn 变成平台
  5041. -----------------其他的外联系统 我们统一用iframe打开
  5042. * @param {array} 类型
  5043. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5044. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5045. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5046. 如果第一个参数为其他,则无第二个参数
  5047. * @returns {array}
  5048. */
  5049. window.addEventListener('message', function (e) { // 监听 message 事件
  5050. // alert(e.data.type);
  5051. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5052. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5053. //3是展示全部阶段 2学生 1老师 4专家
  5054. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5055. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5056. //3是展示全部阶段 2学生 1老师 4专家
  5057. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5058. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5059. //3是展示全部阶段 2学生 1老师 4专家
  5060. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5061. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5062. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5063. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5064. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5065. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5066. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5067. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5068. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5069. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5070. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5071. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5072. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5073. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5074. //3是展示全部阶段 2学生 1老师 4专家
  5075. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5076. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5077. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5078. U.MD.D.I.selectUser();
  5079. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5080. var _formel = document.getElementById("study");
  5081. U.UF.F.windowZooming(_formel);
  5082. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5083. var _formel = document.getElementById("studyDetail");
  5084. U.UF.F.windowZooming(_formel);
  5085. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5086. var _formel = document.getElementById("studyDetail");
  5087. U.UF.F.windowZooming(_formel);
  5088. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5089. var _formel = document.getElementById("studentStudy");
  5090. U.UF.F.windowZooming(_formel);
  5091. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5092. // var _formel = document.getElementById("study");
  5093. //如果最大化了,那么就把他缩小
  5094. // if (_formel.ismaximize) {
  5095. // return;
  5096. // }
  5097. // U.UF.F.windowZooming(_formel);
  5098. // U.UF.F.topWindow(_formel);
  5099. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5100. // var _formel = document.getElementById("studyDetail");
  5101. //如果最大化了,那么就把他缩小
  5102. // if (_formel.ismaximize) {
  5103. // return;
  5104. // }
  5105. // U.UF.F.windowZooming(_formel);
  5106. // U.UF.F.topWindow(_formel);
  5107. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5108. // var _formel = document.getElementById("studentStudy");
  5109. // if (_formel.ismaximize) {
  5110. // return;
  5111. // }
  5112. // U.UF.F.windowZooming(_formel);
  5113. // U.UF.F.topWindow(_formel);
  5114. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5115. var _formel = document.getElementById("study");
  5116. // if (_formel.ismaximize) {
  5117. // return;
  5118. // }
  5119. // U.UF.F.windowZooming(_formel);
  5120. U.UF.F.topWindow(_formel);
  5121. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5122. var _formel = document.getElementById("studentIndex");
  5123. U.UF.F.windowZooming(_formel);
  5124. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5125. var _formel = document.getElementById("studyDetailS");
  5126. U.UF.F.windowZooming(_formel);
  5127. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5128. var _formel = document.getElementById("studioIndex");
  5129. U.UF.F.windowZooming(_formel);
  5130. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5131. var _formel = document.getElementById("studyDetailStudio");
  5132. U.UF.F.windowZooming(_formel);
  5133. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5134. var _formel = document.getElementById("studyDetailStudio");
  5135. U.UF.F.windowZooming(_formel);
  5136. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5137. var _formel = document.getElementById("studyDetailNT");
  5138. U.UF.F.windowZooming(_formel);
  5139. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5140. var _formel = document.getElementById("studyDetailS");
  5141. U.UF.F.windowZooming(_formel);
  5142. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5143. var _formel = document.getElementById("studyDetailS");
  5144. U.UF.F.topWindow(_formel);
  5145. } else if (e.data.tools && e.data.tools == "1") {
  5146. // U.MD.D.I.openApplication("whiteboard")
  5147. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5148. } else if (e.data.tools && e.data.tools == "2") {
  5149. U.MD.D.I.openApplication("note")
  5150. } else if (e.data.tools && e.data.tools == "3") {
  5151. // U.MD.D.I.openApplication("mind")
  5152. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5153. } else if (e.data.tools && e.data.tools == "4") {
  5154. U.MD.D.I.openApplication("investigation")
  5155. } else if (e.data.tools && e.data.tools == "6") {
  5156. // U.MD.D.I.openApplication("doc")
  5157. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5158. } else if (e.data.tools && e.data.tools == "7") {
  5159. // U.MD.D.I.openApplication("mindNetwork")
  5160. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5161. } else if (e.data.tools && e.data.tools == "8") {
  5162. U.MD.D.I.openApplication("library")
  5163. } else if (e.data.tools && e.data.tools == "17") {
  5164. U.MD.D.I.openApplication("stuLibrary")
  5165. } else if (e.data.tools && e.data.tools == "18") {
  5166. U.MD.D.I.openApplication("train")
  5167. } else if (e.data.tools && e.data.tools == "21") {
  5168. U.MD.D.I.openApplication("program")
  5169. } else if (e.data.tools && e.data.tools == "22") {
  5170. U.MD.D.I.openApplication("AIprogram2")
  5171. } else if (e.data.tools && e.data.tools == "23") {
  5172. U.MD.D.I.openApplication("Pythonprogram")
  5173. } else if (e.data.tools && e.data.tools == "24") {
  5174. U.MD.D.I.openApplication("AIprogram")
  5175. } else if (e.data.tools && e.data.tools == "25") {
  5176. U.MD.D.I.openApplication("sys")
  5177. } else if (e.data.tools && e.data.tools == "26") {
  5178. // U.MD.D.I.openApplication("courseDesign")
  5179. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5180. } else if (e.data.tools && e.data.tools == "31") {
  5181. U.MD.D.I.openApplication("netWorkPanel")
  5182. } else if (e.data.tools && e.data.tools == "32") {
  5183. U.MD.D.I.openApplication("codeEdit")
  5184. } else if (e.data.tools && e.data.tools == "57") {
  5185. U.MD.D.I.openApplication("CocoPi")
  5186. } else if (e.data.tools && e.data.tools == "63") {
  5187. U.MD.D.I.openApplication("Wood")
  5188. } else if (e.data.tools && e.data.tools == "58") {
  5189. U.MD.D.I.openApplication("car")
  5190. } else if (e.data.tools && e.data.tools == "59") {
  5191. U.MD.D.I.openApplication("lineSearch")
  5192. } else if (e.data.tools && e.data.tools == "60") {
  5193. U.MD.D.I.openApplication("deepLearning")
  5194. } else if (e.data.tools && e.data.tools == "61") {
  5195. U.MD.D.I.openApplication("allHistory")
  5196. } else if (e.data.tools && e.data.tools == "28") {
  5197. U.MD.D.I.openApplication("translation")
  5198. } else if (e.data.tools && e.data.tools == "37") {
  5199. U.MD.D.I.openApplication("mohe")
  5200. } else if (e.data.tools && e.data.tools == "38") {
  5201. U.MD.D.I.openApplication("24game")
  5202. } else if (e.data.tools && e.data.tools == "39") {
  5203. U.MD.D.I.openApplication("GeoGebra")
  5204. } else if (e.data.tools && e.data.tools == "43") {
  5205. U.MD.D.I.openApplication("studentEvaluate")
  5206. } else if (e.data.tools && e.data.tools == "44") {
  5207. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5208. } else if (e.data.tools && e.data.tools == "46") {
  5209. U.MD.D.I.openApplication("project")
  5210. } else if (e.data.tools && e.data.tools == "71") {
  5211. U.MD.D.I.openApplication("aigptCourse")
  5212. } else if (e.data.tools && e.data.tools == "72") {
  5213. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5214. } else if (e.data.tools && e.data.tools == "1s") {
  5215. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5216. } else if (e.data.tools && e.data.tools == "3s") {
  5217. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5218. } else if (e.data.tools && e.data.tools == "6s") {
  5219. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5220. } else if (e.data.tools && e.data.tools == "1studio") {
  5221. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5222. } else if (e.data.tools && e.data.tools == "3studio") {
  5223. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5224. } else if (e.data.tools && e.data.tools == "6studio") {
  5225. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5226. } else if (e.data.tools && e.data.tools == "3y") {
  5227. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5228. } else if (e.data.tools && e.data.tools == "1y") {
  5229. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5230. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5231. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5232. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5233. U.MD.D.I.openApplication("AIAnalyse")
  5234. } else if (e.data.tools && e.data.tools == "1teacher") {
  5235. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5236. } else if (e.data.tools && e.data.tools == "3teacher") {
  5237. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5238. } else if (e.data.tools && e.data.tools == "7teacher") {
  5239. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5240. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5241. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5242. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5243. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5244. } else if (e.data.tools && e.data.tools == "1E") {
  5245. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5246. } else if (e.data.tools && e.data.tools == "3E") {
  5247. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5248. } else if (e.data.tools && e.data.tools == "57y") {
  5249. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5250. } else if (e.data.tools && e.data.tools == "57u") {
  5251. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5252. } else if (e.data.tools && e.data.tools == "57teacher") {
  5253. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5254. } else if (e.data.tools && e.data.tools == "64") {
  5255. U.MD.D.I.openApplication("AIChat")
  5256. } else if (e.data.tools && e.data.tools == "66") {
  5257. U.MD.D.I.openApplication("formulaEdi")
  5258. } else if (e.data.tools && e.data.tools == "67") {
  5259. U.MD.D.I.openApplication("molStr")
  5260. } else if (e.data.tools && e.data.tools == "68") {
  5261. U.MD.D.I.openApplication("timeAxis")
  5262. } else if (e.data.tools && e.data.tools == "openCourse") {
  5263. let _data = {
  5264. typea: e.data.typea || '',
  5265. typeb: e.data.typeb || '',
  5266. typed: e.data.typed || '',
  5267. }
  5268. U.MD.D.I.openInApplication("index", _data)
  5269. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5270. let _data = {
  5271. classid: e.data.classid || '',
  5272. }
  5273. U.MD.D.I.openInApplication("dataClass", _data)
  5274. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5275. let _data = {
  5276. cid: e.data.cid || '',
  5277. gid: e.data.gid || '',
  5278. }
  5279. U.MD.D.I.openInApplication("opencCscl", _data)
  5280. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5281. U.MD.D.I.openApplication("dataBoardTest")
  5282. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5283. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5284. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5285. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5286. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5287. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5288. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5289. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5290. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5291. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5292. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5293. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5294. }else if (e.data.tools && e.data.tools == "loginSz") {
  5295. U.MD.D.I.openInApplication("loginSz")
  5296. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5297. if($('#classroom_observation_board')[0]){
  5298. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5299. }
  5300. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5301. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5302. if($('#classroom_observation_ob_comment')[0]){
  5303. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5304. }
  5305. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5306. }else if (e.data.tools && e.data.tools == "logout"){
  5307. U.MD.U.LO.logoutSystem()
  5308. }else if (e.data.tools && e.data.tools == "getLogin"){
  5309. let _iframe = $('#UI_Login')[0];
  5310. if (_iframe) {
  5311. var userInfo = US.userInfo;
  5312. var type = 2
  5313. if(userInfo && userInfo.userid){
  5314. type = 1
  5315. }
  5316. _contentWindow = _iframe.contentWindow;
  5317. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5318. }
  5319. }
  5320. });
  5321. U.MD.D.I.selectUser = function () {
  5322. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5323. if (res.value[0].length > 0) {
  5324. US.userInfo = res.value[0][0];
  5325. $(".userName")[0].innerHTML = US.userInfo.username;
  5326. }
  5327. }, [], { "type": "GET", "withCredentials": true });
  5328. }
  5329. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5330. var _userinfo = US.userInfo, //登录用户信息
  5331. _userid = US.userInfo.userid, //登录用户id
  5332. _oid = _userinfo.organizeid,
  5333. _type = US.userInfo.type,
  5334. _org = US.userInfo.org,
  5335. _role = US.userInfo.role,
  5336. _classId = US.userInfo.classid;
  5337. if (_type == 4) {
  5338. tType = 4
  5339. }
  5340. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5341. if(opArray.includes(str)){
  5342. let _str = str
  5343. if(str == 'appStore'){
  5344. _str = "cocoFlow"
  5345. }else if(str == "futureClass"){
  5346. _str = "cocoNote"
  5347. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5348. _str = "IntelligentForm"
  5349. }else if(str == "testStudent" || str == "testStudentSies"){
  5350. _str = "TeacherCenter"
  5351. }
  5352. try {
  5353. if (data) {
  5354. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5355. }else {
  5356. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5357. }
  5358. } catch (error) {
  5359. console.log(error);
  5360. }
  5361. }
  5362. switch (str) {
  5363. case "studyDetailNT": //无终端模式
  5364. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5365. setTimeout(() => {
  5366. U.MD.U.L.login();
  5367. }, 2000);
  5368. } else {
  5369. _formdiv = new U.UF.UI.form(
  5370. "课程详情",
  5371. $$("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 }), {
  5372. "id": "studyDetailNT",
  5373. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5374. "onresize": function () { }
  5375. }, {
  5376. closecallback: function () { }
  5377. }, { "style": { "height": "36px" } }).form; //创建窗体
  5378. _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); } }
  5379. break;
  5380. }
  5381. case "studyDetail":
  5382. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5383. setTimeout(() => {
  5384. U.MD.U.L.login();
  5385. }, 2000);
  5386. } else {
  5387. _formdiv = new U.UF.UI.form(
  5388. "课程详情",
  5389. $$("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 }), {
  5390. "id": "studyDetail",
  5391. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5392. "onresize": function () { }
  5393. }, {
  5394. closecallback: function () { }
  5395. }, { "style": { "height": "36px" } }).form; //创建窗体
  5396. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5397. break;
  5398. }
  5399. case "studyDetailTrain":
  5400. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5401. setTimeout(() => {
  5402. U.MD.U.L.login();
  5403. }, 2000);
  5404. } else {
  5405. _formdiv = new U.UF.UI.form(
  5406. "培训详情",
  5407. $$("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 }), {
  5408. "id": "studyDetailTrain",
  5409. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. _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); } }
  5415. break;
  5416. }
  5417. case "studyDetailS":
  5418. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5419. setTimeout(() => {
  5420. U.MD.U.L.login();
  5421. }, 2000);
  5422. } else {
  5423. _formdiv = new U.UF.UI.form(
  5424. "项目详情",
  5425. $$("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 }), {
  5426. "id": "studyDetailS",
  5427. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5428. "onresize": function () { }
  5429. }, {
  5430. closecallback: function () { }
  5431. }, { "style": { "height": "36px" } }).form; //创建窗体
  5432. _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); } }
  5433. break;
  5434. }
  5435. case "studyDetailStudio":
  5436. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5437. setTimeout(() => {
  5438. U.MD.U.L.login();
  5439. }, 2000);
  5440. } else {
  5441. _formdiv = new U.UF.UI.form(
  5442. "工作详情",
  5443. $$("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 }), {
  5444. "id": "studyDetailStudio",
  5445. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5446. "onresize": function () { }
  5447. }, {
  5448. closecallback: function () { }
  5449. }, { "style": { "height": "36px" } }).form; //创建窗体
  5450. _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); } }
  5451. break;
  5452. }
  5453. case "studyDetailS5":
  5454. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5455. setTimeout(() => {
  5456. U.MD.U.L.login();
  5457. }, 2000);
  5458. } else {
  5459. _formdiv = new U.UF.UI.form(
  5460. "项目详情",
  5461. $$("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 }), {
  5462. "id": "studyDetailS",
  5463. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5464. "onresize": function () { }
  5465. }, {
  5466. closecallback: function () { }
  5467. }, { "style": { "height": "36px" } }).form; //创建窗体
  5468. _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); } }
  5469. break;
  5470. }
  5471. case "studyDetailGM":
  5472. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5473. setTimeout(() => {
  5474. U.MD.U.L.login();
  5475. }, 2000);
  5476. } else {
  5477. _formdiv = new U.UF.UI.form(
  5478. "课程详情",
  5479. $$("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 }), {
  5480. "id": "studyDetail",
  5481. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5482. "onresize": function () { }
  5483. }, {
  5484. closecallback: function () { }
  5485. }, { "style": { "height": "36px" } }).form; //创建窗体
  5486. _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); } }
  5487. break;
  5488. }
  5489. case "hanUrl":
  5490. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5491. setTimeout(() => {
  5492. U.MD.U.L.login();
  5493. }, 2000);
  5494. } else {
  5495. _formdiv = new U.UF.UI.form(
  5496. "汉字宫",
  5497. $$("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" }), {
  5498. "id": "hanUrl",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. break;
  5506. }
  5507. case "index":
  5508. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5509. setTimeout(() => {
  5510. U.MD.U.L.login();
  5511. }, 2000);
  5512. } else {
  5513. _formdiv = new U.UF.UI.form(
  5514. "课程中心",
  5515. $$("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 }), {
  5516. "id": "study",
  5517. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5518. "onresize": function () { }
  5519. }, {
  5520. closecallback: function () { }
  5521. }, { "style": { "height": "36px" } }).form; //创建窗体
  5522. _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); } }
  5523. break;
  5524. }
  5525. case "dataClass":
  5526. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5527. setTimeout(() => {
  5528. U.MD.U.L.login();
  5529. }, 2000);
  5530. } else {
  5531. _formdiv = new U.UF.UI.form(
  5532. "数据报告",
  5533. $$("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 }), {
  5534. "id": "dataClass",
  5535. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. }
  5543. case "opencCscl":
  5544. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5545. setTimeout(() => {
  5546. U.MD.U.L.login();
  5547. }, 2000);
  5548. } else {
  5549. _formdiv = new U.UF.UI.form(
  5550. "协同建构",
  5551. $$("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 }), {
  5552. "id": "futureClass",
  5553. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. }
  5561. case "openCourseUpdate":
  5562. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5563. setTimeout(() => {
  5564. U.MD.U.L.login();
  5565. }, 2000);
  5566. } else {
  5567. _formdiv = new U.UF.UI.form(
  5568. "课程管理",
  5569. $$("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 }), {
  5570. "id": "openCourseUpdate",
  5571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. break;
  5577. }
  5578. case "openNewCourseUpdate":
  5579. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5580. setTimeout(() => {
  5581. U.MD.U.L.login();
  5582. }, 2000);
  5583. } else {
  5584. _formdiv = new U.UF.UI.form(
  5585. "课程管理",
  5586. $$("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 }), {
  5587. "id": "openCourseUpdate",
  5588. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5589. "onresize": function () { }
  5590. }, {
  5591. closecallback: function () { }
  5592. }, { "style": { "height": "36px" } }).form; //创建窗体
  5593. break;
  5594. }
  5595. case "openCourseEUpdate":
  5596. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5597. setTimeout(() => {
  5598. U.MD.U.L.login();
  5599. }, 2000);
  5600. } else {
  5601. _formdiv = new U.UF.UI.form(
  5602. "课程管理",
  5603. $$("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 }), {
  5604. "id": "openCourseUpdate",
  5605. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5606. "onresize": function () { }
  5607. }, {
  5608. closecallback: function () { }
  5609. }, { "style": { "height": "36px" } }).form; //创建窗体
  5610. break;
  5611. }
  5612. case "openCourseAiUpdate":
  5613. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5614. setTimeout(() => {
  5615. U.MD.U.L.login();
  5616. }, 2000);
  5617. } else {
  5618. _formdiv = new U.UF.UI.form(
  5619. "课程管理",
  5620. $$("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 }), {
  5621. "id": "openCourseUpdate",
  5622. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5623. "onresize": function () { }
  5624. }, {
  5625. closecallback: function () { }
  5626. }, { "style": { "height": "36px" } }).form; //创建窗体
  5627. break;
  5628. }
  5629. case "openCourseAiUpdate2":
  5630. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5631. setTimeout(() => {
  5632. U.MD.U.L.login();
  5633. }, 2000);
  5634. } else {
  5635. _formdiv = new U.UF.UI.form(
  5636. "课程管理",
  5637. $$("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 }), {
  5638. "id": "openCourseUpdate",
  5639. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. break;
  5645. }
  5646. case "openCourseNewUpdate":
  5647. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5648. setTimeout(() => {
  5649. U.MD.U.L.login();
  5650. }, 2000);
  5651. } else {
  5652. _formdiv = new U.UF.UI.form(
  5653. "课程管理",
  5654. $$("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 }), {
  5655. "id": "openCourseUpdate",
  5656. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5657. "onresize": function () { }
  5658. }, {
  5659. closecallback: function () { }
  5660. }, { "style": { "height": "36px" } }).form; //创建窗体
  5661. break;
  5662. }
  5663. case "inviteLoginSz":
  5664. _formdiv = new U.UF.UI.form(
  5665. "随机码登录",
  5666. $$("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 }), {
  5667. "id": "loginSz",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. break;
  5674. case "loginSz":
  5675. _formdiv = new U.UF.UI.form(
  5676. "教师登录",
  5677. $$("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" }), {
  5678. "id": "loginSz",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. break;
  5685. case "teacher":
  5686. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5687. setTimeout(() => {
  5688. U.MD.U.L.login();
  5689. }, 2000);
  5690. } else {
  5691. _formdiv = new U.UF.UI.form(
  5692. "教师管理",
  5693. $$("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 }), {
  5694. "id": "teacher",
  5695. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. break;
  5701. }
  5702. case "dataBoardSZArea":
  5703. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5704. setTimeout(() => {
  5705. U.MD.U.L.login();
  5706. }, 2000);
  5707. } else {
  5708. _formdiv = new U.UF.UI.form(
  5709. "综合数据看板",
  5710. $$("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 }), {
  5711. "id": "dataBoardSZArea",
  5712. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5713. "onresize": function () { }
  5714. }, {
  5715. closecallback: function () { }
  5716. }, { "style": { "height": "36px" } }).form; //创建窗体
  5717. break;
  5718. }
  5719. case "dataBoardSZCity":
  5720. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5721. setTimeout(() => {
  5722. U.MD.U.L.login();
  5723. }, 2000);
  5724. } else {
  5725. _formdiv = new U.UF.UI.form(
  5726. "综合数据看板",
  5727. $$("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 }), {
  5728. "id": "dataBoardSZCity",
  5729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5730. "onresize": function () { }
  5731. }, {
  5732. closecallback: function () { }
  5733. }, { "style": { "height": "36px" } }).form; //创建窗体
  5734. break;
  5735. }
  5736. case "classroom_observation_board":
  5737. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5738. setTimeout(() => {
  5739. U.MD.U.L.login();
  5740. }, 2000);
  5741. } else {
  5742. _formdiv = new U.UF.UI.form(
  5743. "课堂观察",
  5744. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5745. "id": "classroom_observation_board",
  5746. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5747. "onresize": function () { }
  5748. }, {
  5749. closecallback: function () { }
  5750. }, { "style": { "height": "36px" } }).form; //创建窗体
  5751. break;
  5752. }
  5753. case "classroom_observation_ob_comment":
  5754. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5755. setTimeout(() => {
  5756. U.MD.U.L.login();
  5757. }, 2000);
  5758. } else {
  5759. _formdiv = new U.UF.UI.form(
  5760. "课堂审核",
  5761. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5762. "id": "classroom_observation_ob_comment",
  5763. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5764. "onresize": function () { }
  5765. }, {
  5766. closecallback: function () { }
  5767. }, { "style": { "height": "36px" } }).form; //创建窗体
  5768. break;
  5769. }
  5770. case "gptConfig":
  5771. _formdiv = new U.UF.UI.form(
  5772. data.name ? data.name : "应用中心",
  5773. $$("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 }), {
  5774. "id": "gptConfig" + data.id,
  5775. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //创建窗体
  5780. break;
  5781. case "testDetail":
  5782. _formdiv = new U.UF.UI.form(
  5783. "表单填写",
  5784. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  5785. "id": "testDetail" + data,
  5786. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5787. "onresize": function () { }
  5788. }, {
  5789. closecallback: function () { }
  5790. }, { "style": { "height": "36px" } }).form; //创建窗体
  5791. break;
  5792. }
  5793. }
  5794. U.MD.D.I.openApplication = function (str, obj, info) {
  5795. obj = obj || {};
  5796. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5797. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5798. _userinfo = US.userInfo, //登录用户信息
  5799. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5800. _oid = obj.organizeid || _userinfo.organizeid,
  5801. _type = US.userInfo.type,
  5802. _org = obj.org || US.userInfo.org,
  5803. _role = US.userInfo.role,
  5804. _classId = US.userInfo.classid,
  5805. _TscreenType = 1
  5806. _screenType = 2,
  5807. _SscreenType = 3;
  5808. let iframeBool = true
  5809. if(U.UF.UI.form.allForm[str]){
  5810. iframeBool = false
  5811. }
  5812. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5813. return;
  5814. }
  5815. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5816. if(opArray.includes(str)){
  5817. let _str = str
  5818. if(str == 'appStore'){
  5819. _str = "cocoFlow"
  5820. }else if(str == "futureClass"){
  5821. _str = "cocoNote"
  5822. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5823. _str = "IntelligentForm"
  5824. }else if(str == "testStudent" || str == "testStudentSies"){
  5825. _str = "TeacherCenter"
  5826. }
  5827. try {
  5828. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5829. } catch (error) {
  5830. console.log(error);
  5831. }
  5832. }
  5833. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5834. switch (str) {
  5835. case "studnetProject": //好友打开
  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/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  5839. "id": "studnetProject",
  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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5846. break;
  5847. case "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5851. "id": "studentEvaluate",
  5852. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5858. break;
  5859. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  5863. "id": "my",
  5864. "style": { "width": "42%", "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 "program":
  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": "https://x.cocorobo.cn" }), {
  5875. "id": "program",
  5876. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5882. break;
  5883. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5887. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5894. break;
  5895. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  5899. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5906. break;
  5907. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  5911. "id": "investigation",
  5912. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5918. break;
  5919. case "note":
  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 + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5923. "id": "note",
  5924. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5930. break;
  5931. // case "score":
  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": US.Config.bpbl + "" }), {
  5935. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5942. // break;
  5943. case "mind":
  5944. _formdiv = new U.UF.UI.form(
  5945. "思维导图",
  5946. $$("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"
  5947. "id": "mind",
  5948. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5949. "onresize": function () { }
  5950. }, {
  5951. closecallback: function () { }
  5952. }, { "style": { "height": "36px" } }).form; //创建窗体
  5953. _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); } }
  5954. break;
  5955. case "doc":
  5956. // U.MD.D.I.isRoom();
  5957. _formdiv = new U.UF.UI.form(
  5958. "协同文档",
  5959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5960. "id": "doc",
  5961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5962. "onresize": function () { }
  5963. }, {
  5964. closecallback: function () { }
  5965. }, { "style": { "height": "36px" } }).form; //创建窗体
  5966. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5967. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5968. // })
  5969. _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); } }
  5970. break;
  5971. case "studentStudy":
  5972. _formdiv = new U.UF.UI.form(
  5973. "课程中心",
  5974. $$("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
  5975. "id": "studentStudy",
  5976. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5982. break;
  5983. case "train": //好友打开
  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": "https://xunlian.cocorobo.cn/" }), {
  5987. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5994. break;
  5995. case "mindNetwork": //好友打开
  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-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  5999. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6006. break;
  6007. case "studentClassRoom": //好友打开
  6008. _formdiv = new U.UF.UI.form(
  6009. "实时课堂",
  6010. $$("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 }), {
  6011. "id": "studentClassRoom",
  6012. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6013. "onresize": function () { }
  6014. }, {
  6015. closecallback: function () { }
  6016. }, { "style": { "height": "36px" } }).form; //创建窗体
  6017. _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); } }
  6018. setTimeout(() => {
  6019. U.UF.F.windowZooming(_formdiv)
  6020. }, 0);
  6021. break;
  6022. }
  6023. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6024. switch (str) {
  6025. case "studnetProject": //好友打开
  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/#/project?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), {
  6029. "id": "studnetProject",
  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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6036. break;
  6037. case "studentEvaluate": //好友打开
  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-student-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6041. "id": "studentEvaluate",
  6042. "style": { "width": "70%", "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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6048. break;
  6049. case "my":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6053. "id": "my",
  6054. "style": { "width": "42%", "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 "program":
  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": "https://x.cocorobo.cn" }), {
  6065. "id": "program",
  6066. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6072. break;
  6073. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6077. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6084. break;
  6085. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  6089. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6096. break;
  6097. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  6101. "id": "investigation",
  6102. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6108. break;
  6109. case "note":
  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 + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6113. "id": "note",
  6114. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6120. break;
  6121. // case "score":
  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": US.Config.bpbl + "" }), {
  6125. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6132. // break;
  6133. case "mind":
  6134. _formdiv = new U.UF.UI.form(
  6135. "思维导图",
  6136. $$("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"
  6137. "id": "mind",
  6138. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6139. "onresize": function () { }
  6140. }, {
  6141. closecallback: function () { }
  6142. }, { "style": { "height": "36px" } }).form; //创建窗体
  6143. _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); } }
  6144. break;
  6145. case "doc":
  6146. // U.MD.D.I.isRoom();
  6147. _formdiv = new U.UF.UI.form(
  6148. "协同文档",
  6149. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6150. "id": "doc",
  6151. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6152. "onresize": function () { }
  6153. }, {
  6154. closecallback: function () { }
  6155. }, { "style": { "height": "36px" } }).form; //创建窗体
  6156. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6157. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6158. })
  6159. _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); } }
  6160. break;
  6161. case "train": //好友打开
  6162. _formdiv = new U.UF.UI.form(
  6163. "训练平台",
  6164. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6165. "id": "train",
  6166. "style": { "width": "90%", "height": "90%", "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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6172. break;
  6173. case "studentStudy":
  6174. _formdiv = new U.UF.UI.form(
  6175. "课程中心",
  6176. $$("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
  6177. "id": "studentStudy",
  6178. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6184. break;
  6185. case "mindNetwork": //好友打开
  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-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  6189. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6196. break;
  6197. case "studentClassRoom": //好友打开
  6198. _formdiv = new U.UF.UI.form(
  6199. "实时课堂",
  6200. $$("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 }), {
  6201. "id": "studentClassRoom",
  6202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6203. "onresize": function () { }
  6204. }, {
  6205. closecallback: function () { }
  6206. }, { "style": { "height": "36px" } }).form; //创建窗体
  6207. _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); } }
  6208. setTimeout(() => {
  6209. U.UF.F.windowZooming(_formdiv)
  6210. }, 0);
  6211. break;
  6212. }
  6213. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6214. //选择应用处理
  6215. switch (str) {
  6216. case "project": //好友打开
  6217. _formdiv = new U.UF.UI.form(
  6218. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6219. $$("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 }), {
  6220. "id": "project",
  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/project.png)" }, "name": _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6227. break;
  6228. case "student":
  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/#/student?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org + "&role=" + _role }), {
  6232. "id": "student",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6239. break;
  6240. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6244. "id": "evaluate",
  6245. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6246. "onresize": function () { }
  6247. }, {
  6248. closecallback: function () { }
  6249. }, { "style": { "height": "36px" } }).form; //创建窗体
  6250. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6251. break;
  6252. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6256. "id": "sys",
  6257. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6263. break;
  6264. case "courseDesign":
  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": "/course-design-vue" }), {
  6268. "id": "courseDesign",
  6269. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6270. "onresize": function () { }
  6271. }, {
  6272. closecallback: function () { }
  6273. }, { "style": { "height": "36px" } }).form; //创建窗体
  6274. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6275. break;
  6276. case "program":
  6277. _formdiv = new U.UF.UI.form(
  6278. "编程平台",
  6279. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6280. "id": "program",
  6281. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6287. break;
  6288. case "class":
  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/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6292. "id": "class",
  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/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6299. break;
  6300. case "Grade":
  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/#/grade?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6304. "id": "Grade",
  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/Grade.png)" }, "name": "年级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6311. break;
  6312. case "teacherOffice":
  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/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6316. "id": "teacherOffice",
  6317. "style": { "width": "90%", "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/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6323. break;
  6324. case "my":
  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/#/data?userid=" + _userid + "&org=" + _org }), {
  6328. "id": "my",
  6329. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6335. break;
  6336. case "notice":
  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/#/notice?userid=" + _userid + "&org=" + _org }), {
  6340. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6347. break;
  6348. case "library":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6352. "id": "library",
  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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6359. break;
  6360. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  6364. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6371. break;
  6372. case "investigation":
  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/#/ask?userid=" + _userid + "&org=" + _org }), {
  6376. "id": "investigation",
  6377. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6383. break;
  6384. case "note":
  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 + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6388. "id": "note",
  6389. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6395. break;
  6396. // case "score":
  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": US.Config.bpbl + "" }), {
  6400. // "id": "score",
  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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6407. // break;
  6408. case "mind":
  6409. _formdiv = new U.UF.UI.form(
  6410. "思维导图",
  6411. $$("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"
  6412. "id": "mind",
  6413. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _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); } }
  6419. break;
  6420. case "doc":
  6421. // U.MD.D.I.isRoom();
  6422. _formdiv = new U.UF.UI.form(
  6423. "协同文档",
  6424. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6425. "id": "doc",
  6426. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6427. "onresize": function () { }
  6428. }, {
  6429. closecallback: function () { }
  6430. }, { "style": { "height": "36px" } }).form; //创建窗体
  6431. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6432. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6433. })
  6434. _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); } }
  6435. break;
  6436. case "study":
  6437. _formdiv = new U.UF.UI.form(
  6438. "课程中心",
  6439. $$("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
  6440. "id": "study",
  6441. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6447. break;
  6448. case "mindNetwork": //好友打开
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6459. break;
  6460. case "train": //好友打开
  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": "https://xunlian.cocorobo.cn/" }), {
  6464. "id": "mindNetwork",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6471. break;
  6472. case "teacherClassRoom": //好友打开
  6473. _formdiv = new U.UF.UI.form(
  6474. "实时课堂",
  6475. $$("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 }), {
  6476. "id": "teacherClassRoom",
  6477. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6478. "onresize": function () { }
  6479. }, {
  6480. closecallback: function () { }
  6481. }, { "style": { "height": "36px" } }).form; //创建窗体
  6482. _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); } }
  6483. setTimeout(() => {
  6484. U.UF.F.windowZooming(_formdiv)
  6485. }, 0);
  6486. break;
  6487. }
  6488. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6489. switch (str) {
  6490. case "project": //好友打开
  6491. _formdiv = new U.UF.UI.form(
  6492. "课程管理",
  6493. $$("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 }), {
  6494. "id": "project",
  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/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6501. break;
  6502. case "evaluate":
  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/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6506. "id": "evaluate",
  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/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6513. break;
  6514. case "notice":
  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/#/notice?userid=" + _userid + "&org=" + _org }), {
  6518. "id": "notice",
  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/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6525. break;
  6526. case "stuLibrary":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6530. "id": "stuLibrary",
  6531. "style": { "width": "90%", "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/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6537. break;
  6538. case "program":
  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://x.cocorobo.cn" }), {
  6542. "id": "program",
  6543. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6549. break;
  6550. case "whiteboard":
  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": "https://beta.iwb.cocorobo.cn/" }), {
  6554. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6561. break;
  6562. case "investigation":
  6563. _formdiv = new U.UF.UI.form(
  6564. "问卷调查",
  6565. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6566. "id": "investigation",
  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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6573. break;
  6574. case "mind":
  6575. _formdiv = new U.UF.UI.form(
  6576. "思维导图",
  6577. $$("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"
  6578. "id": "mind",
  6579. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6580. "onresize": function () { }
  6581. }, {
  6582. closecallback: function () { }
  6583. }, { "style": { "height": "36px" } }).form; //创建窗体
  6584. _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); } }
  6585. break;
  6586. case "doc":
  6587. // U.MD.D.I.isRoom();
  6588. _formdiv = new U.UF.UI.form(
  6589. "协同文档",
  6590. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6591. "id": "doc",
  6592. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6593. "onresize": function () { }
  6594. }, {
  6595. closecallback: function () { }
  6596. }, { "style": { "height": "36px" } }).form; //创建窗体
  6597. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6598. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6599. })
  6600. _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); } }
  6601. break;
  6602. case "study":
  6603. _formdiv = new U.UF.UI.form(
  6604. "课程中心",
  6605. $$("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
  6606. "id": "study",
  6607. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6613. break;
  6614. case "mindNetwork": //好友打开
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  6618. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6625. break;
  6626. case "train": //好友打开
  6627. _formdiv = new U.UF.UI.form(
  6628. "训练平台",
  6629. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6630. "id": "train",
  6631. "style": { "width": "90%", "height": "90%", "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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6637. break;
  6638. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6642. "id": "sys",
  6643. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6649. break;
  6650. case "courseDesign":
  6651. _formdiv = new U.UF.UI.form(
  6652. "项目设计",
  6653. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6654. "id": "courseDesign",
  6655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. _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); } }
  6661. break;
  6662. }
  6663. } else if (!_type) {
  6664. switch (str) {
  6665. case "my":
  6666. _formdiv = new U.UF.UI.form(
  6667. "我的资料",
  6668. $$("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 }), {
  6669. "id": "my",
  6670. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6671. "onresize": function () { }
  6672. }, {
  6673. closecallback: function () { }
  6674. }, { "style": { "height": "36px" } }).form; //创建窗体
  6675. _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); } }
  6676. break;
  6677. }
  6678. }
  6679. switch (str) {
  6680. // AIprogram2 AI体验 aihub.cocorobo.cn
  6681. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6682. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6683. case "formulaEdi": //公式编辑
  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://www.latexlive.com/" }), {
  6687. "id": "formulaEdi",
  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/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6694. break;
  6695. case "molStr": //分子结构
  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://molview.org/" }), {
  6699. "id": "molStr",
  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/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6706. break;
  6707. case "timeAxis": //时间轴
  6708. _formdiv = new U.UF.UI.form(
  6709. "时间轴",
  6710. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6711. "id": "timeAxis",
  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/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6718. break;
  6719. case "AIprogram2": //AI体验
  6720. _formdiv = new U.UF.UI.form(
  6721. "AI体验",
  6722. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6723. "id": "AIprogram2",
  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/AIprogram2.png)" }, "name": "AI体验", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6730. break;
  6731. case "Pythonprogram": //python编程
  6732. _formdiv = new U.UF.UI.form(
  6733. "Python编程",
  6734. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6735. "id": "Pythonprogram",
  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/Pythonprogram.png)" }, "name": "Python编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6742. break;
  6743. case "AIprogram": //ai编程
  6744. _formdiv = new U.UF.UI.form(
  6745. "AI编程平台",
  6746. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6747. "id": "AIprogram",
  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/AIprogram.png)" }, "name": "AI编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6754. break;
  6755. case "CocoPi": //CocoPi
  6756. _formdiv = new U.UF.UI.form(
  6757. "CocoPi",
  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://pi.cocorobo.cn" }), {
  6759. "id": "CocoPi",
  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/cocopi.png)" }, "name": "CocoPi", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6766. break;
  6767. case "Wood": //Wood
  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://wood.codemao.cn/" }), {
  6771. "id": "Wood",
  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/Wood.png)" }, "name": "海龟编程", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6778. break;
  6779. case "car": //模拟驾驶
  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://slowroads.io/" }), {
  6783. "id": "car",
  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/car.png)" }, "name": "模拟驾驶", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6790. break;
  6791. case "lineSearch": //路径搜索
  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://qiao.github.io/PathFinding.js/visual/" }), {
  6795. "id": "lineSearch",
  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/lineSearch.png)" }, "name": "路径搜索", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6802. break;
  6803. case "deepLearning": //深度学习
  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://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  6807. "id": "deepLearning",
  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/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6814. break;
  6815. case "allHistory": //深度学习
  6816. _formdiv = new U.UF.UI.form(
  6817. "全历史",
  6818. $$("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/" }), {
  6819. "id": "allHistory",
  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/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6826. break;
  6827. case "chatPDF": //ai编程
  6828. _formdiv = new U.UF.UI.form(
  6829. "chatPDF",
  6830. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6831. "id": "chatPDF",
  6832. "style": { "width": "70%", "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/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6838. break;
  6839. case "resources": //国家教育
  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://so.eduyun.cn/synResource" }), {
  6843. "id": "resources",
  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/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6850. break;
  6851. case "codeEdit": //源码编辑
  6852. _formdiv = new U.UF.UI.form(
  6853. "源码编辑",
  6854. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6855. "id": "codeEdit",
  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/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6862. break; //
  6863. case "MindMap": //MindMap
  6864. _formdiv = new U.UF.UI.form(
  6865. "MindMap",
  6866. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6867. "id": "MindMap",
  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/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6874. break;
  6875. case "netWorkPanel": //netWorkPanel
  6876. _formdiv = new U.UF.UI.form(
  6877. "netWorkPanel",
  6878. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6879. "id": "netWorkPanel",
  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/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6886. break;
  6887. case "GeoGebra": //GeoGebra
  6888. _formdiv = new U.UF.UI.form(
  6889. "GeoGebra",
  6890. $$("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" }), {
  6891. "id": "GeoGebra",
  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/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6898. break;
  6899. case "translation": //翻译
  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": "//dict.youdao.com/" }), {
  6903. "id": "translation",
  6904. "style": { "width": "80%", "height": "90%", "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/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6910. break;
  6911. case "mohe": //魔盒
  6912. _formdiv = new U.UF.UI.form(
  6913. "魔盒识字",
  6914. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6915. "id": "mohe",
  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/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6922. break;
  6923. case "24game": //24点
  6924. _formdiv = new U.UF.UI.form(
  6925. "24点",
  6926. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6927. "id": "24game",
  6928. "style": { "width": "375px", "height": "667px", "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/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6934. break;
  6935. case "case":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6939. "id": "case",
  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/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6946. break;
  6947. case "snf":
  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": "//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" }), {
  6951. "id": "snf",
  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/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6958. break;
  6959. case "hanFamily":
  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#/hzjz" }), {
  6963. "id": "hanFamily",
  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/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6970. break;
  6971. case "hanClassics":
  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#/gxjd" }), {
  6975. "id": "hanClassics",
  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/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6982. break;
  6983. case "hanTraining":
  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#/bhxl" }), {
  6987. "id": "hanTraining",
  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/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6994. break;
  6995. case "hanClass":
  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#/sfkt" }), {
  6999. "id": "hanClass",
  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/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7006. break;
  7007. case "han":
  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": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7011. "id": "han",
  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/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7018. break;
  7019. case "projectGM": //课程管理
  7020. _formdiv = new U.UF.UI.form(
  7021. "课程管理",
  7022. $$("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 }), {
  7023. "id": "projectGM",
  7024. "style": { "width": "90%", "height": "90%", "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/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7030. break;
  7031. case "studyGM": //课程中心
  7032. _formdiv = new U.UF.UI.form(
  7033. "课程中心",
  7034. $$("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
  7035. "id": "study",
  7036. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7037. "onresize": function () { }
  7038. }, {
  7039. closecallback: function () { }
  7040. }, { "style": { "height": "36px" } }).form; //创建窗体
  7041. _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); } }
  7042. break;
  7043. // studentGM
  7044. case "studentGM": //学生管理
  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/#/studentGM?userid=" + _userid + "&oid=" + _oid + "&cid=" + _classId + "&org=" + _org }), {
  7048. "id": "studentGM",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7055. break;
  7056. case "evaluateGM": //学生评价
  7057. _formdiv = new U.UF.UI.form(
  7058. "学生评价",
  7059. $$("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 }), {
  7060. "id": "evaluateGM",
  7061. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7062. "onresize": function () { }
  7063. }, {
  7064. closecallback: function () { }
  7065. }, { "style": { "height": "36px" } }).form; //创建窗体
  7066. _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); } }
  7067. break;
  7068. // classGM
  7069. case "classGM": //班级管理
  7070. _formdiv = new U.UF.UI.form(
  7071. "班级管理",
  7072. $$("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 }), {
  7073. "id": "classGM",
  7074. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7075. "onresize": function () { }
  7076. }, {
  7077. closecallback: function () { }
  7078. }, { "style": { "height": "36px" } }).form; //创建窗体
  7079. _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); } }
  7080. break;
  7081. // dataGM
  7082. case "dataGM":
  7083. _formdiv = new U.UF.UI.form(
  7084. "我的资料",
  7085. $$("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 }), {
  7086. "id": "dataGM",
  7087. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7088. "onresize": function () { }
  7089. }, {
  7090. closecallback: function () { }
  7091. }, { "style": { "height": "36px" } }).form; //创建窗体
  7092. _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); } }
  7093. break;
  7094. // caseGM
  7095. case "caseGM": //课程进展
  7096. _formdiv = new U.UF.UI.form(
  7097. "课程进展",
  7098. $$("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 }), {
  7099. "id": "caseGM",
  7100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7101. "onresize": function () { }
  7102. }, {
  7103. closecallback: function () { }
  7104. }, { "style": { "height": "36px" } }).form; //创建窗体
  7105. _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); } }
  7106. break;
  7107. // meterialGM
  7108. case "meterialGM": //素材库
  7109. _formdiv = new U.UF.UI.form(
  7110. "素材库",
  7111. $$("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 }), {
  7112. "id": "meterialGM",
  7113. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7114. "onresize": function () { }
  7115. }, {
  7116. closecallback: function () { }
  7117. }, { "style": { "height": "36px" } }).form; //创建窗体
  7118. _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); } }
  7119. break;
  7120. // evaluateSGM
  7121. case "evaluateSGM": //我的评价
  7122. _formdiv = new U.UF.UI.form(
  7123. "我的评价",
  7124. $$("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 }), {
  7125. "id": "evaluateSGM",
  7126. "style": { "width": "70%", "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/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7132. break;
  7133. case "jupyter": //jupyter
  7134. _formdiv = new U.UF.UI.form(
  7135. "jupyter",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7137. "id": "jupyter",
  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/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7144. break;
  7145. case "number": //数字实验室
  7146. _formdiv = new U.UF.UI.form(
  7147. "数字实验室",
  7148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7149. "id": "number",
  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/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7156. break;
  7157. case "studentCourse": //项目管理 学生
  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/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7161. "id": "studentCourse",
  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 "studentCourseS": //项目管理 老师
  7170. _formdiv = new U.UF.UI.form(
  7171. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7172. $$("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 }), {
  7173. "id": "studentCourseS",
  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/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7180. break;
  7181. case "studentIndex": //项目中心
  7182. _formdiv = new U.UF.UI.form(
  7183. "项目中心",
  7184. $$("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 }), {
  7185. "id": "studentIndex",
  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/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7192. break;
  7193. case "CaseDesignS":
  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/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7197. "id": "case",
  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/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7204. break;
  7205. case "tcStudent": //腾讯学生管理
  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/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7209. "id": "tcStudent",
  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/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7216. break;
  7217. case "tcSchool": //腾讯学校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7221. "id": "tcSchool",
  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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7228. break;
  7229. case "tcTeacher": //腾讯学校管理
  7230. _formdiv = new U.UF.UI.form(
  7231. "教师管理",
  7232. $$("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 }), {
  7233. "id": "tcTeacher",
  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 "teacher":
  7242. _formdiv = new U.UF.UI.form(
  7243. "教师管理",
  7244. $$("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 }), {
  7245. "id": "teacher",
  7246. "style": { "width": "90%", "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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7252. break;
  7253. case "tcData": //腾讯我的资料
  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/#/tcData?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7257. "id": "tcData",
  7258. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7264. break;
  7265. case "tcNotice": //腾讯消息通知
  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/#/tcNotice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7269. "id": "tcNotice",
  7270. "style": { "width": "90%", "height": "90%", "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/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7276. break;
  7277. case "myReport": //好友打开
  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/#/myReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&classid=" + _classId }), {
  7281. "id": "myReport",
  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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7288. break;
  7289. case "learnAna": //好友打开
  7290. _formdiv = new U.UF.UI.form(
  7291. "学习分析",
  7292. $$("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 }), {
  7293. "id": "learnAna",
  7294. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _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); } }
  7300. break;
  7301. case "AIChat": //AI共创
  7302. _formdiv = new U.UF.UI.form(
  7303. "AI共创",
  7304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7305. "id": "AIChat",
  7306. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. istop: true,
  7310. closecallback: function () { $("#aichat_icon").remove(); },
  7311. narrowcallback: function () {
  7312. if (!$("#aichat_icon")[0]) {
  7313. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7314. }
  7315. },
  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 "ainew": //AI共创
  7320. _formdiv = new U.UF.UI.form(
  7321. "AI协同",
  7322. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7323. "id": "ainew",
  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/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7330. break;
  7331. case "gpt4": //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/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7335. "id": "gpt4",
  7336. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7337. "onresize": function () { }
  7338. }, {
  7339. closecallback: function () { }
  7340. }, { "style": { "height": "36px" } }).form; //创建窗体
  7341. _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); } }
  7342. break;
  7343. case "aigpt": //gpt4
  7344. _formdiv = new U.UF.UI.form(
  7345. "AI助手+",
  7346. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7347. "id": "aigpt",
  7348. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7349. "onresize": function () { }
  7350. }, {
  7351. closecallback: function () {
  7352. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7353. }
  7354. }, { "style": { "height": "36px" } }).form; //创建窗体
  7355. _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); } }
  7356. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7357. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7358. })
  7359. break;
  7360. case "aiKnowledge": //aiKnowledge
  7361. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7362. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7363. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7364. }
  7365. _formdiv = new U.UF.UI.form(
  7366. "知识建构",
  7367. $$("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 }), {
  7368. "id": "aiKnowledge",
  7369. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7370. "onresize": function () { }
  7371. }, {
  7372. closecallback: function () { }
  7373. }, { "style": { "height": "36px" } }).form; //创建窗体
  7374. _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); } }
  7375. break;
  7376. case "futureClass": //AI共创
  7377. _formdiv = new U.UF.UI.form(
  7378. "协同建构",
  7379. $$("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
  7380. "id": "synergyCourse",
  7381. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7382. "onresize": function () { }
  7383. }, {
  7384. closecallback: function () {
  7385. $("iframe", _formdiv)[0].contentWindow.loginout();
  7386. }
  7387. }, { "style": { "height": "36px" } }).form; //创建窗体
  7388. _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); } }
  7389. break;
  7390. case "aiagent": //ai agent
  7391. _formdiv = new U.UF.UI.form(
  7392. "AI Agent",
  7393. $$("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" }), {
  7394. "id": "AIAgent",
  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/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7401. break;
  7402. case "dataBoard": //数据看板
  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/#/dataBoard?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7406. "id": "dataBoard",
  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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7413. break;
  7414. case "dataBoardSies": //数据融合
  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/#/dataBoardSies?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7418. "id": "dataBoardSies",
  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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7425. break;
  7426. case "dataBoardNew": //数据看板
  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/#/dataBoardNew?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7430. "id": "dataBoardNew",
  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/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7437. break;
  7438. case "dataBoardTest": //数据看板
  7439. _formdiv = new U.UF.UI.form(
  7440. "评测看板",
  7441. $$("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 }), {
  7442. "id": "dataBoardTest",
  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/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7449. break;
  7450. case "AIAnalyse": //AI共创
  7451. _formdiv = new U.UF.UI.form(
  7452. "AI分析",
  7453. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7454. "id": "AIAnalyse",
  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/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7461. break;
  7462. case "studioCourse": //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-teacher-table/dist/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7466. "id": "studioCourse",
  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/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7473. break;
  7474. case "studioIndex": //AI共创
  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-student-table/dist/#/studioIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  7478. "id": "studioIndex",
  7479. "style": { "width": "100%", "height": "100%", "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/studioIndex.png)" }, "name": "工作中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7485. break;
  7486. case "source":
  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/#/teacherSource?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7490. "id": "source",
  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/source.png)" }, "name": "教学资源", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7497. break;
  7498. case "testTeacher":
  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/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7502. "id": "testTeacher",
  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/testTeacher.png)" }, "name": "智能表单", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7509. break;
  7510. case "testStudent":
  7511. _formdiv = new U.UF.UI.form(
  7512. "教师中心",
  7513. $$("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 }), {
  7514. "id": "testStudent",
  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/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7521. break;
  7522. case "testTeacherSies":
  7523. _formdiv = new U.UF.UI.form(
  7524. "教师管理",
  7525. $$("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 }), {
  7526. "id": "testTeacherSies",
  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/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7533. break;
  7534. case "testStudentSies":
  7535. _formdiv = new U.UF.UI.form(
  7536. "教师中心",
  7537. $$("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 }), {
  7538. "id": "testStudentSies",
  7539. "style": { "width": "80%", "height": "80%", "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/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7545. break;
  7546. case "ytpbl": //消息通知
  7547. _formdiv = new U.UF.UI.form(
  7548. "案例征集",
  7549. $$("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 }), {
  7550. "id": "ytpbl",
  7551. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7552. "onresize": function () { }
  7553. }, {
  7554. closecallback: function () { }
  7555. }, { "style": { "height": "36px" } }).form; //创建窗体
  7556. _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); } }
  7557. // 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");
  7558. break;
  7559. case "aiCourseResource": //人工智能窗体
  7560. _formdiv = new U.UF.UI.form(
  7561. false,
  7562. $$("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 }), {
  7563. "id": "aiCourseResource",
  7564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7565. "onresize": function () { },
  7566. "isdrag": false,
  7567. }, {
  7568. closecallback: function () { }
  7569. }, { "style": { "height": "36px" } }).form; //创建窗体
  7570. _taskbar = ''
  7571. break;
  7572. case "szdjgCocooroboX": //图形化编程
  7573. _formdiv = new U.UF.UI.form(
  7574. "图形化编程",
  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/index.html" }), {
  7576. "id": "szdjgCocooroboX",
  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 "szdjgPython": //python编程
  7585. _formdiv = new U.UF.UI.form(
  7586. "Python编程",
  7587. $$("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" }), {
  7588. "id": "szdjgPython",
  7589. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7590. "onresize": function () { }
  7591. }, {
  7592. closecallback: function () { }
  7593. }, { "style": { "height": "36px" } }).form; //创建窗体
  7594. _taskbar = ''
  7595. break;
  7596. case "Record":
  7597. _formdiv = new U.UF.UI.form(
  7598. "观察记录",
  7599. $$("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 }), {
  7600. "id": "Record",
  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/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7607. break;
  7608. case "aigptCourse":
  7609. _formdiv = new U.UF.UI.form(
  7610. "AI智能体",
  7611. $$("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' }), {
  7612. "id": "aigptCourse",
  7613. "style": { "width": "90%", "height": "90%", "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/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7619. break;
  7620. case "classroomObservation":
  7621. _formdiv = new U.UF.UI.form(
  7622. "课堂观察",
  7623. $$("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 }), {
  7624. "id": "classroomObservation",
  7625. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7626. "onresize": function () { }
  7627. }, {
  7628. closecallback: function () { }
  7629. }, { "style": { "height": "36px" } }).form; //创建窗体
  7630. _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); } }
  7631. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7632. break;
  7633. case "pblCourse":
  7634. _formdiv = new U.UF.UI.form(
  7635. "学生PBL",
  7636. $$("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 }), {
  7637. "id": "pblCourse",
  7638. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7639. "onresize": function () { }
  7640. }, {
  7641. closecallback: function () { }
  7642. }, { "style": { "height": "36px" } }).form; //创建窗体
  7643. _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); } }
  7644. break;
  7645. case "appStore":
  7646. U.MD.D.addOp('','cocoflowOpen','')
  7647. _formdiv = new U.UF.UI.form(
  7648. "CocoFlow",
  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": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7650. "id": "appStore",
  7651. "style": { "width": "100%", "height": "100%", "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/appStore.png)" }, "name": "CocoFlow", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7657. break;
  7658. case "sassPlatform":
  7659. _formdiv = new U.UF.UI.form(
  7660. "Sass通用后台管理",
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/sassPlatform?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7662. "id": "sassPlatform",
  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/sassPlatForm.png)" }, "name": "sassPlatform", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7669. break;
  7670. case "EDU":
  7671. _formdiv = new U.UF.UI.form(
  7672. "EDU",
  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": "//edu.cocorobo.cn" }), {
  7674. "id": "EDU",
  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/EDU.png)" }, "name": "EDU", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7681. break;
  7682. case "knowledge":
  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": "https://storage.cocorobo.cn/dist/#/knowledge?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7686. "id": "knowledge",
  7687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () { }
  7691. }, { "style": { "height": "36px" } }).form; //创建窗体
  7692. _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); } }
  7693. break;
  7694. case "userExamine":
  7695. _formdiv = new U.UF.UI.form(
  7696. "账号申请",
  7697. $$("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" }), {
  7698. "id": "userExamine",
  7699. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7700. "onresize": function () { }
  7701. }, {
  7702. closecallback: function () { }
  7703. }, { "style": { "height": "36px" } }).form; //创建窗体
  7704. break;
  7705. case "cocoflowDeskTop": //cocoflowDeskTop
  7706. _formdiv = new U.UF.UI.form(
  7707. false,
  7708. $$("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 }), {
  7709. "id": "cocoflowDeskTop",
  7710. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7711. "onresize": function () { },
  7712. }, {
  7713. closecallback: function () { },
  7714. "isdrag": false,
  7715. }, { "style": { "height": "36px" } }).form; //创建窗体
  7716. _taskbar = ''
  7717. break;
  7718. case "liyuanLogin": //liyuanLogin
  7719. _formdiv = new U.UF.UI.form(
  7720. false,
  7721. $$("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 }), {
  7722. "id": "liyuanLogin",
  7723. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7724. "onresize": function () { },
  7725. }, {
  7726. closecallback: function () { },
  7727. isdrag: false,
  7728. isstretching: false,
  7729. isenlarge: false,
  7730. isnarrow: false
  7731. }, { "style": { "height": "36px" } }).form; //创建窗体
  7732. _taskbar = ''
  7733. break;
  7734. case "updatePaDialog":
  7735. _formdiv = new U.UF.UI.form(
  7736. "密码修改",
  7737. $$("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 }), {
  7738. "id": "updatePaDialog",
  7739. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7740. "onresize": function () { },
  7741. }, {
  7742. closecallback: function () { },
  7743. isclose: false,
  7744. isdrag: false,
  7745. isstretching: false,
  7746. isenlarge: false,
  7747. isnarrow: false
  7748. }, { "style": { "height": "36px" } }).form; //创建窗体
  7749. break;
  7750. }
  7751. //U.MD.D.I.openClick(str);
  7752. //如果有任务栏信息
  7753. if (_taskbar) {
  7754. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7755. }
  7756. if(iframeBool){
  7757. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7758. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7759. // console.log("iframe进入");
  7760. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7761. // };
  7762. setTimeout(() => {
  7763. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7764. }, 2000);
  7765. }
  7766. }
  7767. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7768. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7769. _userinfo = US.userInfo, //登录用户信息
  7770. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7771. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7772. let iframeBool = true;
  7773. let queryString = ''
  7774. if(array && array.length){
  7775. const paramsMap = {
  7776. userid: _userid,
  7777. org: _org,
  7778. oid: _oid,
  7779. type: _type,
  7780. role: _role,
  7781. classId: _classId,
  7782. TscreenType: _TscreenType,
  7783. SscreenType: _SscreenType
  7784. };
  7785. const canshu = array
  7786. .filter(param => paramsMap[param] !== undefined)
  7787. .map(param => `${param}=${paramsMap[param]}`);
  7788. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7789. }
  7790. let _url = url + queryString
  7791. if(U.UF.UI.form.allForm[id]){
  7792. iframeBool = false
  7793. }
  7794. _formdiv = new U.UF.UI.form(
  7795. false,
  7796. $$("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 }),
  7797. {
  7798. "id": id,
  7799. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7800. "onresize": function () { },
  7801. },
  7802. {
  7803. closecallback: function () { },
  7804. isdrag: false,
  7805. isstretching: false,
  7806. isenlarge: false,
  7807. isnarrow: false
  7808. },
  7809. { "style": { "height": "36px" } },
  7810. undefined,
  7811. undefined,
  7812. dom
  7813. ).form
  7814. }
  7815. // U.MD.D.I.openClick = function(str){
  7816. // var click = '';
  7817. // switch(str){
  7818. // case 'friend':
  7819. // click = '我的好友';
  7820. // break;
  7821. // case 'domain':
  7822. // click = '域名管理';
  7823. // break;
  7824. // case 'disk':
  7825. // click = '我的云盘';
  7826. // break;
  7827. // case 'word':
  7828. // click = 'Word';
  7829. // break;
  7830. // case 'excel':
  7831. // click = 'Execl';
  7832. // break;
  7833. // case 'txt':
  7834. // click = '文本文件';
  7835. // break;
  7836. // case 'lookupFriend':
  7837. // click = '查找好友';
  7838. // break;
  7839. // case 'ftp':
  7840. // click = 'FTP';
  7841. // break;
  7842. // case 'group':
  7843. // click = '群组';
  7844. // break;
  7845. // case 'set':
  7846. // click = '我的设置';
  7847. // break;
  7848. // case 'systemSet':
  7849. // click = '系统设置';
  7850. // break;
  7851. // case 'boomYun':
  7852. // click = '互联办公';
  7853. // break;
  7854. // case 'xz':
  7855. // click = '云端下载';
  7856. // break;
  7857. // case 'client':
  7858. // click = '有思浏览器';
  7859. // break;
  7860. // case 'backEndProgramming':
  7861. // click = '在线后台编程';
  7862. // break;
  7863. // case 'frontEndProgramming':
  7864. // click = '在线前端编程';
  7865. // break;
  7866. // default: break;
  7867. // }
  7868. // if(U.MD.D.I.Ip && click){
  7869. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7870. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7871. // })
  7872. // }
  7873. // }
  7874. /**
  7875. *函数作用:ajax简易函数,使用post格式
  7876. *@param url {data} 后台地址
  7877. *@param data {data} 参数json
  7878. *@param fn {data} 回调函数
  7879. *
  7880. */
  7881. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7882. // var xhr = new XMLHttpRequest();
  7883. // xhr.open("GET",url,true);
  7884. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7885. // xhr.onreadystatechange = function(){
  7886. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7887. // fn.call(this,xhr.responseText);
  7888. // }
  7889. // };
  7890. // xhr.send();
  7891. // }
  7892. /*判断是否是内网IP*/
  7893. // U.MD.D.I.isInnerIPFn = function(str){
  7894. // var curPageUrl = str;
  7895. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7896. // curPageUrl =curPageUrl.replace(reg1,'');
  7897. // // console.log('curPageUrl-1 '+curPageUrl);
  7898. // var reg2 = /\:+/g;//替换冒号为一点
  7899. // curPageUrl =curPageUrl.replace(reg2,'.');
  7900. // // console.log('curPageUrl-2 '+curPageUrl);
  7901. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7902. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7903. // if(curPageUrl[2] != '16'){
  7904. // return ipAddress;
  7905. // }else{
  7906. // return false;
  7907. // }
  7908. // }
  7909. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7910. // //compatibility for firefox and chrome
  7911. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7912. // var pc = new myPeerConnection({
  7913. // iceServers: []
  7914. // }),
  7915. // noop = function() {},
  7916. // localIPs = {},
  7917. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7918. // key;
  7919. // function iterateIP(ip) {
  7920. // if (!localIPs[ip]) onNewIP(ip);
  7921. // localIPs[ip] = true;
  7922. // }
  7923. // //create a bogus data channel
  7924. // pc.createDataChannel("");
  7925. // // create offer and set local description
  7926. // pc.createOffer().then(function(sdp) {
  7927. // sdp.sdp.split('\n').forEach(function(line) {
  7928. // if (line.indexOf('candidate') < 0) return;
  7929. // line.match(ipRegex).forEach(iterateIP);
  7930. // });
  7931. // pc.setLocalDescription(sdp, noop, noop);
  7932. // }).catch(function(reason) {
  7933. // // An error occurred, so handle the failure to connect
  7934. // });
  7935. // //sten for candidate events
  7936. // pc.onicecandidate = function(ice) {
  7937. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7938. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7939. // };
  7940. // }
  7941. // U.MD.D.I.getUserIpBool = function(callback){
  7942. // U.MD.D.I.getUserIP(function(ip){
  7943. // alert("Got IP! :" + ip);
  7944. // });
  7945. //}
  7946. //#endregion
  7947. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7948. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7949. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7950. _userinfo = US.userInfo, //登录用户信息
  7951. _userid = US.userInfo.userid //登录用户id
  7952. let _iframe;
  7953. let _cid = cid,
  7954. _stage = stage,
  7955. _task = task,
  7956. _tool = tool;
  7957. var _jie = $$("div", {
  7958. "style": {
  7959. "position": "absolute",
  7960. "bottom": "50px",
  7961. "right": "50px",
  7962. "zIndex": "9999",
  7963. "backgroundColor": "#2268bc",
  7964. "color": "#fff",
  7965. "padding": "12px 20px",
  7966. "cursor": "pointer",
  7967. "borderRadius": "4px",
  7968. },
  7969. "innerHTML": "提交作业"
  7970. })
  7971. let aTool = ''
  7972. let _loading = document.createElement('div')
  7973. _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;"
  7974. // _loading.id = "";
  7975. let _lchild = document.createElement('div')
  7976. let _limg = document.createElement('img')
  7977. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7978. _limg.style = "width: 26px;margin-right: 10px;"
  7979. _lchild.appendChild(_limg)
  7980. let _lspan = document.createElement('span')
  7981. _lspan.innerHTML = "上传中..."
  7982. _lchild.appendChild(_lspan)
  7983. _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%);"
  7984. _loading.appendChild(_lchild)
  7985. var _box = $$('div', {
  7986. "style": {
  7987. "position": "relative",
  7988. "width": "100%",
  7989. "height": "100%",
  7990. },
  7991. })
  7992. _box.appendChild(_loading)
  7993. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7994. switch (str) {
  7995. case "whiteboard":
  7996. aTool = 1;
  7997. _iframe = $$("iframe", {
  7998. "frameborder": "no",
  7999. "border": "0",
  8000. "scrolling ": "no",
  8001. "style": {
  8002. "cssText": "border:0;width:100%;height:100%"
  8003. },
  8004. "src": "https://beta.iwb.cocorobo.cn/"
  8005. })
  8006. _box.appendChild(_iframe);
  8007. _box.appendChild(_jie);
  8008. _formdiv = new U.UF.UI.form(
  8009. "电子白板",
  8010. _box, {
  8011. "id": "whiteboard" + cid + stage + task + tool,
  8012. "style": {
  8013. "width": "90%",
  8014. "height": "90%",
  8015. "overflow": 'hidden'
  8016. },
  8017. "onresize": function () { }
  8018. }, {
  8019. closecallback: function () { }
  8020. }, {
  8021. "style": {
  8022. "height": "36px"
  8023. }
  8024. }).form; //创建窗体
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8029. },
  8030. "name": "电子白板",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "mind":
  8038. aTool = 3;
  8039. _iframe = $$("iframe", {
  8040. "frameborder": "no",
  8041. "border": "0",
  8042. "scrolling ": "no",
  8043. "style": {
  8044. "cssText": "border:0;width:100%;height:100%"
  8045. },
  8046. "src": "/kityminder-editor/dist/index.html"
  8047. })
  8048. _box.appendChild(_iframe);
  8049. _box.appendChild(_jie);
  8050. _formdiv = new U.UF.UI.form(
  8051. "思维导图",
  8052. _box, { //"/jsmind/example/demo.html"
  8053. "id": "mind" + cid + stage + task + tool,
  8054. "style": {
  8055. "width": "90%",
  8056. "height": "90%",
  8057. "overflow": 'hidden'
  8058. },
  8059. "onresize": function () { }
  8060. }, {
  8061. closecallback: function () { }
  8062. }, {
  8063. "style": {
  8064. "height": "36px"
  8065. }
  8066. }).form; //创建窗体
  8067. _taskbar = {
  8068. "id": str + _formdiv.id,
  8069. "style": {
  8070. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8071. },
  8072. "name": "思维导图",
  8073. "forms": _formdiv,
  8074. "click": function () {
  8075. U.MD.D.I.openApplication(str, obj, info);
  8076. }
  8077. }
  8078. break;
  8079. case "MindMap":
  8080. aTool = 3;
  8081. _iframe = $$("iframe", {
  8082. "frameborder": "no",
  8083. "border": "0",
  8084. "scrolling ": "no",
  8085. "style": {
  8086. "cssText": "border:0;width:100%;height:100%"
  8087. },
  8088. "src": "//cloud.cocorobo.cn/mind/"
  8089. })
  8090. _box.appendChild(_iframe);
  8091. _box.appendChild(_jie);
  8092. _formdiv = new U.UF.UI.form(
  8093. "思维导图",
  8094. _box, { //"/jsmind/example/demo.html"
  8095. "id": "mind" + cid + stage + task + tool,
  8096. "style": {
  8097. "width": "90%",
  8098. "height": "90%",
  8099. "overflow": 'hidden'
  8100. },
  8101. "onresize": function () { }
  8102. }, {
  8103. closecallback: function () { }
  8104. }, {
  8105. "style": {
  8106. "height": "36px"
  8107. }
  8108. }).form; //创建窗体
  8109. _taskbar = {
  8110. "id": str + _formdiv.id,
  8111. "style": {
  8112. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8113. },
  8114. "name": "思维导图",
  8115. "forms": _formdiv,
  8116. "click": function () {
  8117. U.MD.D.I.openApplication(str, obj, info);
  8118. }
  8119. }
  8120. break;
  8121. case "doc":
  8122. aTool = 6;
  8123. _iframe = $$("iframe", {
  8124. "frameborder": "no",
  8125. "border": "0",
  8126. "scrolling ": "no",
  8127. "style": {
  8128. "cssText": "border:0;width:100%;height:100%"
  8129. },
  8130. "src": "/Office/Word/WordEditArea.htm"
  8131. })
  8132. _box.appendChild(_iframe);
  8133. _box.appendChild(_jie);
  8134. _formdiv = new U.UF.UI.form(
  8135. "协同文档",
  8136. _box, {
  8137. "id": "doc" + cid + stage + task + tool,
  8138. "style": {
  8139. "width": "90%",
  8140. "height": "90%",
  8141. "overflow": 'hidden'
  8142. },
  8143. "onresize": function () { }
  8144. }, {
  8145. closecallback: function () { }
  8146. }, {
  8147. "style": {
  8148. "height": "36px"
  8149. }
  8150. }).form; //创建窗体
  8151. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8152. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8153. })
  8154. _taskbar = {
  8155. "id": str + _formdiv.id,
  8156. "style": {
  8157. "backgroundImage": "url(/img/icon/doc.png)"
  8158. },
  8159. "name": "协同文档",
  8160. "forms": _formdiv,
  8161. "click": function () {
  8162. U.MD.D.I.openApplication(str, obj, info);
  8163. }
  8164. }
  8165. break;
  8166. case "mindNetwork": //好友打开
  8167. aTool = 7;
  8168. _iframe = $$("iframe", {
  8169. "webkitallowfullscreen": "",
  8170. "mozallowfullscreen": "",
  8171. "allowfullscreen": "",
  8172. "frameborder": "no",
  8173. "border": "0",
  8174. "scrolling ": "no",
  8175. "style": {
  8176. "cssText": "border:0; width:100%; height:100%;"
  8177. },
  8178. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8179. })
  8180. _box.appendChild(_iframe);
  8181. _box.appendChild(_jie);
  8182. _formdiv = new U.UF.UI.form(
  8183. "思维网格",
  8184. _box, {
  8185. "id": "mindNetwork" + cid + stage + task + tool,
  8186. "style": {
  8187. "width": "90%",
  8188. "height": "90%",
  8189. "overflow": 'hidden'
  8190. },
  8191. "onresize": function () { }
  8192. }, {
  8193. closecallback: function () { }
  8194. }, {
  8195. "style": {
  8196. "height": "36px"
  8197. }
  8198. }).form; //创建窗体
  8199. _taskbar = {
  8200. "id": str + _formdiv.id,
  8201. "style": {
  8202. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8203. },
  8204. "name": "思维网格",
  8205. "forms": _formdiv,
  8206. "click": function () {
  8207. U.MD.D.I.openApplication(str, obj, info);
  8208. }
  8209. }
  8210. break;
  8211. case "courseDesign":
  8212. _iframe = $$("iframe", {
  8213. "webkitallowfullscreen": "",
  8214. "mozallowfullscreen": "",
  8215. "allowfullscreen": "",
  8216. "frameborder": "no",
  8217. "border": "0",
  8218. "scrolling ": "no",
  8219. "style": {
  8220. "cssText": "border:0; width:100%; height:100%;"
  8221. },
  8222. "src": "/course-design-vue"
  8223. })
  8224. _box.appendChild(_iframe);
  8225. _box.appendChild(_jie);
  8226. _formdiv = new U.UF.UI.form(
  8227. "项目设计",
  8228. _box, {
  8229. "id": "courseDesign" + cid + stage + task + tool,
  8230. "style": {
  8231. "width": "90%",
  8232. "height": "90%",
  8233. "overflow": 'hidden'
  8234. },
  8235. "onresize": function () { }
  8236. }, {
  8237. closecallback: function () { }
  8238. }, {
  8239. "style": {
  8240. "height": "36px"
  8241. }
  8242. }).form; //创建窗体
  8243. _taskbar = {
  8244. "id": str + _formdiv.id,
  8245. "style": {
  8246. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8247. },
  8248. "name": "项目设计",
  8249. "forms": _formdiv,
  8250. "click": function () {
  8251. U.MD.D.I.openApplication(str, obj, info);
  8252. }
  8253. }
  8254. break;
  8255. }
  8256. const script1 = document.createElement("script");
  8257. script1.type = "text/javascript";
  8258. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8259. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8260. const script2 = document.createElement("script");
  8261. script2.type = "text/javascript";
  8262. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8263. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8264. const script3 = document.createElement("script");
  8265. script3.type = "text/javascript";
  8266. script3.charset = "UTF-8";
  8267. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8268. const script4 = document.createElement("script");
  8269. script4.type = "text/javascript";
  8270. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8271. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8272. if (_iframe) {
  8273. if (str == 'doc') {
  8274. _iframe = _formdiv.querySelector('iframe')
  8275. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8276. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8277. _iframe.contentWindow.document.body.appendChild(script1);
  8278. _iframe.contentWindow.document.body.appendChild(script2);
  8279. // _iframe.contentWindow.document.body.appendChild(script3);
  8280. _iframe.contentWindow.document.body.appendChild(script4);
  8281. })
  8282. if (onloadListener) {
  8283. _iframe.contentDocument.location.reload()
  8284. } else {
  8285. _iframe.contentDocument.location.reload()
  8286. }
  8287. } else if (str == 'courseDesign') {
  8288. U.UF.DL.iframeLoad(_iframe, function () {
  8289. // _iframe.contentWindow.U.MD.O.W.load();
  8290. // _iframe.contentWindow.document.body.appendChild(script1);
  8291. _iframe.contentWindow.document.body.appendChild(script2);
  8292. _iframe.contentWindow.document.body.appendChild(script4);
  8293. })
  8294. } else if (str == 'mind') {
  8295. _iframe = _formdiv.querySelector('iframe')
  8296. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8297. //
  8298. _iframe.contentWindow.document.body.appendChild(script1);
  8299. _iframe.contentWindow.document.body.appendChild(script2);
  8300. _iframe.contentWindow.document.body.appendChild(script4);
  8301. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8302. })
  8303. if (onloadListener) {
  8304. _iframe.contentDocument.location.reload()
  8305. } else {
  8306. _iframe.contentDocument.location.reload()
  8307. }
  8308. } else if (str == 'whiteboard') {
  8309. _iframe = _formdiv.querySelector('iframe')
  8310. let onloadListener = _iframe.onload = () => {
  8311. _iframe.contentWindow.document.body.appendChild(script1);
  8312. _iframe.contentWindow.document.body.appendChild(script2);
  8313. _iframe.contentWindow.document.body.appendChild(script4);
  8314. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8315. };
  8316. // if (onloadListener) {
  8317. // try {
  8318. // _iframe.src += "?cocorobo="+new Date().getTime()
  8319. // _iframe.contentWindow.document.location.reload()
  8320. // } catch (error) {
  8321. // }
  8322. // } else {
  8323. // _iframe.contentDocument.location.reload()
  8324. // }
  8325. } else {
  8326. _iframe.onload = () => {
  8327. _iframe.contentWindow.document.body.appendChild(script1);
  8328. _iframe.contentWindow.document.body.appendChild(script2);
  8329. // _iframe.contentWindow.document.body.appendChild(script3);
  8330. _iframe.contentWindow.document.body.appendChild(script4);
  8331. };
  8332. }
  8333. _jie.onclick = async () => {
  8334. let text = ''
  8335. if (aTool == 1) {
  8336. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8337. } else if (aTool == 6) {
  8338. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8339. } else if (aTool == 3) {
  8340. text = await U.MD.D.I.getEditorContent(_iframe);
  8341. }
  8342. _loading.style.display = 'flex'
  8343. console.log(_loading);
  8344. var _ajs = _iframe.contentWindow.document.createElement("script");
  8345. _ajs.type = "text/javascript";
  8346. _ajs.innerHTML =
  8347. // 'console.log(' + _loading + ');\n' +
  8348. 'var _js = document.createElement("script");\n' +
  8349. '_js.type="text/javascript";\n' +
  8350. '_js.charset="UTF-8";\n' +
  8351. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8352. "_js.onload = function(){\n" +
  8353. ' var a = document.getElementsByTagName("img")\n' +
  8354. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8355. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8356. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8357. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8358. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8359. "beforeUpload_shishi(file," +
  8360. "'" +
  8361. _userid +
  8362. "'" +
  8363. ", " +
  8364. "'" +
  8365. _cid +
  8366. "'" +
  8367. ", " +
  8368. "'" +
  8369. _stage +
  8370. "'" +
  8371. ", " +
  8372. "'" +
  8373. _task +
  8374. "'" +
  8375. ", " +
  8376. "'" +
  8377. _tool +
  8378. "'" +
  8379. ", " +
  8380. "'" +
  8381. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8382. "'" +
  8383. ", " +
  8384. "'" +
  8385. aTool +
  8386. "'" +
  8387. ", " +
  8388. "`" +
  8389. text +
  8390. "`" +
  8391. ")\n" +
  8392. " });\n" +
  8393. "}\n" +
  8394. "document.head.appendChild(_js);\n";
  8395. _iframe.contentWindow.document.head.appendChild(_ajs);
  8396. }
  8397. }
  8398. //U.MD.D.I.openClick(str);
  8399. //如果有任务栏信息
  8400. // if (_taskbar) {
  8401. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8402. // }
  8403. }
  8404. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8405. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8406. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8407. _userinfo = US.userInfo, //登录用户信息
  8408. _userid = US.userInfo.userid //登录用户id
  8409. let _iframe;
  8410. let _cid = cid,
  8411. _stage = stage,
  8412. _task = task,
  8413. _tool = tool;
  8414. var _jie = $$("div", {
  8415. "style": {
  8416. "position": "absolute",
  8417. "bottom": "50px",
  8418. "right": "50px",
  8419. "zIndex": "9999",
  8420. "backgroundColor": "#2268bc",
  8421. "color": "#fff",
  8422. "padding": "12px 20px",
  8423. "cursor": "pointer",
  8424. "borderRadius": "4px",
  8425. },
  8426. "innerHTML": "提交作业"
  8427. })
  8428. let aTool = ''
  8429. let _loading = document.createElement('div')
  8430. _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;"
  8431. // _loading.id = "";
  8432. let _lchild = document.createElement('div')
  8433. let _limg = document.createElement('img')
  8434. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8435. _limg.style = "width: 26px;margin-right: 10px;"
  8436. _lchild.appendChild(_limg)
  8437. let _lspan = document.createElement('span')
  8438. _lspan.innerHTML = "上传中..."
  8439. _lchild.appendChild(_lspan)
  8440. _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%);"
  8441. _loading.appendChild(_lchild)
  8442. let _box = $$('div', {
  8443. "style": {
  8444. "position": "relative",
  8445. "width": "100%",
  8446. "height": "100%",
  8447. },
  8448. })
  8449. _box.appendChild(_loading)
  8450. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8451. switch (str) {
  8452. case "whiteboard":
  8453. aTool = 1;
  8454. _iframe = $$("iframe", {
  8455. "frameborder": "no",
  8456. "border": "0",
  8457. "scrolling ": "no",
  8458. "style": {
  8459. "cssText": "border:0;width:100%;height:100%"
  8460. },
  8461. "src": "https://beta.iwb.cocorobo.cn/"
  8462. })
  8463. _box.appendChild(_iframe);
  8464. _box.appendChild(_jie);
  8465. _formdiv = new U.UF.UI.form(
  8466. "电子白板",
  8467. _box, {
  8468. "id": "whiteboard" + cid + stage + task + tool,
  8469. "style": {
  8470. "width": "90%",
  8471. "height": "90%",
  8472. "overflow": 'hidden'
  8473. },
  8474. "onresize": function () { }
  8475. }, {
  8476. closecallback: function () { }
  8477. }, {
  8478. "style": {
  8479. "height": "36px"
  8480. }
  8481. }).form; //创建窗体
  8482. _taskbar = {
  8483. "id": str + _formdiv.id,
  8484. "style": {
  8485. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8486. },
  8487. "name": "电子白板",
  8488. "forms": _formdiv,
  8489. "click": function () {
  8490. U.MD.D.I.openApplication(str, obj, info);
  8491. }
  8492. }
  8493. break;
  8494. case "mind":
  8495. aTool = 3;
  8496. _iframe = $$("iframe", {
  8497. "frameborder": "no",
  8498. "border": "0",
  8499. "scrolling ": "no",
  8500. "style": {
  8501. "cssText": "border:0;width:100%;height:100%"
  8502. },
  8503. "src": "/kityminder-editor/dist/index.html"
  8504. })
  8505. _box.appendChild(_iframe);
  8506. _box.appendChild(_jie);
  8507. _formdiv = new U.UF.UI.form(
  8508. "思维导图",
  8509. _box, { //"/jsmind/example/demo.html"
  8510. "id": "mind" + cid + stage + task + tool,
  8511. "style": {
  8512. "width": "90%",
  8513. "height": "90%",
  8514. "overflow": 'hidden'
  8515. },
  8516. "onresize": function () { }
  8517. }, {
  8518. closecallback: function () { }
  8519. }, {
  8520. "style": {
  8521. "height": "36px"
  8522. }
  8523. }).form; //创建窗体
  8524. _taskbar = {
  8525. "id": str + _formdiv.id,
  8526. "style": {
  8527. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8528. },
  8529. "name": "思维导图",
  8530. "forms": _formdiv,
  8531. "click": function () {
  8532. U.MD.D.I.openApplication(str, obj, info);
  8533. }
  8534. }
  8535. break;
  8536. case "MindMap":
  8537. aTool = 3;
  8538. _iframe = $$("iframe", {
  8539. "frameborder": "no",
  8540. "border": "0",
  8541. "scrolling ": "no",
  8542. "style": {
  8543. "cssText": "border:0;width:100%;height:100%"
  8544. },
  8545. "src": "//cloud.cocorobo.cn/mind/"
  8546. })
  8547. _box.appendChild(_iframe);
  8548. _box.appendChild(_jie);
  8549. _formdiv = new U.UF.UI.form(
  8550. "思维导图",
  8551. _box, { //"/jsmind/example/demo.html"
  8552. "id": "mind" + cid + stage + task + tool,
  8553. "style": {
  8554. "width": "90%",
  8555. "height": "90%",
  8556. "overflow": 'hidden'
  8557. },
  8558. "onresize": function () { }
  8559. }, {
  8560. closecallback: function () { }
  8561. }, {
  8562. "style": {
  8563. "height": "36px"
  8564. }
  8565. }).form; //创建窗体
  8566. _taskbar = {
  8567. "id": str + _formdiv.id,
  8568. "style": {
  8569. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8570. },
  8571. "name": "思维导图",
  8572. "forms": _formdiv,
  8573. "click": function () {
  8574. U.MD.D.I.openApplication(str, obj, info);
  8575. }
  8576. }
  8577. break;
  8578. case "doc":
  8579. aTool = 6;
  8580. _iframe = $$("iframe", {
  8581. "frameborder": "no",
  8582. "border": "0",
  8583. "scrolling ": "no",
  8584. "style": {
  8585. "cssText": "border:0;width:100%;height:100%"
  8586. },
  8587. "src": "/Office/Word/WordEditArea.htm"
  8588. })
  8589. _box.appendChild(_iframe);
  8590. _box.appendChild(_jie);
  8591. _formdiv = new U.UF.UI.form(
  8592. "协同文档",
  8593. _box, {
  8594. "id": "doc" + cid + stage + task + tool,
  8595. "style": {
  8596. "width": "90%",
  8597. "height": "90%",
  8598. "overflow": 'hidden'
  8599. },
  8600. "onresize": function () { }
  8601. }, {
  8602. closecallback: function () { }
  8603. }, {
  8604. "style": {
  8605. "height": "36px"
  8606. }
  8607. }).form; //创建窗体
  8608. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8609. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8610. })
  8611. _taskbar = {
  8612. "id": str + _formdiv.id,
  8613. "style": {
  8614. "backgroundImage": "url(/img/icon/doc.png)"
  8615. },
  8616. "name": "协同文档",
  8617. "forms": _formdiv,
  8618. "click": function () {
  8619. U.MD.D.I.openApplication(str, obj, info);
  8620. }
  8621. }
  8622. break;
  8623. case "mindNetwork": //好友打开
  8624. aTool = 7;
  8625. _iframe = $$("iframe", {
  8626. "webkitallowfullscreen": "",
  8627. "mozallowfullscreen": "",
  8628. "allowfullscreen": "",
  8629. "frameborder": "no",
  8630. "border": "0",
  8631. "scrolling ": "no",
  8632. "style": {
  8633. "cssText": "border:0; width:100%; height:100%;"
  8634. },
  8635. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8636. })
  8637. _box.appendChild(_iframe);
  8638. _box.appendChild(_jie);
  8639. _formdiv = new U.UF.UI.form(
  8640. "思维网格",
  8641. _box, {
  8642. "id": "mindNetwork" + cid + stage + task + tool,
  8643. "style": {
  8644. "width": "90%",
  8645. "height": "90%",
  8646. "overflow": 'hidden'
  8647. },
  8648. "onresize": function () { }
  8649. }, {
  8650. closecallback: function () { }
  8651. }, {
  8652. "style": {
  8653. "height": "36px"
  8654. }
  8655. }).form; //创建窗体
  8656. _taskbar = {
  8657. "id": str + _formdiv.id,
  8658. "style": {
  8659. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8660. },
  8661. "name": "思维网格",
  8662. "forms": _formdiv,
  8663. "click": function () {
  8664. U.MD.D.I.openApplication(str, obj, info);
  8665. }
  8666. }
  8667. break;
  8668. case "courseDesign":
  8669. _iframe = $$("iframe", {
  8670. "webkitallowfullscreen": "",
  8671. "mozallowfullscreen": "",
  8672. "allowfullscreen": "",
  8673. "frameborder": "no",
  8674. "border": "0",
  8675. "scrolling ": "no",
  8676. "style": {
  8677. "cssText": "border:0; width:100%; height:100%;"
  8678. },
  8679. "src": "/course-design-vue"
  8680. })
  8681. _box.appendChild(_iframe);
  8682. _box.appendChild(_jie);
  8683. _formdiv = new U.UF.UI.form(
  8684. "项目设计",
  8685. _box, {
  8686. "id": "courseDesign" + cid + stage + task + tool,
  8687. "style": {
  8688. "width": "90%",
  8689. "height": "90%",
  8690. "overflow": 'hidden'
  8691. },
  8692. "onresize": function () { }
  8693. }, {
  8694. closecallback: function () { }
  8695. }, {
  8696. "style": {
  8697. "height": "36px"
  8698. }
  8699. }).form; //创建窗体
  8700. _taskbar = {
  8701. "id": str + _formdiv.id,
  8702. "style": {
  8703. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8704. },
  8705. "name": "项目设计",
  8706. "forms": _formdiv,
  8707. "click": function () {
  8708. U.MD.D.I.openApplication(str, obj, info);
  8709. }
  8710. }
  8711. break;
  8712. }
  8713. const script1 = document.createElement("script");
  8714. script1.type = "text/javascript";
  8715. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8716. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8717. const script2 = document.createElement("script");
  8718. script2.type = "text/javascript";
  8719. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8720. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8721. const script3 = document.createElement("script");
  8722. script3.type = "text/javascript";
  8723. script3.charset = "UTF-8";
  8724. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8725. const script4 = document.createElement("script");
  8726. script4.type = "text/javascript";
  8727. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8728. script4.src = window.origin + "/js/Common/jietu2E.js";
  8729. if (_iframe) {
  8730. if (str == 'doc') {
  8731. _iframe = _formdiv.querySelector('iframe')
  8732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8733. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8734. _iframe.contentWindow.document.body.appendChild(script1);
  8735. _iframe.contentWindow.document.body.appendChild(script2);
  8736. // _iframe.contentWindow.document.body.appendChild(script3);
  8737. _iframe.contentWindow.document.body.appendChild(script4);
  8738. })
  8739. if (onloadListener) {
  8740. _iframe.contentDocument.location.reload()
  8741. } else {
  8742. _iframe.contentDocument.location.reload()
  8743. }
  8744. } else if (str == 'courseDesign') {
  8745. U.UF.DL.iframeLoad(_iframe, function () {
  8746. // _iframe.contentWindow.U.MD.O.W.load();
  8747. // _iframe.contentWindow.document.body.appendChild(script1);
  8748. _iframe.contentWindow.document.body.appendChild(script2);
  8749. _iframe.contentWindow.document.body.appendChild(script4);
  8750. })
  8751. } else if (str == 'mind') {
  8752. _iframe = _formdiv.querySelector('iframe')
  8753. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8754. //
  8755. _iframe.contentWindow.document.body.appendChild(script1);
  8756. _iframe.contentWindow.document.body.appendChild(script2);
  8757. _iframe.contentWindow.document.body.appendChild(script4);
  8758. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8759. })
  8760. if (onloadListener) {
  8761. _iframe.contentDocument.location.reload()
  8762. } else {
  8763. _iframe.contentDocument.location.reload()
  8764. }
  8765. } else if (str == 'whiteboard') {
  8766. _iframe = _formdiv.querySelector('iframe')
  8767. let onloadListener = _iframe.onload = () => {
  8768. _iframe.contentWindow.document.body.appendChild(script1);
  8769. _iframe.contentWindow.document.body.appendChild(script2);
  8770. _iframe.contentWindow.document.body.appendChild(script4);
  8771. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8772. };
  8773. // if (onloadListener) {
  8774. // try {
  8775. // _iframe.src += "?cocorobo="+new Date().getTime()
  8776. // _iframe.contentWindow.document.location.reload()
  8777. // } catch (error) {
  8778. // }
  8779. // } else {
  8780. // _iframe.contentDocument.location.reload()
  8781. // }
  8782. } else {
  8783. _iframe.onload = () => {
  8784. _iframe.contentWindow.document.body.appendChild(script1);
  8785. _iframe.contentWindow.document.body.appendChild(script2);
  8786. // _iframe.contentWindow.document.body.appendChild(script3);
  8787. _iframe.contentWindow.document.body.appendChild(script4);
  8788. };
  8789. }
  8790. _jie.onclick = async () => {
  8791. let text = ''
  8792. if (aTool == 1) {
  8793. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8794. } else if (aTool == 6) {
  8795. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8796. } else if (aTool == 3) {
  8797. text = await U.MD.D.I.getEditorContent(_iframe);
  8798. }
  8799. _loading.style.display = 'flex'
  8800. console.log(_loading);
  8801. var _ajs = _iframe.contentWindow.document.createElement("script");
  8802. _ajs.type = "text/javascript";
  8803. _ajs.innerHTML =
  8804. // 'console.log(' + _loading + ');\n' +
  8805. 'var _js = document.createElement("script");\n' +
  8806. '_js.type="text/javascript";\n' +
  8807. '_js.charset="UTF-8";\n' +
  8808. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8809. "_js.onload = function(){\n" +
  8810. ' var a = document.getElementsByTagName("img")\n' +
  8811. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8812. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8813. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8814. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8815. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8816. "beforeUpload_shishi(file," +
  8817. "'" +
  8818. _userid +
  8819. "'" +
  8820. ", " +
  8821. "'" +
  8822. _cid +
  8823. "'" +
  8824. ", " +
  8825. "'" +
  8826. _stage +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. _task +
  8831. "'" +
  8832. ", " +
  8833. "'" +
  8834. _tool +
  8835. "'" +
  8836. ", " +
  8837. "'" +
  8838. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8839. "'" +
  8840. ", " +
  8841. "'" +
  8842. aTool +
  8843. "'" +
  8844. ", " +
  8845. "`" +
  8846. text +
  8847. "`" +
  8848. ")\n" +
  8849. " });\n" +
  8850. "}\n" +
  8851. "document.head.appendChild(_js);\n";
  8852. _iframe.contentWindow.document.head.appendChild(_ajs);
  8853. }
  8854. }
  8855. //U.MD.D.I.openClick(str);
  8856. //如果有任务栏信息
  8857. // if (_taskbar) {
  8858. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8859. // }
  8860. }
  8861. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8862. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8863. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8864. _userid = student.userid, //登录用户id
  8865. _username = student.student //用户名字
  8866. let _iframe;
  8867. let _cid = cid,
  8868. _stage = stage,
  8869. _task = task,
  8870. _tool = tool;
  8871. var _jie = $$("div", {
  8872. "style": {
  8873. "position": "absolute",
  8874. "bottom": "50px",
  8875. "right": "50px",
  8876. "zIndex": "9999",
  8877. "backgroundColor": "#2268bc",
  8878. "color": "#fff",
  8879. "padding": "12px 20px",
  8880. "cursor": "pointer",
  8881. "borderRadius": "4px",
  8882. },
  8883. "innerHTML": "提交作业"
  8884. })
  8885. let aTool = ''
  8886. let _loading = document.createElement('div')
  8887. _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;"
  8888. // _loading.id = "";
  8889. let _lchild = document.createElement('div')
  8890. let _limg = document.createElement('img')
  8891. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8892. _limg.style = "width: 26px;margin-right: 10px;"
  8893. _lchild.appendChild(_limg)
  8894. let _lspan = document.createElement('span')
  8895. _lspan.innerHTML = "上传中..."
  8896. _lchild.appendChild(_lspan)
  8897. _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%);"
  8898. _loading.appendChild(_lchild)
  8899. var _box = $$('div', {
  8900. "style": {
  8901. "position": "relative",
  8902. "width": "100%",
  8903. "height": "100%",
  8904. },
  8905. })
  8906. _box.appendChild(_loading)
  8907. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8908. switch (str) {
  8909. case "whiteboard":
  8910. aTool = 1;
  8911. _iframe = $$("iframe", {
  8912. "frameborder": "no",
  8913. "border": "0",
  8914. "scrolling ": "no",
  8915. "style": {
  8916. "cssText": "border:0;width:100%;height:100%"
  8917. },
  8918. "src": "https://beta.iwb.cocorobo.cn/"
  8919. })
  8920. _box.appendChild(_iframe);
  8921. _box.appendChild(_jie);
  8922. _formdiv = new U.UF.UI.form(
  8923. "电子白板-" + _username,
  8924. _box, {
  8925. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8926. "style": {
  8927. "width": "90%",
  8928. "height": "90%",
  8929. "overflow": 'hidden'
  8930. },
  8931. "onresize": function () { }
  8932. }, {
  8933. closecallback: function () { }
  8934. }, {
  8935. "style": {
  8936. "height": "36px"
  8937. }
  8938. }).form; //创建窗体
  8939. _taskbar = {
  8940. "id": str + _formdiv.id,
  8941. "style": {
  8942. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8943. },
  8944. "name": "电子白板",
  8945. "forms": _formdiv,
  8946. "click": function () {
  8947. U.MD.D.I.openApplication(str, obj, info);
  8948. }
  8949. }
  8950. break;
  8951. case "mind":
  8952. aTool = 3;
  8953. _iframe = $$("iframe", {
  8954. "frameborder": "no",
  8955. "border": "0",
  8956. "scrolling ": "no",
  8957. "style": {
  8958. "cssText": "border:0;width:100%;height:100%"
  8959. },
  8960. "src": "/kityminder-editor/dist/index.html"
  8961. })
  8962. _box.appendChild(_iframe);
  8963. _box.appendChild(_jie);
  8964. _formdiv = new U.UF.UI.form(
  8965. "思维导图-" + _username,
  8966. _box, { //"/jsmind/example/demo.html"
  8967. "id": "mind" + cid + stage + task + tool + _userid,
  8968. "style": {
  8969. "width": "90%",
  8970. "height": "90%",
  8971. "overflow": 'hidden'
  8972. },
  8973. "onresize": function () { }
  8974. }, {
  8975. closecallback: function () { }
  8976. }, {
  8977. "style": {
  8978. "height": "36px"
  8979. }
  8980. }).form; //创建窗体
  8981. _taskbar = {
  8982. "id": str + _formdiv.id,
  8983. "style": {
  8984. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8985. },
  8986. "name": "思维导图",
  8987. "forms": _formdiv,
  8988. "click": function () {
  8989. U.MD.D.I.openApplication(str, obj, info);
  8990. }
  8991. }
  8992. break;
  8993. case "MindMap":
  8994. aTool = 3;
  8995. _iframe = $$("iframe", {
  8996. "frameborder": "no",
  8997. "border": "0",
  8998. "scrolling ": "no",
  8999. "style": {
  9000. "cssText": "border:0;width:100%;height:100%"
  9001. },
  9002. "src": "//cloud.cocorobo.cn/mind/"
  9003. })
  9004. _box.appendChild(_iframe);
  9005. _box.appendChild(_jie);
  9006. _formdiv = new U.UF.UI.form(
  9007. "思维导图-" + _username,
  9008. _box, { //"/jsmind/example/demo.html"
  9009. "id": "mind" + cid + stage + task + tool + _userid,
  9010. "style": {
  9011. "width": "90%",
  9012. "height": "90%",
  9013. "overflow": 'hidden'
  9014. },
  9015. "onresize": function () { }
  9016. }, {
  9017. closecallback: function () { }
  9018. }, {
  9019. "style": {
  9020. "height": "36px"
  9021. }
  9022. }).form; //创建窗体
  9023. _taskbar = {
  9024. "id": str + _formdiv.id,
  9025. "style": {
  9026. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9027. },
  9028. "name": "思维导图",
  9029. "forms": _formdiv,
  9030. "click": function () {
  9031. U.MD.D.I.openApplication(str, obj, info);
  9032. }
  9033. }
  9034. break;
  9035. case "doc":
  9036. aTool = 6;
  9037. _iframe = $$("iframe", {
  9038. "frameborder": "no",
  9039. "border": "0",
  9040. "scrolling ": "no",
  9041. "style": {
  9042. "cssText": "border:0;width:100%;height:100%"
  9043. },
  9044. "src": "/Office/Word/WordEditArea.htm"
  9045. })
  9046. _box.appendChild(_iframe);
  9047. _box.appendChild(_jie);
  9048. _formdiv = new U.UF.UI.form(
  9049. "协同文档-" + _username,
  9050. _box, {
  9051. "id": "doc" + cid + stage + task + tool + _userid,
  9052. "style": {
  9053. "width": "90%",
  9054. "height": "90%",
  9055. "overflow": 'hidden'
  9056. },
  9057. "onresize": function () { }
  9058. }, {
  9059. closecallback: function () { }
  9060. }, {
  9061. "style": {
  9062. "height": "36px"
  9063. }
  9064. }).form; //创建窗体
  9065. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9066. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9067. })
  9068. _taskbar = {
  9069. "id": str + _formdiv.id,
  9070. "style": {
  9071. "backgroundImage": "url(/img/icon/doc.png)"
  9072. },
  9073. "name": "协同文档",
  9074. "forms": _formdiv,
  9075. "click": function () {
  9076. U.MD.D.I.openApplication(str, obj, info);
  9077. }
  9078. }
  9079. break;
  9080. case "mindNetwork": //好友打开
  9081. aTool = 7;
  9082. _iframe = $$("iframe", {
  9083. "webkitallowfullscreen": "",
  9084. "mozallowfullscreen": "",
  9085. "allowfullscreen": "",
  9086. "frameborder": "no",
  9087. "border": "0",
  9088. "scrolling ": "no",
  9089. "style": {
  9090. "cssText": "border:0; width:100%; height:100%;"
  9091. },
  9092. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9093. })
  9094. _box.appendChild(_iframe);
  9095. _box.appendChild(_jie);
  9096. _formdiv = new U.UF.UI.form(
  9097. "思维网格-" + _username,
  9098. _box, {
  9099. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9100. "style": {
  9101. "width": "90%",
  9102. "height": "90%",
  9103. "overflow": 'hidden'
  9104. },
  9105. "onresize": function () { }
  9106. }, {
  9107. closecallback: function () { }
  9108. }, {
  9109. "style": {
  9110. "height": "36px"
  9111. }
  9112. }).form; //创建窗体
  9113. _taskbar = {
  9114. "id": str + _formdiv.id,
  9115. "style": {
  9116. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9117. },
  9118. "name": "思维网格",
  9119. "forms": _formdiv,
  9120. "click": function () {
  9121. U.MD.D.I.openApplication(str, obj, info);
  9122. }
  9123. }
  9124. break;
  9125. case "courseDesign":
  9126. _iframe = $$("iframe", {
  9127. "webkitallowfullscreen": "",
  9128. "mozallowfullscreen": "",
  9129. "allowfullscreen": "",
  9130. "frameborder": "no",
  9131. "border": "0",
  9132. "scrolling ": "no",
  9133. "style": {
  9134. "cssText": "border:0; width:100%; height:100%;"
  9135. },
  9136. "src": "/course-design-vue"
  9137. })
  9138. _box.appendChild(_iframe);
  9139. _box.appendChild(_jie);
  9140. _formdiv = new U.UF.UI.form(
  9141. "项目设计-" + _username,
  9142. _box, {
  9143. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9144. "style": {
  9145. "width": "90%",
  9146. "height": "90%",
  9147. "overflow": 'hidden'
  9148. },
  9149. "onresize": function () { }
  9150. }, {
  9151. closecallback: function () { }
  9152. }, {
  9153. "style": {
  9154. "height": "36px"
  9155. }
  9156. }).form; //创建窗体
  9157. _taskbar = {
  9158. "id": str + _formdiv.id,
  9159. "style": {
  9160. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9161. },
  9162. "name": "项目设计",
  9163. "forms": _formdiv,
  9164. "click": function () {
  9165. U.MD.D.I.openApplication(str, obj, info);
  9166. }
  9167. }
  9168. break;
  9169. }
  9170. const script1 = document.createElement("script");
  9171. script1.type = "text/javascript";
  9172. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9173. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9174. const script2 = document.createElement("script");
  9175. script2.type = "text/javascript";
  9176. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9177. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9178. const script3 = document.createElement("script");
  9179. script3.type = "text/javascript";
  9180. script3.charset = "UTF-8";
  9181. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9182. const script4 = document.createElement("script");
  9183. script4.type = "text/javascript";
  9184. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9185. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9186. if (_iframe) {
  9187. if (str == 'doc') {
  9188. _iframe = _formdiv.querySelector('iframe')
  9189. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9190. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9191. _iframe.contentWindow.document.body.appendChild(script1);
  9192. _iframe.contentWindow.document.body.appendChild(script2);
  9193. // _iframe.contentWindow.document.body.appendChild(script3);
  9194. _iframe.contentWindow.document.body.appendChild(script4);
  9195. })
  9196. if (onloadListener) {
  9197. _iframe.contentDocument.location.reload()
  9198. } else {
  9199. _iframe.contentDocument.location.reload()
  9200. }
  9201. } else if (str == 'courseDesign') {
  9202. U.UF.DL.iframeLoad(_iframe, function () {
  9203. // _iframe.contentWindow.U.MD.O.W.load();
  9204. // _iframe.contentWindow.document.body.appendChild(script1);
  9205. _iframe.contentWindow.document.body.appendChild(script2);
  9206. _iframe.contentWindow.document.body.appendChild(script4);
  9207. })
  9208. } else if (str == 'mind') {
  9209. _iframe = _formdiv.querySelector('iframe')
  9210. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9211. //
  9212. _iframe.contentWindow.document.body.appendChild(script1);
  9213. _iframe.contentWindow.document.body.appendChild(script2);
  9214. _iframe.contentWindow.document.body.appendChild(script4);
  9215. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9216. })
  9217. if (onloadListener) {
  9218. _iframe.contentDocument.location.reload()
  9219. } else {
  9220. _iframe.contentDocument.location.reload()
  9221. }
  9222. } else if (str == 'whiteboard') {
  9223. _iframe = _formdiv.querySelector('iframe')
  9224. let onloadListener = _iframe.onload = () => {
  9225. _iframe.contentWindow.document.body.appendChild(script1);
  9226. _iframe.contentWindow.document.body.appendChild(script2);
  9227. _iframe.contentWindow.document.body.appendChild(script4);
  9228. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9229. };
  9230. // if (onloadListener) {
  9231. // try {
  9232. // _iframe.src += "?cocorobo="+new Date().getTime()
  9233. // _iframe.contentWindow.document.location.reload()
  9234. // } catch (error) {
  9235. // }
  9236. // } else {
  9237. // _iframe.contentDocument.location.reload()
  9238. // }
  9239. } else {
  9240. _iframe.onload = () => {
  9241. _iframe.contentWindow.document.body.appendChild(script1);
  9242. _iframe.contentWindow.document.body.appendChild(script2);
  9243. // _iframe.contentWindow.document.body.appendChild(script3);
  9244. _iframe.contentWindow.document.body.appendChild(script4);
  9245. };
  9246. }
  9247. _jie.onclick = async () => {
  9248. let text = ''
  9249. if (aTool == 1) {
  9250. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9251. } else if (aTool == 6) {
  9252. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9253. } else if (aTool == 3) {
  9254. text = await U.MD.D.I.getEditorContent(_iframe);
  9255. }
  9256. _loading.style.display = 'flex'
  9257. console.log(_loading);
  9258. var _ajs = _iframe.contentWindow.document.createElement("script");
  9259. _ajs.type = "text/javascript";
  9260. _ajs.innerHTML =
  9261. // 'console.log(' + _loading + ');\n' +
  9262. 'var _js = document.createElement("script");\n' +
  9263. '_js.type="text/javascript";\n' +
  9264. '_js.charset="UTF-8";\n' +
  9265. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9266. "_js.onload = function(){\n" +
  9267. ' var a = document.getElementsByTagName("img")\n' +
  9268. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9269. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9270. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9271. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9272. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9273. "beforeUpload_shishi(file," +
  9274. "'" +
  9275. _userid +
  9276. "'" +
  9277. ", " +
  9278. "'" +
  9279. _cid +
  9280. "'" +
  9281. ", " +
  9282. "'" +
  9283. _stage +
  9284. "'" +
  9285. ", " +
  9286. "'" +
  9287. _task +
  9288. "'" +
  9289. ", " +
  9290. "'" +
  9291. _tool +
  9292. "'" +
  9293. ", " +
  9294. "'" +
  9295. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9296. "'" +
  9297. ", " +
  9298. "'" +
  9299. aTool +
  9300. "'" +
  9301. ", " +
  9302. "`" +
  9303. text +
  9304. "`" +
  9305. ")\n" +
  9306. " });\n" +
  9307. "}\n" +
  9308. "document.head.appendChild(_js);\n";
  9309. _iframe.contentWindow.document.head.appendChild(_ajs);
  9310. }
  9311. }
  9312. }
  9313. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9314. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9315. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9316. _userid = student.userid, //登录用户id
  9317. _username = student.student //用户名字
  9318. let _iframe;
  9319. let _cid = cid,
  9320. _stage = stage,
  9321. _task = task,
  9322. _tool = tool;
  9323. var _jie = $$("div", {
  9324. "style": {
  9325. "position": "absolute",
  9326. "bottom": "50px",
  9327. "right": "50px",
  9328. "zIndex": "9999",
  9329. "backgroundColor": "#2268bc",
  9330. "color": "#fff",
  9331. "padding": "12px 20px",
  9332. "cursor": "pointer",
  9333. "borderRadius": "4px",
  9334. },
  9335. "innerHTML": "提交作业"
  9336. })
  9337. let aTool = ''
  9338. let _loading = document.createElement('div')
  9339. _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;"
  9340. // _loading.id = "";
  9341. let _lchild = document.createElement('div')
  9342. let _limg = document.createElement('img')
  9343. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9344. _limg.style = "width: 26px;margin-right: 10px;"
  9345. _lchild.appendChild(_limg)
  9346. let _lspan = document.createElement('span')
  9347. _lspan.innerHTML = "上传中..."
  9348. _lchild.appendChild(_lspan)
  9349. _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%);"
  9350. _loading.appendChild(_lchild)
  9351. var _box = $$('div', {
  9352. "style": {
  9353. "position": "relative",
  9354. "width": "100%",
  9355. "height": "100%",
  9356. },
  9357. })
  9358. _box.appendChild(_loading)
  9359. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9360. switch (str) {
  9361. case "whiteboard":
  9362. aTool = 1;
  9363. _iframe = $$("iframe", {
  9364. "frameborder": "no",
  9365. "border": "0",
  9366. "scrolling ": "no",
  9367. "style": {
  9368. "cssText": "border:0;width:100%;height:100%"
  9369. },
  9370. "src": "https://beta.iwb.cocorobo.cn/"
  9371. })
  9372. _box.appendChild(_iframe);
  9373. _box.appendChild(_jie);
  9374. _formdiv = new U.UF.UI.form(
  9375. "电子白板-" + _username,
  9376. _box, {
  9377. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9378. "style": {
  9379. "width": "90%",
  9380. "height": "90%",
  9381. "overflow": 'hidden'
  9382. },
  9383. "onresize": function () { }
  9384. }, {
  9385. closecallback: function () { }
  9386. }, {
  9387. "style": {
  9388. "height": "36px"
  9389. }
  9390. }).form; //创建窗体
  9391. _taskbar = {
  9392. "id": str + _formdiv.id,
  9393. "style": {
  9394. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9395. },
  9396. "name": "电子白板",
  9397. "forms": _formdiv,
  9398. "click": function () {
  9399. U.MD.D.I.openApplication(str, obj, info);
  9400. }
  9401. }
  9402. break;
  9403. case "mind":
  9404. aTool = 3;
  9405. _iframe = $$("iframe", {
  9406. "frameborder": "no",
  9407. "border": "0",
  9408. "scrolling ": "no",
  9409. "style": {
  9410. "cssText": "border:0;width:100%;height:100%"
  9411. },
  9412. "src": "/kityminder-editor/dist/index.html"
  9413. })
  9414. _box.appendChild(_iframe);
  9415. _box.appendChild(_jie);
  9416. _formdiv = new U.UF.UI.form(
  9417. "思维导图-" + _username,
  9418. _box, { //"/jsmind/example/demo.html"
  9419. "id": "mind" + cid + stage + task + tool + _userid,
  9420. "style": {
  9421. "width": "90%",
  9422. "height": "90%",
  9423. "overflow": 'hidden'
  9424. },
  9425. "onresize": function () { }
  9426. }, {
  9427. closecallback: function () { }
  9428. }, {
  9429. "style": {
  9430. "height": "36px"
  9431. }
  9432. }).form; //创建窗体
  9433. _taskbar = {
  9434. "id": str + _formdiv.id,
  9435. "style": {
  9436. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9437. },
  9438. "name": "思维导图",
  9439. "forms": _formdiv,
  9440. "click": function () {
  9441. U.MD.D.I.openApplication(str, obj, info);
  9442. }
  9443. }
  9444. break;
  9445. case "MindMap":
  9446. aTool = 3;
  9447. _iframe = $$("iframe", {
  9448. "frameborder": "no",
  9449. "border": "0",
  9450. "scrolling ": "no",
  9451. "style": {
  9452. "cssText": "border:0;width:100%;height:100%"
  9453. },
  9454. "src": "//cloud.cocorobo.cn/mind/"
  9455. })
  9456. _box.appendChild(_iframe);
  9457. _box.appendChild(_jie);
  9458. _formdiv = new U.UF.UI.form(
  9459. "思维导图-" + _username,
  9460. _box, { //"/jsmind/example/demo.html"
  9461. "id": "mind" + cid + stage + task + tool + _userid,
  9462. "style": {
  9463. "width": "90%",
  9464. "height": "90%",
  9465. "overflow": 'hidden'
  9466. },
  9467. "onresize": function () { }
  9468. }, {
  9469. closecallback: function () { }
  9470. }, {
  9471. "style": {
  9472. "height": "36px"
  9473. }
  9474. }).form; //创建窗体
  9475. _taskbar = {
  9476. "id": str + _formdiv.id,
  9477. "style": {
  9478. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9479. },
  9480. "name": "思维导图",
  9481. "forms": _formdiv,
  9482. "click": function () {
  9483. U.MD.D.I.openApplication(str, obj, info);
  9484. }
  9485. }
  9486. break;
  9487. case "doc":
  9488. aTool = 6;
  9489. _iframe = $$("iframe", {
  9490. "frameborder": "no",
  9491. "border": "0",
  9492. "scrolling ": "no",
  9493. "style": {
  9494. "cssText": "border:0;width:100%;height:100%"
  9495. },
  9496. "src": "/Office/Word/WordEditArea.htm"
  9497. })
  9498. _box.appendChild(_iframe);
  9499. _box.appendChild(_jie);
  9500. _formdiv = new U.UF.UI.form(
  9501. "协同文档-" + _username,
  9502. _box, {
  9503. "id": "doc" + cid + stage + task + tool + _userid,
  9504. "style": {
  9505. "width": "90%",
  9506. "height": "90%",
  9507. "overflow": 'hidden'
  9508. },
  9509. "onresize": function () { }
  9510. }, {
  9511. closecallback: function () { }
  9512. }, {
  9513. "style": {
  9514. "height": "36px"
  9515. }
  9516. }).form; //创建窗体
  9517. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9518. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9519. })
  9520. _taskbar = {
  9521. "id": str + _formdiv.id,
  9522. "style": {
  9523. "backgroundImage": "url(/img/icon/doc.png)"
  9524. },
  9525. "name": "协同文档",
  9526. "forms": _formdiv,
  9527. "click": function () {
  9528. U.MD.D.I.openApplication(str, obj, info);
  9529. }
  9530. }
  9531. break;
  9532. case "mindNetwork": //好友打开
  9533. aTool = 7;
  9534. _iframe = $$("iframe", {
  9535. "webkitallowfullscreen": "",
  9536. "mozallowfullscreen": "",
  9537. "allowfullscreen": "",
  9538. "frameborder": "no",
  9539. "border": "0",
  9540. "scrolling ": "no",
  9541. "style": {
  9542. "cssText": "border:0; width:100%; height:100%;"
  9543. },
  9544. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9545. })
  9546. _box.appendChild(_iframe);
  9547. _box.appendChild(_jie);
  9548. _formdiv = new U.UF.UI.form(
  9549. "思维网格-" + _username,
  9550. _box, {
  9551. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9552. "style": {
  9553. "width": "90%",
  9554. "height": "90%",
  9555. "overflow": 'hidden'
  9556. },
  9557. "onresize": function () { }
  9558. }, {
  9559. closecallback: function () { }
  9560. }, {
  9561. "style": {
  9562. "height": "36px"
  9563. }
  9564. }).form; //创建窗体
  9565. _taskbar = {
  9566. "id": str + _formdiv.id,
  9567. "style": {
  9568. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9569. },
  9570. "name": "思维网格",
  9571. "forms": _formdiv,
  9572. "click": function () {
  9573. U.MD.D.I.openApplication(str, obj, info);
  9574. }
  9575. }
  9576. break;
  9577. case "courseDesign":
  9578. _iframe = $$("iframe", {
  9579. "webkitallowfullscreen": "",
  9580. "mozallowfullscreen": "",
  9581. "allowfullscreen": "",
  9582. "frameborder": "no",
  9583. "border": "0",
  9584. "scrolling ": "no",
  9585. "style": {
  9586. "cssText": "border:0; width:100%; height:100%;"
  9587. },
  9588. "src": "/course-design-vue"
  9589. })
  9590. _box.appendChild(_iframe);
  9591. _box.appendChild(_jie);
  9592. _formdiv = new U.UF.UI.form(
  9593. "项目设计-" + _username,
  9594. _box, {
  9595. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9596. "style": {
  9597. "width": "90%",
  9598. "height": "90%",
  9599. "overflow": 'hidden'
  9600. },
  9601. "onresize": function () { }
  9602. }, {
  9603. closecallback: function () { }
  9604. }, {
  9605. "style": {
  9606. "height": "36px"
  9607. }
  9608. }).form; //创建窗体
  9609. _taskbar = {
  9610. "id": str + _formdiv.id,
  9611. "style": {
  9612. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9613. },
  9614. "name": "项目设计",
  9615. "forms": _formdiv,
  9616. "click": function () {
  9617. U.MD.D.I.openApplication(str, obj, info);
  9618. }
  9619. }
  9620. break;
  9621. }
  9622. const script1 = document.createElement("script");
  9623. script1.type = "text/javascript";
  9624. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9625. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9626. const script2 = document.createElement("script");
  9627. script2.type = "text/javascript";
  9628. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9629. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9630. const script3 = document.createElement("script");
  9631. script3.type = "text/javascript";
  9632. script3.charset = "UTF-8";
  9633. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9634. const script4 = document.createElement("script");
  9635. script4.type = "text/javascript";
  9636. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9637. script4.src = window.origin + "/js/Common/jietu2E.js";
  9638. if (_iframe) {
  9639. if (str == 'doc') {
  9640. _iframe = _formdiv.querySelector('iframe')
  9641. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9642. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9643. _iframe.contentWindow.document.body.appendChild(script1);
  9644. _iframe.contentWindow.document.body.appendChild(script2);
  9645. // _iframe.contentWindow.document.body.appendChild(script3);
  9646. _iframe.contentWindow.document.body.appendChild(script4);
  9647. })
  9648. if (onloadListener) {
  9649. _iframe.contentDocument.location.reload()
  9650. } else {
  9651. _iframe.contentDocument.location.reload()
  9652. }
  9653. } else if (str == 'courseDesign') {
  9654. U.UF.DL.iframeLoad(_iframe, function () {
  9655. // _iframe.contentWindow.U.MD.O.W.load();
  9656. // _iframe.contentWindow.document.body.appendChild(script1);
  9657. _iframe.contentWindow.document.body.appendChild(script2);
  9658. _iframe.contentWindow.document.body.appendChild(script4);
  9659. })
  9660. } else if (str == 'mind') {
  9661. _iframe = _formdiv.querySelector('iframe')
  9662. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9663. //
  9664. _iframe.contentWindow.document.body.appendChild(script1);
  9665. _iframe.contentWindow.document.body.appendChild(script2);
  9666. _iframe.contentWindow.document.body.appendChild(script4);
  9667. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9668. })
  9669. if (onloadListener) {
  9670. _iframe.contentDocument.location.reload()
  9671. } else {
  9672. _iframe.contentDocument.location.reload()
  9673. }
  9674. } else if (str == 'whiteboard') {
  9675. _iframe = _formdiv.querySelector('iframe')
  9676. let onloadListener = _iframe.onload = () => {
  9677. _iframe.contentWindow.document.body.appendChild(script1);
  9678. _iframe.contentWindow.document.body.appendChild(script2);
  9679. _iframe.contentWindow.document.body.appendChild(script4);
  9680. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9681. };
  9682. // if (onloadListener) {
  9683. // try {
  9684. // _iframe.src += "?cocorobo="+new Date().getTime()
  9685. // _iframe.contentWindow.document.location.reload()
  9686. // } catch (error) {
  9687. // }
  9688. // } else {
  9689. // _iframe.contentDocument.location.reload()
  9690. // }
  9691. } else {
  9692. _iframe.onload = () => {
  9693. _iframe.contentWindow.document.body.appendChild(script1);
  9694. _iframe.contentWindow.document.body.appendChild(script2);
  9695. // _iframe.contentWindow.document.body.appendChild(script3);
  9696. _iframe.contentWindow.document.body.appendChild(script4);
  9697. };
  9698. }
  9699. _jie.onclick = async () => {
  9700. let text = ''
  9701. if (aTool == 1) {
  9702. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9703. } else if (aTool == 6) {
  9704. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9705. } else if (aTool == 3) {
  9706. text = await U.MD.D.I.getEditorContent(_iframe);
  9707. }
  9708. _loading.style.display = 'flex'
  9709. console.log(_loading);
  9710. var _ajs = _iframe.contentWindow.document.createElement("script");
  9711. _ajs.type = "text/javascript";
  9712. _ajs.innerHTML =
  9713. // 'console.log(' + _loading + ');\n' +
  9714. 'var _js = document.createElement("script");\n' +
  9715. '_js.type="text/javascript";\n' +
  9716. '_js.charset="UTF-8";\n' +
  9717. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9718. "_js.onload = function(){\n" +
  9719. ' var a = document.getElementsByTagName("img")\n' +
  9720. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9721. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9722. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9723. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9724. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9725. "beforeUpload_shishi(file," +
  9726. "'" +
  9727. _userid +
  9728. "'" +
  9729. ", " +
  9730. "'" +
  9731. _cid +
  9732. "'" +
  9733. ", " +
  9734. "'" +
  9735. _stage +
  9736. "'" +
  9737. ", " +
  9738. "'" +
  9739. _task +
  9740. "'" +
  9741. ", " +
  9742. "'" +
  9743. _tool +
  9744. "'" +
  9745. ", " +
  9746. "'" +
  9747. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9748. "'" +
  9749. ", " +
  9750. "'" +
  9751. aTool +
  9752. "'" +
  9753. ", " +
  9754. "`" +
  9755. text +
  9756. "`" +
  9757. ")\n" +
  9758. " });\n" +
  9759. "}\n" +
  9760. "document.head.appendChild(_js);\n";
  9761. _iframe.contentWindow.document.head.appendChild(_ajs);
  9762. }
  9763. }
  9764. }
  9765. U.MD.D.I.getEditorContent = function (iframe) {
  9766. return new Promise((resolve, reject) => {
  9767. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9768. console.log(content);
  9769. resolve(content)
  9770. });
  9771. });
  9772. }
  9773. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9774. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9775. // if (res.value[0].length > 0) {
  9776. // // resolve(res.value[0][0].text);
  9777. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9778. // $(fileInput).val('');
  9779. // });
  9780. // }
  9781. // }, [], { "type": "GET", "withCredentials": true });
  9782. var xmlhttp;
  9783. var Mac, Sn, DeviceId
  9784. if (window.XMLHttpRequest) {
  9785. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9786. xmlhttp = new XMLHttpRequest();
  9787. } else {
  9788. // IE6, IE5 浏览器执行代码
  9789. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9790. }
  9791. xmlhttp.onreadystatechange = function () {
  9792. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9793. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9794. // resolve(res.value[0][0].text);
  9795. if (type == '2') {
  9796. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9797. } else if (type == '3') {
  9798. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9799. }
  9800. } else {
  9801. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9802. }
  9803. }
  9804. }
  9805. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9806. xmlhttp.send();
  9807. }
  9808. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9809. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9810. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9811. _userinfo = US.userInfo, //登录用户信息
  9812. _userid = US.userInfo.userid //登录用户id
  9813. let _iframe;
  9814. let _cid = cid,
  9815. _stage = stage,
  9816. _task = task,
  9817. _tool = tool;
  9818. var _jie = $$("div", {
  9819. "style": {
  9820. "position": "absolute",
  9821. "bottom": "50px",
  9822. "right": "50px",
  9823. "zIndex": "9999",
  9824. "backgroundColor": "#2268bc",
  9825. "color": "#fff",
  9826. "padding": "12px 20px",
  9827. "cursor": "pointer",
  9828. "borderRadius": "4px",
  9829. },
  9830. "innerHTML": "确认并提交"
  9831. })
  9832. let aTool = ''
  9833. let _loading = document.createElement('div')
  9834. _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;"
  9835. // _loading.id = "";
  9836. let _lchild = document.createElement('div')
  9837. let _limg = document.createElement('img')
  9838. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9839. _limg.style = "width: 26px;margin-right: 10px;"
  9840. _lchild.appendChild(_limg)
  9841. let _lspan = document.createElement('span')
  9842. _lspan.innerHTML = "上传中..."
  9843. _lchild.appendChild(_lspan)
  9844. _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%);"
  9845. _loading.appendChild(_lchild)
  9846. var _box = $$('div', {
  9847. "style": {
  9848. "position": "relative",
  9849. "width": "100%",
  9850. "height": "100%",
  9851. },
  9852. })
  9853. _box.appendChild(_loading)
  9854. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9855. switch (str) {
  9856. case "whiteboard":
  9857. aTool = 1;
  9858. _iframe = $$("iframe", {
  9859. "frameborder": "no",
  9860. "border": "0",
  9861. "scrolling ": "no",
  9862. "style": {
  9863. "cssText": "border:0;width:100%;height:100%"
  9864. },
  9865. "src": "https://beta.iwb.cocorobo.cn/"
  9866. })
  9867. _box.appendChild(_iframe);
  9868. _box.appendChild(_jie);
  9869. _formdiv = new U.UF.UI.form(
  9870. "电子白板",
  9871. _box, {
  9872. "id": "whiteboards" + cid + stage + task + tool,
  9873. "style": {
  9874. "width": "90%",
  9875. "height": "90%",
  9876. "overflow": 'hidden'
  9877. },
  9878. "onresize": function () { }
  9879. }, {
  9880. closecallback: function () { }
  9881. }, {
  9882. "style": {
  9883. "height": "36px"
  9884. }
  9885. }).form; //创建窗体
  9886. _taskbar = {
  9887. "id": str + _formdiv.id,
  9888. "style": {
  9889. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9890. },
  9891. "name": "电子白板",
  9892. "forms": _formdiv,
  9893. "click": function () {
  9894. U.MD.D.I.openApplication(str, obj, info);
  9895. }
  9896. }
  9897. break;
  9898. case "mind":
  9899. aTool = 3;
  9900. _iframe = $$("iframe", {
  9901. "frameborder": "no",
  9902. "border": "0",
  9903. "scrolling ": "no",
  9904. "style": {
  9905. "cssText": "border:0;width:100%;height:100%"
  9906. },
  9907. "src": "/kityminder-editor/dist/index.html"
  9908. });
  9909. _box.appendChild(_iframe);
  9910. _box.appendChild(_jie);
  9911. _formdiv = new U.UF.UI.form(
  9912. "思维导图",
  9913. _box, { //"/jsmind/example/demo.html"
  9914. "id": "minds" + cid + stage + task + tool,
  9915. "style": {
  9916. "width": "90%",
  9917. "height": "90%",
  9918. "overflow": 'hidden'
  9919. },
  9920. "onresize": function () { }
  9921. }, {
  9922. closecallback: function () { }
  9923. }, {
  9924. "style": {
  9925. "height": "36px"
  9926. }
  9927. }).form; //创建窗体
  9928. _taskbar = {
  9929. "id": str + _formdiv.id,
  9930. "style": {
  9931. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9932. },
  9933. "name": "思维导图",
  9934. "forms": _formdiv,
  9935. "click": function () {
  9936. U.MD.D.I.openApplication(str, obj, info);
  9937. }
  9938. }
  9939. break;
  9940. case "doc":
  9941. aTool = 6;
  9942. _iframe = $$("iframe", {
  9943. "frameborder": "no",
  9944. "border": "0",
  9945. "scrolling ": "no",
  9946. "style": {
  9947. "cssText": "border:0;width:100%;height:100%"
  9948. },
  9949. "src": "/Office/Word/WordEditArea.htm"
  9950. })
  9951. _box.appendChild(_iframe);
  9952. _box.appendChild(_jie);
  9953. _formdiv = new U.UF.UI.form(
  9954. "协同文档",
  9955. _box, {
  9956. "id": "docs" + cid + stage + task + tool,
  9957. "style": {
  9958. "width": "90%",
  9959. "height": "90%",
  9960. "overflow": 'hidden'
  9961. },
  9962. "onresize": function () { }
  9963. }, {
  9964. closecallback: function () { }
  9965. }, {
  9966. "style": {
  9967. "height": "36px"
  9968. }
  9969. }).form; //创建窗体
  9970. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9971. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9972. })
  9973. _taskbar = {
  9974. "id": str + _formdiv.id,
  9975. "style": {
  9976. "backgroundImage": "url(/img/icon/doc.png)"
  9977. },
  9978. "name": "协同文档",
  9979. "forms": _formdiv,
  9980. "click": function () {
  9981. U.MD.D.I.openApplication(str, obj, info);
  9982. }
  9983. }
  9984. break;
  9985. }
  9986. const script1 = document.createElement("script");
  9987. script1.type = "text/javascript";
  9988. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9989. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9990. const script2 = document.createElement("script");
  9991. script2.type = "text/javascript";
  9992. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9993. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9994. const script3 = document.createElement("script");
  9995. script3.type = "text/javascript";
  9996. script3.charset = "UTF-8";
  9997. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9998. const script4 = document.createElement("script");
  9999. script4.type = "text/javascript";
  10000. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10001. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10002. if (_iframe) {
  10003. if (str == 'doc') {
  10004. _iframe = _formdiv.querySelector('iframe')
  10005. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10006. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10007. _iframe.contentWindow.document.body.appendChild(script1);
  10008. _iframe.contentWindow.document.body.appendChild(script2);
  10009. // _iframe.contentWindow.document.body.appendChild(script3);
  10010. _iframe.contentWindow.document.body.appendChild(script4);
  10011. })
  10012. if (onloadListener) {
  10013. _iframe.contentDocument.location.reload()
  10014. } else {
  10015. _iframe.contentDocument.location.reload()
  10016. }
  10017. } else if (str == 'mind') {
  10018. _iframe = _formdiv.querySelector('iframe')
  10019. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10020. _iframe.contentWindow.document.body.appendChild(script1);
  10021. _iframe.contentWindow.document.body.appendChild(script2);
  10022. _iframe.contentWindow.document.body.appendChild(script4);
  10023. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10024. })
  10025. if (onloadListener) {
  10026. _iframe.contentDocument.location.reload()
  10027. } else {
  10028. _iframe.contentDocument.location.reload()
  10029. }
  10030. } else {
  10031. _iframe.onload = () => {
  10032. _iframe.contentWindow.document.body.appendChild(script1);
  10033. _iframe.contentWindow.document.body.appendChild(script2);
  10034. // _iframe.contentWindow.document.body.appendChild(script3);
  10035. _iframe.contentWindow.document.body.appendChild(script4);
  10036. };
  10037. }
  10038. _jie.onclick = async () => {
  10039. let text = ''
  10040. if (aTool == 6) {
  10041. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10042. } else if (aTool == 3) {
  10043. text = await U.MD.D.I.getEditorContent(_iframe);
  10044. }
  10045. _loading.style.display = 'flex'
  10046. console.log(_loading);
  10047. var _ajs = _iframe.contentWindow.document.createElement("script");
  10048. _ajs.type = "text/javascript";
  10049. _ajs.innerHTML =
  10050. // 'console.log(' + _loading + ');\n' +
  10051. 'var _js = document.createElement("script");\n' +
  10052. '_js.type="text/javascript";\n' +
  10053. '_js.charset="UTF-8";\n' +
  10054. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10055. "_js.onload = function(){\n" +
  10056. ' var a = document.getElementsByTagName("img")\n' +
  10057. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10058. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10059. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10060. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10061. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10062. "beforeUpload_shishi(file," +
  10063. "'" +
  10064. _userid +
  10065. "'" +
  10066. ", " +
  10067. "'" +
  10068. _cid +
  10069. "'" +
  10070. ", " +
  10071. "'" +
  10072. _stage +
  10073. "'" +
  10074. ", " +
  10075. "'" +
  10076. _task +
  10077. "'" +
  10078. ", " +
  10079. "'" +
  10080. _tool +
  10081. "'" +
  10082. ", " +
  10083. "'" +
  10084. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10085. "'" +
  10086. ", " +
  10087. "'" +
  10088. aTool +
  10089. "'" +
  10090. ", " +
  10091. "`" +
  10092. text +
  10093. "`" +
  10094. ")\n" +
  10095. " });\n" +
  10096. "}\n" +
  10097. "document.head.appendChild(_js);\n";
  10098. _iframe.contentWindow.document.head.appendChild(_ajs);
  10099. }
  10100. }
  10101. //U.MD.D.I.openClick(str);
  10102. //如果有任务栏信息
  10103. // if (_taskbar) {
  10104. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10105. // }
  10106. }
  10107. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10108. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10109. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10110. _userinfo = US.userInfo, //登录用户信息
  10111. _userid = US.userInfo.userid //登录用户id
  10112. let _iframe;
  10113. let _cid = cid,
  10114. _stage = stage,
  10115. _task = task,
  10116. _tool = tool;
  10117. var _jie = $$("div", {
  10118. "style": {
  10119. "position": "absolute",
  10120. "bottom": "50px",
  10121. "right": "50px",
  10122. "zIndex": "9999",
  10123. "backgroundColor": "#2268bc",
  10124. "color": "#fff",
  10125. "padding": "12px 20px",
  10126. "cursor": "pointer",
  10127. "borderRadius": "4px",
  10128. },
  10129. "innerHTML": "确认并提交"
  10130. })
  10131. let aTool = ''
  10132. let _loading = document.createElement('div')
  10133. _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;"
  10134. // _loading.id = "";
  10135. let _lchild = document.createElement('div')
  10136. let _limg = document.createElement('img')
  10137. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10138. _limg.style = "width: 26px;margin-right: 10px;"
  10139. _lchild.appendChild(_limg)
  10140. let _lspan = document.createElement('span')
  10141. _lspan.innerHTML = "上传中..."
  10142. _lchild.appendChild(_lspan)
  10143. _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%);"
  10144. _loading.appendChild(_lchild)
  10145. var _box = $$('div', {
  10146. "style": {
  10147. "position": "relative",
  10148. "width": "100%",
  10149. "height": "100%",
  10150. },
  10151. })
  10152. _box.appendChild(_loading)
  10153. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10154. switch (str) {
  10155. case "whiteboard":
  10156. aTool = 1;
  10157. _iframe = $$("iframe", {
  10158. "frameborder": "no",
  10159. "border": "0",
  10160. "scrolling ": "no",
  10161. "style": {
  10162. "cssText": "border:0;width:100%;height:100%"
  10163. },
  10164. "src": "https://beta.iwb.cocorobo.cn/"
  10165. })
  10166. _box.appendChild(_iframe);
  10167. _box.appendChild(_jie);
  10168. _formdiv = new U.UF.UI.form(
  10169. "电子白板",
  10170. _box, {
  10171. "id": "whiteboards" + cid + stage + task + tool,
  10172. "style": {
  10173. "width": "90%",
  10174. "height": "90%",
  10175. "overflow": 'hidden'
  10176. },
  10177. "onresize": function () { }
  10178. }, {
  10179. closecallback: function () { }
  10180. }, {
  10181. "style": {
  10182. "height": "36px"
  10183. }
  10184. }).form; //创建窗体
  10185. _taskbar = {
  10186. "id": str + _formdiv.id,
  10187. "style": {
  10188. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10189. },
  10190. "name": "电子白板",
  10191. "forms": _formdiv,
  10192. "click": function () {
  10193. U.MD.D.I.openApplication(str, obj, info);
  10194. }
  10195. }
  10196. break;
  10197. case "mind":
  10198. aTool = 3;
  10199. _iframe = $$("iframe", {
  10200. "frameborder": "no",
  10201. "border": "0",
  10202. "scrolling ": "no",
  10203. "style": {
  10204. "cssText": "border:0;width:100%;height:100%"
  10205. },
  10206. "src": "/kityminder-editor/dist/index.html"
  10207. });
  10208. _box.appendChild(_iframe);
  10209. _box.appendChild(_jie);
  10210. _formdiv = new U.UF.UI.form(
  10211. "思维导图",
  10212. _box, { //"/jsmind/example/demo.html"
  10213. "id": "minds" + cid + stage + task + tool,
  10214. "style": {
  10215. "width": "90%",
  10216. "height": "90%",
  10217. "overflow": 'hidden'
  10218. },
  10219. "onresize": function () { }
  10220. }, {
  10221. closecallback: function () { }
  10222. }, {
  10223. "style": {
  10224. "height": "36px"
  10225. }
  10226. }).form; //创建窗体
  10227. _taskbar = {
  10228. "id": str + _formdiv.id,
  10229. "style": {
  10230. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10231. },
  10232. "name": "思维导图",
  10233. "forms": _formdiv,
  10234. "click": function () {
  10235. U.MD.D.I.openApplication(str, obj, info);
  10236. }
  10237. }
  10238. break;
  10239. case "doc":
  10240. aTool = 6;
  10241. _iframe = $$("iframe", {
  10242. "frameborder": "no",
  10243. "border": "0",
  10244. "scrolling ": "no",
  10245. "style": {
  10246. "cssText": "border:0;width:100%;height:100%"
  10247. },
  10248. "src": "/Office/Word/WordEditArea.htm"
  10249. })
  10250. _box.appendChild(_iframe);
  10251. _box.appendChild(_jie);
  10252. _formdiv = new U.UF.UI.form(
  10253. "协同文档",
  10254. _box, {
  10255. "id": "docs" + cid + stage + task + tool,
  10256. "style": {
  10257. "width": "90%",
  10258. "height": "90%",
  10259. "overflow": 'hidden'
  10260. },
  10261. "onresize": function () { }
  10262. }, {
  10263. closecallback: function () { }
  10264. }, {
  10265. "style": {
  10266. "height": "36px"
  10267. }
  10268. }).form; //创建窗体
  10269. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10270. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10271. })
  10272. _taskbar = {
  10273. "id": str + _formdiv.id,
  10274. "style": {
  10275. "backgroundImage": "url(/img/icon/doc.png)"
  10276. },
  10277. "name": "协同文档",
  10278. "forms": _formdiv,
  10279. "click": function () {
  10280. U.MD.D.I.openApplication(str, obj, info);
  10281. }
  10282. }
  10283. break;
  10284. }
  10285. const script1 = document.createElement("script");
  10286. script1.type = "text/javascript";
  10287. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10288. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10289. const script2 = document.createElement("script");
  10290. script2.type = "text/javascript";
  10291. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10292. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10293. const script3 = document.createElement("script");
  10294. script3.type = "text/javascript";
  10295. script3.charset = "UTF-8";
  10296. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10297. const script4 = document.createElement("script");
  10298. script4.type = "text/javascript";
  10299. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10300. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10301. if (_iframe) {
  10302. if (str == 'doc') {
  10303. _iframe = _formdiv.querySelector('iframe')
  10304. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10305. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10306. _iframe.contentWindow.document.body.appendChild(script1);
  10307. _iframe.contentWindow.document.body.appendChild(script2);
  10308. // _iframe.contentWindow.document.body.appendChild(script3);
  10309. _iframe.contentWindow.document.body.appendChild(script4);
  10310. })
  10311. if (onloadListener) {
  10312. _iframe.contentDocument.location.reload()
  10313. } else {
  10314. _iframe.contentDocument.location.reload()
  10315. }
  10316. } else if (str == 'mind') {
  10317. _iframe = _formdiv.querySelector('iframe')
  10318. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10319. _iframe.contentWindow.document.body.appendChild(script1);
  10320. _iframe.contentWindow.document.body.appendChild(script2);
  10321. _iframe.contentWindow.document.body.appendChild(script4);
  10322. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10323. })
  10324. if (onloadListener) {
  10325. _iframe.contentDocument.location.reload()
  10326. } else {
  10327. _iframe.contentDocument.location.reload()
  10328. }
  10329. } else {
  10330. _iframe.onload = () => {
  10331. _iframe.contentWindow.document.body.appendChild(script1);
  10332. _iframe.contentWindow.document.body.appendChild(script2);
  10333. // _iframe.contentWindow.document.body.appendChild(script3);
  10334. _iframe.contentWindow.document.body.appendChild(script4);
  10335. };
  10336. }
  10337. _jie.onclick = async () => {
  10338. let text = ''
  10339. if (aTool == 6) {
  10340. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10341. } else if (aTool == 3) {
  10342. text = await U.MD.D.I.getEditorContent(_iframe);
  10343. }
  10344. _loading.style.display = 'flex'
  10345. console.log(_loading);
  10346. var _ajs = _iframe.contentWindow.document.createElement("script");
  10347. _ajs.type = "text/javascript";
  10348. _ajs.innerHTML =
  10349. // 'console.log(' + _loading + ');\n' +
  10350. 'var _js = document.createElement("script");\n' +
  10351. '_js.type="text/javascript";\n' +
  10352. '_js.charset="UTF-8";\n' +
  10353. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10354. "_js.onload = function(){\n" +
  10355. ' var a = document.getElementsByTagName("img")\n' +
  10356. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10357. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10358. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10359. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10360. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10361. "beforeUpload_shishi(file," +
  10362. "'" +
  10363. _userid +
  10364. "'" +
  10365. ", " +
  10366. "'" +
  10367. _cid +
  10368. "'" +
  10369. ", " +
  10370. "'" +
  10371. _stage +
  10372. "'" +
  10373. ", " +
  10374. "'" +
  10375. _task +
  10376. "'" +
  10377. ", " +
  10378. "'" +
  10379. _tool +
  10380. "'" +
  10381. ", " +
  10382. "'" +
  10383. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10384. "'" +
  10385. ", " +
  10386. "'" +
  10387. aTool +
  10388. "'" +
  10389. ", " +
  10390. "`" +
  10391. text +
  10392. "`" +
  10393. ")\n" +
  10394. " });\n" +
  10395. "}\n" +
  10396. "document.head.appendChild(_js);\n";
  10397. _iframe.contentWindow.document.head.appendChild(_ajs);
  10398. }
  10399. }
  10400. //U.MD.D.I.openClick(str);
  10401. //如果有任务栏信息
  10402. // if (_taskbar) {
  10403. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10404. // }
  10405. }
  10406. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10407. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10408. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10409. _userinfo = US.userInfo, //登录用户信息
  10410. _userid = US.userInfo.userid //登录用户id
  10411. let _iframe;
  10412. let _cid = cid,
  10413. _stage = stage,
  10414. _task = task,
  10415. _tool = tool;
  10416. var _jie = $$("div", {
  10417. "style": {
  10418. "position": "absolute",
  10419. "bottom": "50px",
  10420. "right": "50px",
  10421. "zIndex": "9999",
  10422. "backgroundColor": "#2268bc",
  10423. "color": "#fff",
  10424. "padding": "12px 20px",
  10425. "cursor": "pointer",
  10426. "borderRadius": "4px",
  10427. },
  10428. "innerHTML": "上传模板"
  10429. })
  10430. let aTool = ''
  10431. let _loading = document.createElement('div')
  10432. _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;"
  10433. // _loading.id = "";
  10434. let _lchild = document.createElement('div')
  10435. let _limg = document.createElement('img')
  10436. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10437. _limg.style = "width: 26px;margin-right: 10px;"
  10438. _lchild.appendChild(_limg)
  10439. let _lspan = document.createElement('span')
  10440. _lspan.innerHTML = "上传中..."
  10441. _lchild.appendChild(_lspan)
  10442. _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%);"
  10443. _loading.appendChild(_lchild)
  10444. var _box = $$('div', {
  10445. "style": {
  10446. "position": "relative",
  10447. "width": "100%",
  10448. "height": "100%",
  10449. },
  10450. })
  10451. _box.appendChild(_loading)
  10452. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10453. switch (str) {
  10454. case "whiteboard":
  10455. aTool = 1;
  10456. _iframe = $$("iframe", {
  10457. "frameborder": "no",
  10458. "border": "0",
  10459. "scrolling ": "no",
  10460. "style": {
  10461. "cssText": "border:0;width:100%;height:100%"
  10462. },
  10463. "src": "https://beta.iwb.cocorobo.cn/"
  10464. })
  10465. _box.appendChild(_iframe);
  10466. _box.appendChild(_jie);
  10467. _formdiv = new U.UF.UI.form(
  10468. "电子白板",
  10469. _box, {
  10470. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10471. "style": {
  10472. "width": "90%",
  10473. "height": "90%",
  10474. "overflow": 'hidden'
  10475. },
  10476. "onresize": function () { }
  10477. }, {
  10478. closecallback: function () { }
  10479. }, {
  10480. "style": {
  10481. "height": "36px"
  10482. }
  10483. }).form; //创建窗体
  10484. _taskbar = {
  10485. "id": str + _formdiv.id,
  10486. "style": {
  10487. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10488. },
  10489. "name": "电子白板",
  10490. "forms": _formdiv,
  10491. "click": function () {
  10492. U.MD.D.I.openApplication(str, obj, info);
  10493. }
  10494. }
  10495. break;
  10496. case "mind":
  10497. aTool = 3;
  10498. _iframe = $$("iframe", {
  10499. "frameborder": "no",
  10500. "border": "0",
  10501. "scrolling ": "no",
  10502. "style": {
  10503. "cssText": "border:0;width:100%;height:100%"
  10504. },
  10505. "src": "/kityminder-editor/dist/index.html"
  10506. });
  10507. _box.appendChild(_iframe);
  10508. _box.appendChild(_jie);
  10509. _formdiv = new U.UF.UI.form(
  10510. "思维导图",
  10511. _box, { //"/jsmind/example/demo.html"
  10512. "id": "minds_Yu" + cid + stage + task + tool,
  10513. "style": {
  10514. "width": "90%",
  10515. "height": "90%",
  10516. "overflow": 'hidden'
  10517. },
  10518. "onresize": function () { }
  10519. }, {
  10520. closecallback: function () { }
  10521. }, {
  10522. "style": {
  10523. "height": "36px"
  10524. }
  10525. }).form; //创建窗体
  10526. _taskbar = {
  10527. "id": str + _formdiv.id,
  10528. "style": {
  10529. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10530. },
  10531. "name": "思维导图",
  10532. "forms": _formdiv,
  10533. "click": function () {
  10534. U.MD.D.I.openApplication(str, obj, info);
  10535. }
  10536. }
  10537. break;
  10538. case "doc":
  10539. aTool = 6;
  10540. _iframe = $$("iframe", {
  10541. "frameborder": "no",
  10542. "border": "0",
  10543. "scrolling ": "no",
  10544. "style": {
  10545. "cssText": "border:0;width:100%;height:100%"
  10546. },
  10547. "src": "/Office/Word/WordEditArea.htm"
  10548. })
  10549. _box.appendChild(_iframe);
  10550. _box.appendChild(_jie);
  10551. _formdiv = new U.UF.UI.form(
  10552. "协同文档",
  10553. _box, {
  10554. "id": "docs_Yu" + cid + stage + task + tool,
  10555. "style": {
  10556. "width": "90%",
  10557. "height": "90%",
  10558. "overflow": 'hidden'
  10559. },
  10560. "onresize": function () { }
  10561. }, {
  10562. closecallback: function () { }
  10563. }, {
  10564. "style": {
  10565. "height": "36px"
  10566. }
  10567. }).form; //创建窗体
  10568. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10569. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10570. })
  10571. _taskbar = {
  10572. "id": str + _formdiv.id,
  10573. "style": {
  10574. "backgroundImage": "url(/img/icon/doc.png)"
  10575. },
  10576. "name": "协同文档",
  10577. "forms": _formdiv,
  10578. "click": function () {
  10579. U.MD.D.I.openApplication(str, obj, info);
  10580. }
  10581. }
  10582. break;
  10583. case "CocoPi":
  10584. aTool = 57;
  10585. _iframe = $$("iframe", {
  10586. "allowpaymentrequest": "allowpaymentrequest",
  10587. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10588. "webkitallowfullscreen": "",
  10589. "mozallowfullscreen": "",
  10590. "frameborder": "no",
  10591. "border": "0",
  10592. "scrolling ": "no",
  10593. "style": {
  10594. "cssText": "border:0;width:100%;height:100%"
  10595. },
  10596. "src": "https://pi.cocorobo.cn/"
  10597. })
  10598. _box.appendChild(_iframe);
  10599. _box.appendChild(_jie);
  10600. _formdiv = new U.UF.UI.form(
  10601. "CocoPi",
  10602. _box, {
  10603. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10604. "style": {
  10605. "width": "90%",
  10606. "height": "90%",
  10607. "overflow": 'hidden'
  10608. },
  10609. "onresize": function () { }
  10610. }, {
  10611. closecallback: function () { }
  10612. }, {
  10613. "style": {
  10614. "height": "36px"
  10615. }
  10616. }).form; //创建窗体
  10617. _taskbar = {
  10618. "id": str + _formdiv.id,
  10619. "style": {
  10620. "backgroundImage": "url(/img/icon/cocopi.png)"
  10621. },
  10622. "name": "CocoPi",
  10623. "forms": _formdiv,
  10624. "click": function () {
  10625. U.MD.D.I.openApplication(str, obj, info);
  10626. }
  10627. }
  10628. break;
  10629. }
  10630. if (_iframe) {
  10631. if (str == 'doc') {
  10632. _iframe = _formdiv.querySelector('iframe')
  10633. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10634. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10635. })
  10636. if (onloadListener) {
  10637. _iframe.contentDocument.location.reload()
  10638. } else {
  10639. _iframe.contentDocument.location.reload()
  10640. }
  10641. } else if (str == 'mind') {
  10642. _iframe = _formdiv.querySelector('iframe')
  10643. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10644. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10645. })
  10646. if (onloadListener) {
  10647. _iframe.contentDocument.location.reload()
  10648. } else {
  10649. _iframe.contentDocument.location.reload()
  10650. }
  10651. } else if (str == 'whiteboard') {
  10652. _iframe = _formdiv.querySelector('iframe')
  10653. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10654. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10655. })
  10656. // if (onloadListener) {
  10657. // try {
  10658. // _iframe.src += "?cocorobo="+new Date().getTime()
  10659. // _iframe.contentWindow.document.location.reload()
  10660. // } catch (error) {
  10661. // }
  10662. // } else {
  10663. // _iframe.contentDocument.location.reload()
  10664. // }
  10665. } else if (str == 'CocoPi') {
  10666. _iframe = _formdiv.querySelector('iframe')
  10667. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10668. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10669. })
  10670. if (onloadListener) {
  10671. _iframe.contentDocument.location.reload()
  10672. } else {
  10673. _iframe.contentDocument.location.reload()
  10674. }
  10675. } else {
  10676. _iframe.onload = () => { };
  10677. }
  10678. _jie.onclick = async () => {
  10679. let text = ''
  10680. let type = '2'
  10681. if (aTool == 1) {
  10682. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10683. type = '3'
  10684. } else if (aTool == 6) {
  10685. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10686. type = '1'
  10687. } else if (aTool == 3) {
  10688. text = await U.MD.D.I.getEditorContent(_iframe);
  10689. type = '2'
  10690. } else if (aTool == 57) {
  10691. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10692. type = '4'
  10693. }
  10694. _loading.style.display = 'flex'
  10695. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10696. }
  10697. }
  10698. //U.MD.D.I.openClick(str);
  10699. //如果有任务栏信息
  10700. // if (_taskbar) {
  10701. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10702. // }
  10703. }
  10704. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10705. var xmlhttp;
  10706. var Mac, Sn, DeviceId
  10707. if (window.XMLHttpRequest) {
  10708. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10709. xmlhttp = new XMLHttpRequest();
  10710. } else {
  10711. // IE6, IE5 浏览器执行代码
  10712. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10713. }
  10714. xmlhttp.onreadystatechange = function () {
  10715. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10716. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10717. // resolve(res.value[0][0].text);
  10718. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10719. }
  10720. }
  10721. }
  10722. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10723. xmlhttp.send();
  10724. }
  10725. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10726. var xmlhttp;
  10727. var Mac, Sn, DeviceId
  10728. if (window.XMLHttpRequest) {
  10729. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10730. xmlhttp = new XMLHttpRequest();
  10731. } else {
  10732. // IE6, IE5 浏览器执行代码
  10733. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10734. }
  10735. xmlhttp.onreadystatechange = function () {
  10736. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10737. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10738. // resolve(res.value[0][0].text);
  10739. if (type == '2') {
  10740. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10741. } else if (type == '3') {
  10742. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10743. } else if (type == '4') {
  10744. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10745. }
  10746. } else {
  10747. if (type == '2') {
  10748. iframe.contentWindow.editor.minder.importData('json', '')
  10749. } else if (type == '3') {
  10750. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10751. } else if (type == '4') {
  10752. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10753. }
  10754. }
  10755. }
  10756. }
  10757. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10758. xmlhttp.send();
  10759. }
  10760. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10761. var xmlhttp;
  10762. var Mac, Sn, DeviceId
  10763. if (window.XMLHttpRequest) {
  10764. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10765. xmlhttp = new XMLHttpRequest();
  10766. } else {
  10767. // IE6, IE5 浏览器执行代码
  10768. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10769. }
  10770. xmlhttp.onreadystatechange = function () {
  10771. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10772. if (xmlhttp.response) {
  10773. // resolve(res.value[0][0].text);
  10774. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10775. // $(fileInput).val('');
  10776. // });
  10777. span.innerHTML = '上传成功'
  10778. setTimeout(() => {
  10779. loading.style.display = 'none'
  10780. }, 1000);
  10781. }
  10782. }
  10783. }
  10784. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10785. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10786. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10787. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10788. // 设置请求头,表示请求体的编码格式
  10789. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10790. // 设置请求体,使用url-encoded格式的数据
  10791. }
  10792. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10793. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10794. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10795. _userinfo = US.userInfo, //登录用户信息
  10796. _userid = US.userInfo.userid //登录用户id
  10797. let _iframe;
  10798. let _cid = cid,
  10799. _stage = stage,
  10800. _task = task,
  10801. _tool = tool;
  10802. var _jie = $$("div", {
  10803. "style": {
  10804. "position": "absolute",
  10805. "bottom": "50px",
  10806. "right": "50px",
  10807. "zIndex": "9999",
  10808. "backgroundColor": "#2268bc",
  10809. "color": "#fff",
  10810. "padding": "12px 20px",
  10811. "cursor": "pointer",
  10812. "borderRadius": "4px",
  10813. },
  10814. "innerHTML": "提交作业"
  10815. })
  10816. let aTool = ''
  10817. let _loading = document.createElement('div')
  10818. _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;"
  10819. // _loading.id = "";
  10820. let _lchild = document.createElement('div')
  10821. let _limg = document.createElement('img')
  10822. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10823. _limg.style = "width: 26px;margin-right: 10px;"
  10824. _lchild.appendChild(_limg)
  10825. let _lspan = document.createElement('span')
  10826. _lspan.innerHTML = "上传中..."
  10827. _lchild.appendChild(_lspan)
  10828. _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%);"
  10829. _loading.appendChild(_lchild)
  10830. var _box = $$('div', {
  10831. "style": {
  10832. "position": "relative",
  10833. "width": "100%",
  10834. "height": "100%",
  10835. },
  10836. })
  10837. _box.appendChild(_loading)
  10838. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10839. switch (str) {
  10840. case "CocoPi":
  10841. aTool = 57;
  10842. _iframe = $$("iframe", {
  10843. "allowpaymentrequest": "allowpaymentrequest",
  10844. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10845. "webkitallowfullscreen": "",
  10846. "mozallowfullscreen": "",
  10847. "frameborder": "no",
  10848. "border": "0",
  10849. "scrolling ": "no",
  10850. "style": {
  10851. "cssText": "border:0;width:100%;height:100%"
  10852. },
  10853. "src": "https://pi.cocorobo.cn/"
  10854. })
  10855. _box.appendChild(_iframe);
  10856. _box.appendChild(_jie);
  10857. _formdiv = new U.UF.UI.form(
  10858. "CocoPi",
  10859. _box, {
  10860. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10861. "style": {
  10862. "width": "90%",
  10863. "height": "90%",
  10864. "overflow": 'hidden'
  10865. },
  10866. "onresize": function () { }
  10867. }, {
  10868. closecallback: function () { }
  10869. }, {
  10870. "style": {
  10871. "height": "36px"
  10872. }
  10873. }).form; //创建窗体
  10874. _taskbar = {
  10875. "id": str + _formdiv.id,
  10876. "style": {
  10877. "backgroundImage": "url(/img/icon/cocopi.png)"
  10878. },
  10879. "name": "CocoPi",
  10880. "forms": _formdiv,
  10881. "click": function () {
  10882. U.MD.D.I.openApplication(str, obj, info);
  10883. }
  10884. }
  10885. break;
  10886. }
  10887. if (_iframe) {
  10888. if (str == 'CocoPi') {
  10889. _iframe = _formdiv.querySelector('iframe')
  10890. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10891. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10892. })
  10893. if (onloadListener) {
  10894. _iframe.contentDocument.location.reload()
  10895. } else {
  10896. _iframe.contentDocument.location.reload()
  10897. }
  10898. }
  10899. _jie.onclick = async () => {
  10900. let text = ''
  10901. if (aTool == 57) {
  10902. text = _iframe.contentWindow.getLoadXmlStr()
  10903. }
  10904. _loading.style.display = 'flex'
  10905. console.log(_loading);
  10906. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10907. _loading.style.display = 'none'
  10908. let _div = document.createElement('div')
  10909. _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;"
  10910. let _inner = document.createElement('div')
  10911. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10912. _inner.innerHTML = "上传成功"
  10913. _div.appendChild(_inner)
  10914. _iframe.contentWindow.window.document.body.appendChild(_div)
  10915. _div.onclick = () => {
  10916. _iframe.contentWindow.window.document.body.removeChild(_div)
  10917. }
  10918. setTimeout(() => {
  10919. _iframe.contentWindow.window.document.body.removeChild(_div)
  10920. }, 1000);
  10921. }, [], { "type": "POST", "withCredentials": true });
  10922. }
  10923. }
  10924. }
  10925. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10926. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10927. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10928. _userid = student.userid, //登录用户id
  10929. _username = student.student //用户名字
  10930. let _iframe;
  10931. let _cid = cid,
  10932. _stage = stage,
  10933. _task = task,
  10934. _tool = tool;
  10935. var _jie = $$("div", {
  10936. "style": {
  10937. "position": "absolute",
  10938. "bottom": "50px",
  10939. "right": "50px",
  10940. "zIndex": "9999",
  10941. "backgroundColor": "#2268bc",
  10942. "color": "#fff",
  10943. "padding": "12px 20px",
  10944. "cursor": "pointer",
  10945. "borderRadius": "4px",
  10946. },
  10947. "innerHTML": "提交作业"
  10948. })
  10949. let aTool = ''
  10950. let _loading = document.createElement('div')
  10951. _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;"
  10952. // _loading.id = "";
  10953. let _lchild = document.createElement('div')
  10954. let _limg = document.createElement('img')
  10955. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10956. _limg.style = "width: 26px;margin-right: 10px;"
  10957. _lchild.appendChild(_limg)
  10958. let _lspan = document.createElement('span')
  10959. _lspan.innerHTML = "上传中..."
  10960. _lchild.appendChild(_lspan)
  10961. _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%);"
  10962. _loading.appendChild(_lchild)
  10963. var _box = $$('div', {
  10964. "style": {
  10965. "position": "relative",
  10966. "width": "100%",
  10967. "height": "100%",
  10968. },
  10969. })
  10970. _box.appendChild(_loading)
  10971. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10972. switch (str) {
  10973. case "CocoPi":
  10974. aTool = 57;
  10975. _iframe = $$("iframe", {
  10976. "allowpaymentrequest": "allowpaymentrequest",
  10977. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10978. "webkitallowfullscreen": "",
  10979. "mozallowfullscreen": "",
  10980. "frameborder": "no",
  10981. "border": "0",
  10982. "scrolling ": "no",
  10983. "style": {
  10984. "cssText": "border:0;width:100%;height:100%"
  10985. },
  10986. "src": "https://pi.cocorobo.cn/"
  10987. })
  10988. _box.appendChild(_iframe);
  10989. _box.appendChild(_jie);
  10990. _formdiv = new U.UF.UI.form(
  10991. "CocoPi-" + _username,
  10992. _box, {
  10993. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10994. "style": {
  10995. "width": "90%",
  10996. "height": "90%",
  10997. "overflow": 'hidden'
  10998. },
  10999. "onresize": function () { }
  11000. }, {
  11001. closecallback: function () { }
  11002. }, {
  11003. "style": {
  11004. "height": "36px"
  11005. }
  11006. }).form; //创建窗体
  11007. _taskbar = {
  11008. "id": str + _formdiv.id,
  11009. "style": {
  11010. "backgroundImage": "url(/img/icon/cocopi.png)"
  11011. },
  11012. "name": "CocoPi",
  11013. "forms": _formdiv,
  11014. "click": function () {
  11015. U.MD.D.I.openApplication(str, obj, info);
  11016. }
  11017. }
  11018. break;
  11019. }
  11020. if (_iframe) {
  11021. if (str == 'CocoPi') {
  11022. _iframe = _formdiv.querySelector('iframe')
  11023. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11024. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11025. })
  11026. if (onloadListener) {
  11027. _iframe.contentDocument.location.reload()
  11028. } else {
  11029. _iframe.contentDocument.location.reload()
  11030. }
  11031. }
  11032. _jie.onclick = async () => {
  11033. let text = ''
  11034. if (aTool == 57) {
  11035. text = _iframe.contentWindow.getLoadXmlStr()
  11036. }
  11037. _loading.style.display = 'flex'
  11038. console.log(_loading);
  11039. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11040. _loading.style.display = 'none'
  11041. let _div = document.createElement('div')
  11042. _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;"
  11043. let _inner = document.createElement('div')
  11044. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11045. _inner.innerHTML = "上传成功"
  11046. _div.appendChild(_inner)
  11047. _iframe.contentWindow.window.document.body.appendChild(_div)
  11048. _div.onclick = () => {
  11049. _iframe.contentWindow.window.document.body.removeChild(_div)
  11050. }
  11051. setTimeout(() => {
  11052. _iframe.contentWindow.window.document.body.removeChild(_div)
  11053. }, 1000);
  11054. }, [], { "type": "POST", "withCredentials": true });
  11055. }
  11056. }
  11057. }
  11058. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11059. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11060. if (res.value[0].length > 0) {
  11061. if (atool == 57) {
  11062. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11063. }
  11064. } else {
  11065. if (atool == 57) {
  11066. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11067. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11068. }
  11069. }
  11070. }, [], { "type": "POST", "withCredentials": true });
  11071. }
  11072. U.MD.D.addOp = function(text,type,time){
  11073. var userInfo = US.userInfo;
  11074. if(Object.keys(userInfo).length !== 0){
  11075. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11076. }, [], { "type": "POST", "withCredentials": true });
  11077. }
  11078. }