DeskTop.js 728 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. ];
  1573. //CUHK_EDU
  1574. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1575. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1576. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1578. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1579. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1580. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1581. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1582. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1584. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1585. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1586. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1587. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1588. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1589. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1590. ];
  1591. //CUHK_EDU
  1592. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1593. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1594. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1595. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1596. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1597. ];
  1598. //010503
  1599. U.MD.D.I.x010503TeacherDeskIcon = [
  1600. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1601. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1602. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1603. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1604. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1605. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1606. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1607. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1608. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1609. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1610. ];
  1611. //010503
  1612. U.MD.D.I.x010503StudentDeskIcon = [
  1613. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1614. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1615. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1616. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. ];
  1618. //SPROUT Lab
  1619. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1620. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1621. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1622. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1623. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1624. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1625. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1626. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1627. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1628. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1629. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1630. ];
  1631. //SPROUT Lab
  1632. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1633. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1635. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1636. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1637. ];
  1638. //010204
  1639. U.MD.D.I.x010204TeacherDeskIcon = [
  1640. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1641. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1642. ];
  1643. //010204
  1644. U.MD.D.I.x010204StudentDeskIcon = [
  1645. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1646. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1647. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1648. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1649. ];
  1650. //trail
  1651. U.MD.D.I.trailTeacherDeskIcon = [
  1652. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1653. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1654. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1655. ];
  1656. //trail
  1657. U.MD.D.I.trailStudentDeskIcon = [
  1658. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1661. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1662. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1663. ];
  1664. //trial
  1665. U.MD.D.I.trialTeacherDeskIcon = [
  1666. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1667. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1668. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1669. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1670. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1671. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1672. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1673. ];
  1674. //trial
  1675. U.MD.D.I.trialStudentDeskIcon = [
  1676. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1677. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1678. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1679. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1680. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1681. ];
  1682. //010504
  1683. U.MD.D.I.x010504TeacherDeskIcon = [
  1684. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1685. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1686. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1687. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1688. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1689. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1690. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1691. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1692. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1693. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1694. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1695. ];
  1696. //010504
  1697. U.MD.D.I.x010504StudentDeskIcon = [
  1698. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1699. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1700. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1702. ];
  1703. //010505
  1704. U.MD.D.I.x010505TeacherDeskIcon = [
  1705. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1706. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1707. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1708. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1709. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1710. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1711. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1714. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //010505
  1718. U.MD.D.I.x010505StudentDeskIcon = [
  1719. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1720. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1721. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1722. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //SCNUET
  1725. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1726. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1729. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1730. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1731. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1732. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1733. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1736. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1737. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1738. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1739. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1740. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1743. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1744. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1745. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1746. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1747. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1748. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1749. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1750. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1751. ];
  1752. //SCNUET
  1753. U.MD.D.I.SCNUETAdminDeskIcon = [
  1754. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1755. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1757. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1758. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1759. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1760. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1761. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1762. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1763. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1764. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1765. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1766. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1767. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1768. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1770. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1771. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1772. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1773. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1774. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1775. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1776. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1777. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1778. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1779. ];
  1780. //SCNUET
  1781. U.MD.D.I.SCNUETStudentDeskIcon = [
  1782. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1784. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1785. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1786. ];
  1787. //x020201
  1788. U.MD.D.I.x020201TeacherDeskIcon = [
  1789. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1790. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1791. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1792. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1793. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1794. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1795. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1796. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1799. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1800. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1803. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1804. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1805. ];
  1806. //x020201
  1807. U.MD.D.I.x020201AdminDeskIcon = [
  1808. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1809. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1812. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1813. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1814. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1815. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1816. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1819. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1820. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1821. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1822. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1823. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1824. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1825. ];
  1826. //020201
  1827. U.MD.D.I.x020201StudentDeskIcon = [
  1828. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1829. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1831. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1832. ];
  1833. //010611
  1834. U.MD.D.I.x010611TeacherDeskIcon = [
  1835. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1836. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1838. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1839. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1840. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1841. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1842. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1843. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1844. ];
  1845. //010611
  1846. U.MD.D.I.x010611StudentDeskIcon = [
  1847. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1848. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1849. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1850. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1851. ];
  1852. //010612
  1853. U.MD.D.I.x010612TeacherDeskIcon = [
  1854. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1855. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1856. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1857. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1858. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1862. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1863. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1864. ];
  1865. //010612
  1866. U.MD.D.I.x010612StudentDeskIcon = [
  1867. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1869. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1870. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1871. ];
  1872. //tianyuan
  1873. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1874. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1875. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1876. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1877. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1878. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1879. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1880. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1881. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1884. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1885. ];
  1886. //010611
  1887. U.MD.D.I.tianyuanStudentDeskIcon = [
  1888. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1889. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1890. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1891. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1892. ];
  1893. //320101
  1894. U.MD.D.I.x320101TeacherDeskIcon = [
  1895. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1896. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1897. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1898. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1899. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1900. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1927. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1929. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1930. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1931. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1932. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1933. ];
  1934. //320101
  1935. U.MD.D.I.x320101StudentDeskIcon = [
  1936. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1937. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1938. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1939. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1940. ];
  1941. //szsy
  1942. U.MD.D.I.szsyTeacherDeskIcon = [
  1943. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1944. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1945. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1946. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1947. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1948. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1949. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1950. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1951. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1952. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1953. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1954. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1955. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1956. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1957. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1958. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1959. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1960. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1961. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1962. ];
  1963. //szsy
  1964. U.MD.D.I.szsyStudentDeskIcon = [
  1965. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1966. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1967. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1968. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1969. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1970. ];
  1971. //010404
  1972. U.MD.D.I.x010404TeacherDeskIcon = [
  1973. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1974. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1975. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1976. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1977. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1978. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1979. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1980. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1981. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1982. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1983. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1984. ];
  1985. //010404
  1986. U.MD.D.I.x010404StudentDeskIcon = [
  1987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1989. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1990. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1991. ];
  1992. //cocorobo demo
  1993. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1996. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1997. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1998. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1999. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2000. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2001. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2002. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2003. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2005. ];
  2006. //cocorobo demo
  2007. U.MD.D.I.demoCocoStudentDeskIcon = [
  2008. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2009. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2010. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2011. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2012. ];
  2013. //MOAI
  2014. U.MD.D.I.MOAITeacherDeskIcon = [
  2015. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2016. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2017. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2019. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2020. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2021. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2022. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2023. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2024. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2025. ];
  2026. //MOAI 学生端
  2027. U.MD.D.I.MOAIStudentDeskIcon = [
  2028. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2029. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2030. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2031. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2032. ];
  2033. //#region 桌面初始化a
  2034. /**
  2035. * 初始化桌面的起始函数
  2036. *
  2037. */
  2038. U.MD.D.I.init = function () {
  2039. if ($("#U_MD_D_K")[0]) {
  2040. //初始化桌面图标
  2041. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2042. // var clickUrl = ':12588/requestIp.php';
  2043. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2044. // U.MD.D.I.Ip = data;
  2045. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2046. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2047. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2048. // })
  2049. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2050. // })
  2051. }
  2052. }
  2053. /**
  2054. * 模式切换
  2055. *
  2056. */
  2057. U.MD.D.I.ModeCheck = function (type) {
  2058. if (US.Config.type == type) {
  2059. return
  2060. }
  2061. US.Config.type = type
  2062. $('.U_PBL_Check .active')[0].className = ''
  2063. if (type == 1) {
  2064. $('.U_PBL_Check div')[0].className = 'active'
  2065. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2066. } else {
  2067. $('.U_PBL_Check div')[1].className = 'active'
  2068. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2069. }
  2070. //初始化桌面图标
  2071. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2072. if (type == 2) {
  2073. U.MD.D.I.openApplication("project")
  2074. }
  2075. }
  2076. /**
  2077. * 隐藏任务栏
  2078. *
  2079. * @param {element} 桌面元素
  2080. */
  2081. U.MD.D.I.hiddenTaskbar = function (el) {
  2082. //任务栏位置变小
  2083. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2084. //桌面的位置变大
  2085. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2086. }
  2087. /**
  2088. * 隐藏任务栏
  2089. *
  2090. * @param {element} 桌面元素
  2091. */
  2092. U.MD.D.I.hiddenTaskbarout = function (el) {
  2093. //任务栏位置变小
  2094. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2095. //任务栏位置变化
  2096. U.selectEl(el).css({ "bottom": "-60px" });
  2097. //桌面的位置变大
  2098. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2099. }
  2100. }
  2101. /**
  2102. * 初始化打印桌面图标
  2103. *
  2104. * @param {element} 桌面元素
  2105. */
  2106. U.MD.D.I.initDesktopIcons = function (el, type) {
  2107. var i, //用于循环
  2108. _content, //桌面图标元素
  2109. _iconcontent, //桌面图标元素
  2110. _frag = $$("frag"), //定义一个碎片元素
  2111. _type = US.userInfo.type,
  2112. _org = US.userInfo.org,
  2113. _oid = US.userInfo.organizeid,
  2114. _role = US.userInfo.role,
  2115. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2116. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2117. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2118. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2119. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2120. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2121. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2122. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2123. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2124. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2125. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2126. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2127. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2128. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2129. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2130. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2131. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2132. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2133. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2134. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2135. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2136. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2137. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2138. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2139. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2140. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2141. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2142. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2143. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2144. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2145. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2146. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2147. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2148. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2149. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2150. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2151. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2152. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2153. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2154. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2155. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2156. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2157. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2158. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2159. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2160. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2161. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2162. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2163. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2164. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2165. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2166. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2167. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2168. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2169. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2170. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2171. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2172. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2173. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2174. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2175. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2176. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2177. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2178. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2179. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2180. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2181. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2182. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2183. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2184. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2185. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2186. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2187. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2188. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2189. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2190. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2191. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2192. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2193. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2194. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2195. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2196. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2197. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2198. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2199. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2200. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2201. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2202. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2203. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2204. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2205. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2206. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2207. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2208. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2209. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2210. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2211. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2212. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2213. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2214. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2215. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2216. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2217. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2218. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2219. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2220. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2221. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2222. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2223. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2224. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2225. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2226. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2227. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2228. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2229. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2230. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2231. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2232. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2233. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2234. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2235. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2236. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2237. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2238. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2239. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2240. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2241. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2242. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2243. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2244. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2245. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2246. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2247. 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'];
  2248. 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',"fa20a652-5f2a-11f0-bf32-005056924926"];
  2249. 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",]
  2250. //清楚桌面图标
  2251. el.innerHTML = "";
  2252. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2253. _teacherDesktopIconInfo.push(
  2254. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2255. { "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)" } },
  2256. )
  2257. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2258. }
  2259. 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') {
  2260. _teacherDesktopIconInfo.push(
  2261. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2262. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2263. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2264. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2265. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2266. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2267. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2269. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2270. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2271. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2273. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2276. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2277. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2278. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2279. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2280. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2281. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2282. )
  2283. }
  2284. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2285. _teacherDesktopIconInfo.push(
  2286. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2287. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2288. )
  2289. }
  2290. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2291. _nsfxTeacherDeskIconInfo.push(
  2292. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2293. )
  2294. }
  2295. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2296. // _teacherDesktopIconInfo.push(
  2297. // )
  2298. // }
  2299. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2300. _teacherDesktopIconInfo.push(
  2301. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2302. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2303. )
  2304. }
  2305. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2306. _teacherDesktopIconInfo.push(
  2307. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2309. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2310. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2311. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2312. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2313. )
  2314. _studentDesktopIconInfo.push(
  2315. )
  2316. }
  2317. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2318. _teacherDesktopIconInfo.push(
  2319. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2320. )
  2321. _studentDesktopIconInfo.push(
  2322. )
  2323. }
  2324. //010606 组织
  2325. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2326. _teacherDesktopIconInfo.push(
  2327. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2328. )
  2329. _studentDesktopIconInfo.push(
  2330. )
  2331. }
  2332. //麒麟二中 和 民新小学
  2333. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2334. _teacherDesktopIconInfo.push(
  2335. )
  2336. }
  2337. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2338. _teacherDesktopIconInfo.push(
  2339. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2340. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2341. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2342. )
  2343. }
  2344. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1'){
  2345. _hkTeacherDeskIconInfo.push(
  2346. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2347. )
  2348. }
  2349. //北师大附中(010601)
  2350. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2351. // _teacherDesktopIconInfo.push(
  2352. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2353. // )
  2354. // _studentDesktopIconInfo.push(
  2355. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2356. // )
  2357. // }
  2358. //樂善堂余近卿中學
  2359. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2360. _teacherDesktopIconInfo.push(
  2361. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2362. )
  2363. }
  2364. // Education Artificial Intelligence
  2365. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2366. _teacherDesktopIconInfo.push(
  2367. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2368. )
  2369. }
  2370. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2373. )
  2374. }
  2375. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2376. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2377. _teacherDesktopIconInfo.push(
  2378. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2379. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2380. )
  2381. }
  2382. //麒麟二中
  2383. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2384. _studentDesktopIconInfo.push(
  2385. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2386. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2387. )
  2388. }
  2389. //万科双语
  2390. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2391. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2392. if (el.Name == '项目管理') {
  2393. el.Name = 'PBL项目'
  2394. }
  2395. return el
  2396. })
  2397. _studentDesktopIconInfo3.push(
  2398. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2399. )
  2400. }
  2401. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2402. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2403. return el.Name != '魔盒识字' && el.Name != '24点'
  2404. })
  2405. }
  2406. 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) {
  2407. _studentDesktopIconInfo.push(
  2408. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2409. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2410. )
  2411. }
  2412. //循环创建桌面图标
  2413. if (type == 1) {
  2414. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2415. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2416. _content = $$("div", {
  2417. className: "U_MD_D_KO",
  2418. "onmousedown": U.UF.C.closure(function (obj) {
  2419. //防止拖动图标即打开了桌面应用
  2420. U.MD.D.click(this, obj);
  2421. }, [_studentDesktopIconInfo[i]]),
  2422. "onclick": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_studentDesktopIconInfo[i]])
  2426. }, _frag); //
  2427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2430. }
  2431. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2432. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2433. _content = $$("div", {
  2434. className: "U_MD_D_KO",
  2435. "onmousedown": U.UF.C.closure(function (obj) {
  2436. //防止拖动图标即打开了桌面应用
  2437. U.MD.D.click(this, obj);
  2438. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2439. "onclick": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_hkZJLSStudentDeskIconInfo[i]])
  2443. }, _frag); //
  2444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2447. } //
  2448. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2449. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2450. _content = $$("div", {
  2451. className: "U_MD_D_KO",
  2452. "onmousedown": U.UF.C.closure(function (obj) {
  2453. //防止拖动图标即打开了桌面应用
  2454. U.MD.D.click(this, obj);
  2455. }, [_ytyStudentDeskIconInfo[i]]),
  2456. "onclick": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_ytyStudentDeskIconInfo[i]])
  2460. }, _frag); //
  2461. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2462. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2463. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2464. } //
  2465. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2466. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2467. _content = $$("div", {
  2468. className: "U_MD_D_KO",
  2469. "onmousedown": U.UF.C.closure(function (obj) {
  2470. //防止拖动图标即打开了桌面应用
  2471. U.MD.D.click(this, obj);
  2472. }, [_jccssylStudentDeskIconInfo[i]]),
  2473. "onclick": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_jccssylStudentDeskIconInfo[i]])
  2477. }, _frag); //
  2478. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2479. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2480. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2481. }
  2482. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2483. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2484. _content = $$("div", {
  2485. className: "U_MD_D_KO",
  2486. "onmousedown": U.UF.C.closure(function (obj) {
  2487. //防止拖动图标即打开了桌面应用
  2488. U.MD.D.click(this, obj);
  2489. }, [_scnuaiStudentDeskIconInfo[i]]),
  2490. "onclick": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_scnuaiStudentDeskIconInfo[i]])
  2494. }, _frag); //
  2495. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2496. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2497. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2498. }
  2499. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2500. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2501. _content = $$("div", {
  2502. className: "U_MD_D_KO",
  2503. "onmousedown": U.UF.C.closure(function (obj) {
  2504. //防止拖动图标即打开了桌面应用
  2505. U.MD.D.click(this, obj);
  2506. }, [_caleStudentDeskIconInfo[i]]),
  2507. "onclick": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_caleStudentDeskIconInfo[i]])
  2511. }, _frag); //
  2512. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2513. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2514. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2515. }
  2516. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2517. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2518. _content = $$("div", {
  2519. className: "U_MD_D_KO",
  2520. "onmousedown": U.UF.C.closure(function (obj) {
  2521. //防止拖动图标即打开了桌面应用
  2522. U.MD.D.click(this, obj);
  2523. }, [_thuioeStudentDeskIconInfo[i]]),
  2524. "onclick": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_thuioeStudentDeskIconInfo[i]])
  2528. }, _frag); //
  2529. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2530. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2531. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2532. }
  2533. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2534. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2535. _content = $$("div", {
  2536. className: "U_MD_D_KO",
  2537. "onmousedown": U.UF.C.closure(function (obj) {
  2538. //防止拖动图标即打开了桌面应用
  2539. U.MD.D.click(this, obj);
  2540. }, [_tpcStudentDeskIconInfo[i]]),
  2541. "onclick": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_tpcStudentDeskIconInfo[i]])
  2545. }, _frag); //
  2546. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2547. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2548. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2549. } //
  2550. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2551. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2552. _content = $$("div", {
  2553. className: "U_MD_D_KO",
  2554. "onmousedown": U.UF.C.closure(function (obj) {
  2555. //防止拖动图标即打开了桌面应用
  2556. U.MD.D.click(this, obj);
  2557. }, [_chjyjStudentDeskIconInfo[i]]),
  2558. "onclick": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_chjyjStudentDeskIconInfo[i]])
  2562. }, _frag); //
  2563. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2564. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2565. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2566. }
  2567. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2568. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2569. _content = $$("div", {
  2570. className: "U_MD_D_KO",
  2571. "onmousedown": U.UF.C.closure(function (obj) {
  2572. //防止拖动图标即打开了桌面应用
  2573. U.MD.D.click(this, obj);
  2574. }, [_szjkyStudentDeskIconInfo[i]]),
  2575. "onclick": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_szjkyStudentDeskIconInfo[i]])
  2579. }, _frag); //
  2580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2583. }
  2584. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2585. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_x020201StudentDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_x020201StudentDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2602. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2603. _content = $$("div", {
  2604. className: "U_MD_D_KO",
  2605. "onmousedown": U.UF.C.closure(function (obj) {
  2606. //防止拖动图标即打开了桌面应用
  2607. U.MD.D.click(this, obj);
  2608. }, [_SCNUETStudentDeskIconInfo[i]]),
  2609. "onclick": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_SCNUETStudentDeskIconInfo[i]])
  2613. }, _frag); //
  2614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2617. }
  2618. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2619. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2620. _content = $$("div", {
  2621. className: "U_MD_D_KO",
  2622. "onmousedown": U.UF.C.closure(function (obj) {
  2623. //防止拖动图标即打开了桌面应用
  2624. U.MD.D.click(this, obj);
  2625. }, [_dseiStudentDeskIconInfo[i]]),
  2626. "onclick": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_dseiStudentDeskIconInfo[i]])
  2630. }, _frag); //
  2631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2634. }
  2635. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2636. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2637. _content = $$("div", {
  2638. className: "U_MD_D_KO",
  2639. "onmousedown": U.UF.C.closure(function (obj) {
  2640. //防止拖动图标即打开了桌面应用
  2641. U.MD.D.click(this, obj);
  2642. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2643. "onclick": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2647. }, _frag); //
  2648. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2649. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2650. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2651. }
  2652. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2653. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2654. _content = $$("div", {
  2655. className: "U_MD_D_KO",
  2656. "onmousedown": U.UF.C.closure(function (obj) {
  2657. //防止拖动图标即打开了桌面应用
  2658. U.MD.D.click(this, obj);
  2659. }, [_nsfxStudentDeskIconInfo[i]]),
  2660. "onclick": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_nsfxStudentDeskIconInfo[i]])
  2664. }, _frag); //
  2665. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2666. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2667. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2668. }
  2669. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2670. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2671. _content = $$("div", {
  2672. className: "U_MD_D_KO",
  2673. "onmousedown": U.UF.C.closure(function (obj) {
  2674. //防止拖动图标即打开了桌面应用
  2675. U.MD.D.click(this, obj);
  2676. }, [_stiaStudentDeskIconInfo[i]]),
  2677. "onclick": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_stiaStudentDeskIconInfo[i]])
  2681. }, _frag); //
  2682. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2683. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2684. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2685. }
  2686. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2687. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2688. _content = $$("div", {
  2689. className: "U_MD_D_KO",
  2690. "onmousedown": U.UF.C.closure(function (obj) {
  2691. //防止拖动图标即打开了桌面应用
  2692. U.MD.D.click(this, obj);
  2693. }, [_szdjgStudentDeskIconInfo[i]]),
  2694. "onclick": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_szdjgStudentDeskIconInfo[i]])
  2698. }, _frag); //
  2699. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2700. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2701. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2702. }
  2703. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2704. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2705. _content = $$("div", {
  2706. className: "U_MD_D_KO",
  2707. "onmousedown": U.UF.C.closure(function (obj) {
  2708. //防止拖动图标即打开了桌面应用
  2709. U.MD.D.click(this, obj);
  2710. }, [_x010607StudentDeskIconInfo[i]]),
  2711. "onclick": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_x010607StudentDeskIconInfo[i]])
  2715. }, _frag); //
  2716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2719. }
  2720. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2721. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2722. _content = $$("div", {
  2723. className: "U_MD_D_KO",
  2724. "onmousedown": U.UF.C.closure(function (obj) {
  2725. //防止拖动图标即打开了桌面应用
  2726. U.MD.D.click(this, obj);
  2727. }, [_xhlyStudentDeskIconInfo[i]]),
  2728. "onclick": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_xhlyStudentDeskIconInfo[i]])
  2732. }, _frag); //
  2733. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2734. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2735. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2736. }
  2737. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2738. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2739. _content = $$("div", {
  2740. className: "U_MD_D_KO",
  2741. "onmousedown": U.UF.C.closure(function (obj) {
  2742. //防止拖动图标即打开了桌面应用
  2743. U.MD.D.click(this, obj);
  2744. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2745. "onclick": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2749. }, _frag); //
  2750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2753. }
  2754. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2755. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2756. _content = $$("div", {
  2757. className: "U_MD_D_KO",
  2758. "onmousedown": U.UF.C.closure(function (obj) {
  2759. //防止拖动图标即打开了桌面应用
  2760. U.MD.D.click(this, obj);
  2761. }, [_x010503StudentDeskIconInfo[i]]),
  2762. "onclick": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_x010503StudentDeskIconInfo[i]])
  2766. }, _frag); //
  2767. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2768. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2769. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2770. }
  2771. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2772. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2773. _content = $$("div", {
  2774. className: "U_MD_D_KO",
  2775. "onmousedown": U.UF.C.closure(function (obj) {
  2776. //防止拖动图标即打开了桌面应用
  2777. U.MD.D.click(this, obj);
  2778. }, [_x010504StudentDeskIconInfo[i]]),
  2779. "onclick": U.UF.C.closure(function (obj) {
  2780. //防止拖动图标即打开了桌面应用
  2781. U.MD.D.click(this, obj);
  2782. }, [_x010504StudentDeskIconInfo[i]])
  2783. }, _frag); //
  2784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2787. }
  2788. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2789. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2790. _content = $$("div", {
  2791. className: "U_MD_D_KO",
  2792. "onmousedown": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_x010505StudentDeskIconInfo[i]]),
  2796. "onclick": U.UF.C.closure(function (obj) {
  2797. //防止拖动图标即打开了桌面应用
  2798. U.MD.D.click(this, obj);
  2799. }, [_x010505StudentDeskIconInfo[i]])
  2800. }, _frag); //
  2801. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2802. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2803. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2804. }
  2805. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2806. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2807. _content = $$("div", {
  2808. className: "U_MD_D_KO",
  2809. "onmousedown": U.UF.C.closure(function (obj) {
  2810. //防止拖动图标即打开了桌面应用
  2811. U.MD.D.click(this, obj);
  2812. }, [_x010404StudentDeskIconInfo[i]]),
  2813. "onclick": U.UF.C.closure(function (obj) {
  2814. //防止拖动图标即打开了桌面应用
  2815. U.MD.D.click(this, obj);
  2816. }, [_x010404StudentDeskIconInfo[i]])
  2817. }, _frag); //
  2818. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2819. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2820. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2821. }
  2822. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2823. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2824. _content = $$("div", {
  2825. className: "U_MD_D_KO",
  2826. "onmousedown": U.UF.C.closure(function (obj) {
  2827. //防止拖动图标即打开了桌面应用
  2828. U.MD.D.click(this, obj);
  2829. }, [_x010204StudentDeskIconInfo[i]]),
  2830. "onclick": U.UF.C.closure(function (obj) {
  2831. //防止拖动图标即打开了桌面应用
  2832. U.MD.D.click(this, obj);
  2833. }, [_x010204StudentDeskIconInfo[i]])
  2834. }, _frag); //
  2835. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2836. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2837. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2838. }
  2839. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2840. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2841. _content = $$("div", {
  2842. className: "U_MD_D_KO",
  2843. "onmousedown": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_x320101StudentDeskIconInfo[i]]),
  2847. "onclick": U.UF.C.closure(function (obj) {
  2848. //防止拖动图标即打开了桌面应用
  2849. U.MD.D.click(this, obj);
  2850. }, [_x320101StudentDeskIconInfo[i]])
  2851. }, _frag); //
  2852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2855. }
  2856. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2857. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2858. _content = $$("div", {
  2859. className: "U_MD_D_KO",
  2860. "onmousedown": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_trailStudentDeskIconInfo[i]]),
  2864. "onclick": U.UF.C.closure(function (obj) {
  2865. //防止拖动图标即打开了桌面应用
  2866. U.MD.D.click(this, obj);
  2867. }, [_trailStudentDeskIconInfo[i]])
  2868. }, _frag); //
  2869. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2870. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2871. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2872. }
  2873. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2874. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2875. _content = $$("div", {
  2876. className: "U_MD_D_KO",
  2877. "onmousedown": U.UF.C.closure(function (obj) {
  2878. //防止拖动图标即打开了桌面应用
  2879. U.MD.D.click(this, obj);
  2880. }, [_trialStudentDeskIconInfo[i]]),
  2881. "onclick": U.UF.C.closure(function (obj) {
  2882. //防止拖动图标即打开了桌面应用
  2883. U.MD.D.click(this, obj);
  2884. }, [_trialStudentDeskIconInfo[i]])
  2885. }, _frag); //
  2886. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2887. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2888. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2889. }
  2890. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2891. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2892. _content = $$("div", {
  2893. className: "U_MD_D_KO",
  2894. "onmousedown": U.UF.C.closure(function (obj) {
  2895. //防止拖动图标即打开了桌面应用
  2896. U.MD.D.click(this, obj);
  2897. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2898. "onclick": U.UF.C.closure(function (obj) {
  2899. //防止拖动图标即打开了桌面应用
  2900. U.MD.D.click(this, obj);
  2901. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2902. }, _frag); //
  2903. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2904. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2905. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2906. }
  2907. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2908. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2909. _content = $$("div", {
  2910. className: "U_MD_D_KO",
  2911. "onmousedown": U.UF.C.closure(function (obj) {
  2912. //防止拖动图标即打开了桌面应用
  2913. U.MD.D.click(this, obj);
  2914. }, [_szsyStudentDeskIconInfo[i]]),
  2915. "onclick": U.UF.C.closure(function (obj) {
  2916. //防止拖动图标即打开了桌面应用
  2917. U.MD.D.click(this, obj);
  2918. }, [_szsyStudentDeskIconInfo[i]])
  2919. }, _frag); //
  2920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2923. }
  2924. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  2925. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  2926. _content = $$("div", {
  2927. className: "U_MD_D_KO",
  2928. "onmousedown": U.UF.C.closure(function (obj) {
  2929. //防止拖动图标即打开了桌面应用
  2930. U.MD.D.click(this, obj);
  2931. }, [_demoCocoStudentDeskIconInfo[i]]),
  2932. "onclick": U.UF.C.closure(function (obj) {
  2933. //防止拖动图标即打开了桌面应用
  2934. U.MD.D.click(this, obj);
  2935. }, [_demoCocoStudentDeskIconInfo[i]])
  2936. }, _frag); //
  2937. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2938. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  2939. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  2940. }
  2941. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2942. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2943. _content = $$("div", {
  2944. className: "U_MD_D_KO",
  2945. "onmousedown": U.UF.C.closure(function (obj) {
  2946. //防止拖动图标即打开了桌面应用
  2947. U.MD.D.click(this, obj);
  2948. }, [_x010608StudentDeskIconInfo[i]]),
  2949. "onclick": U.UF.C.closure(function (obj) {
  2950. //防止拖动图标即打开了桌面应用
  2951. U.MD.D.click(this, obj);
  2952. }, [_x010608StudentDeskIconInfo[i]])
  2953. }, _frag); //
  2954. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2955. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2956. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2957. }
  2958. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2959. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_x010611StudentDeskIconInfo[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_x010611StudentDeskIconInfo[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2974. }
  2975. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2976. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2977. _content = $$("div", {
  2978. className: "U_MD_D_KO",
  2979. "onmousedown": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_x010612StudentDeskIconInfo[i]]),
  2983. "onclick": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_x010612StudentDeskIconInfo[i]])
  2987. }, _frag); //
  2988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2991. }
  2992. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2993. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2994. _content = $$("div", {
  2995. className: "U_MD_D_KO",
  2996. "onmousedown": U.UF.C.closure(function (obj) {
  2997. //防止拖动图标即打开了桌面应用
  2998. U.MD.D.click(this, obj);
  2999. }, [_tianyuantudentDeskIconInfo[i]]),
  3000. "onclick": U.UF.C.closure(function (obj) {
  3001. //防止拖动图标即打开了桌面应用
  3002. U.MD.D.click(this, obj);
  3003. }, [_tianyuantudentDeskIconInfo[i]])
  3004. }, _frag); //
  3005. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3006. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3007. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3008. }
  3009. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3010. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_siesStudentDeskIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_siesStudentDeskIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3027. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3028. _content = $$("div", {
  3029. className: "U_MD_D_KO",
  3030. "onmousedown": U.UF.C.closure(function (obj) {
  3031. //防止拖动图标即打开了桌面应用
  3032. U.MD.D.click(this, obj);
  3033. }, [_guzmsStudentDeskIconInfo[i]]),
  3034. "onclick": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_guzmsStudentDeskIconInfo[i]])
  3038. }, _frag); //
  3039. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3040. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3041. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3042. }
  3043. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3044. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3045. _content = $$("div", {
  3046. className: "U_MD_D_KO",
  3047. "onmousedown": U.UF.C.closure(function (obj) {
  3048. //防止拖动图标即打开了桌面应用
  3049. U.MD.D.click(this, obj);
  3050. }, [_hkStudentDeskIconInfo[i]]),
  3051. "onclick": U.UF.C.closure(function (obj) {
  3052. //防止拖动图标即打开了桌面应用
  3053. U.MD.D.click(this, obj);
  3054. }, [_hkStudentDeskIconInfo[i]])
  3055. }, _frag); //
  3056. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3057. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3058. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3059. }
  3060. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3061. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3062. _content = $$("div", {
  3063. className: "U_MD_D_KO",
  3064. "onmousedown": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_tycyStudentDeskIconInfo[i]]),
  3068. "onclick": U.UF.C.closure(function (obj) {
  3069. //防止拖动图标即打开了桌面应用
  3070. U.MD.D.click(this, obj);
  3071. }, [_tycyStudentDeskIconInfo[i]])
  3072. }, _frag); //
  3073. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3074. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3075. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3076. }
  3077. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3078. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3079. _content = $$("div", {
  3080. className: "U_MD_D_KO",
  3081. "onmousedown": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_ckcpsStudentDeskIconInfo[i]]),
  3085. "onclick": U.UF.C.closure(function (obj) {
  3086. //防止拖动图标即打开了桌面应用
  3087. U.MD.D.click(this, obj);
  3088. }, [_ckcpsStudentDeskIconInfo[i]])
  3089. }, _frag); //
  3090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3093. }
  3094. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3095. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3096. _content = $$("div", {
  3097. className: "U_MD_D_KO",
  3098. "onmousedown": U.UF.C.closure(function (obj) {
  3099. //防止拖动图标即打开了桌面应用
  3100. U.MD.D.click(this, obj);
  3101. }, [_hkaceStudentDeskIconInfo[i]]),
  3102. "onclick": U.UF.C.closure(function (obj) {
  3103. //防止拖动图标即打开了桌面应用
  3104. U.MD.D.click(this, obj);
  3105. }, [_hkaceStudentDeskIconInfo[i]])
  3106. }, _frag); //
  3107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3110. }
  3111. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3112. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3113. _content = $$("div", {
  3114. className: "U_MD_D_KO",
  3115. "onmousedown": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3119. "onclick": U.UF.C.closure(function (obj) {
  3120. //防止拖动图标即打开了桌面应用
  3121. U.MD.D.click(this, obj);
  3122. }, [_BSDNSstudentDesktopIconInfo[i]])
  3123. }, _frag); //
  3124. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3125. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3126. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3127. }
  3128. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3129. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3130. _content = $$("div", {
  3131. className: "U_MD_D_KO",
  3132. "onmousedown": U.UF.C.closure(function (obj) {
  3133. //防止拖动图标即打开了桌面应用
  3134. U.MD.D.click(this, obj);
  3135. }, [_cocobizStudentDeskIconInfo[i]]),
  3136. "onclick": U.UF.C.closure(function (obj) {
  3137. //防止拖动图标即打开了桌面应用
  3138. U.MD.D.click(this, obj);
  3139. }, [_cocobizStudentDeskIconInfo[i]])
  3140. }, _frag); //
  3141. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3142. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3143. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3144. }
  3145. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3146. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3147. _content = $$("div", {
  3148. className: "U_MD_D_KO",
  3149. "onmousedown": U.UF.C.closure(function (obj) {
  3150. //防止拖动图标即打开了桌面应用
  3151. U.MD.D.click(this, obj);
  3152. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3153. "onclick": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_xxzjkyStudentDeskIconInfo[i]])
  3157. }, _frag); //
  3158. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3159. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3160. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3161. }
  3162. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3163. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3164. _content = $$("div", {
  3165. className: "U_MD_D_KO",
  3166. "onmousedown": U.UF.C.closure(function (obj) {
  3167. //防止拖动图标即打开了桌面应用
  3168. U.MD.D.click(this, obj);
  3169. }, [_studentDesktopIconInfo[i]]),
  3170. "onclick": U.UF.C.closure(function (obj) {
  3171. //防止拖动图标即打开了桌面应用
  3172. U.MD.D.click(this, obj);
  3173. }, [_studentDesktopIconInfo[i]])
  3174. }, _frag); //
  3175. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3176. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3177. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3178. }
  3179. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3180. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3181. _content = $$("div", {
  3182. className: "U_MD_D_KO",
  3183. "onmousedown": U.UF.C.closure(function (obj) {
  3184. //防止拖动图标即打开了桌面应用
  3185. U.MD.D.click(this, obj);
  3186. }, [_tcStudentDeskIconInfo[i]]),
  3187. "onclick": U.UF.C.closure(function (obj) {
  3188. //防止拖动图标即打开了桌面应用
  3189. U.MD.D.click(this, obj);
  3190. }, [_tcStudentDeskIconInfo[i]])
  3191. }, _frag); //
  3192. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3193. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3194. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3195. }
  3196. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3197. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3198. _content = $$("div", {
  3199. className: "U_MD_D_KO",
  3200. "onmousedown": U.UF.C.closure(function (obj) {
  3201. //防止拖动图标即打开了桌面应用
  3202. U.MD.D.click(this, obj);
  3203. }, [_szscStudentDeskIconInfo[i]]),
  3204. "onclick": U.UF.C.closure(function (obj) {
  3205. //防止拖动图标即打开了桌面应用
  3206. U.MD.D.click(this, obj);
  3207. }, [_szscStudentDeskIconInfo[i]])
  3208. }, _frag); //
  3209. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3210. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3211. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3212. }
  3213. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3214. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3215. _content = $$("div", {
  3216. className: "U_MD_D_KO",
  3217. "onmousedown": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_studentDesktopIconInfo3[i]]),
  3221. "onclick": U.UF.C.closure(function (obj) {
  3222. //防止拖动图标即打开了桌面应用
  3223. U.MD.D.click(this, obj);
  3224. }, [_studentDesktopIconInfo3[i]])
  3225. }, _frag); //
  3226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3229. }
  3230. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3231. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3232. _content = $$("div", {
  3233. className: "U_MD_D_KO",
  3234. "onmousedown": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_studentDesktopIconInfo2[i]]),
  3238. "onclick": U.UF.C.closure(function (obj) {
  3239. //防止拖动图标即打开了桌面应用
  3240. U.MD.D.click(this, obj);
  3241. }, [_studentDesktopIconInfo2[i]])
  3242. }, _frag); //
  3243. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3244. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3245. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3246. }
  3247. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3248. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3249. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3250. continue
  3251. }
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_wanketeacherDesktopIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_wanketeacherDesktopIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3268. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_wankeAdminDesktopIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_wankeAdminDesktopIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3285. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3287. continue
  3288. }
  3289. _content = $$("div", {
  3290. className: "U_MD_D_KO",
  3291. "onmousedown": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_scnuaiTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3305. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3306. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_BSDNSteacherDesktopIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3325. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3326. _content = $$("div", {
  3327. className: "U_MD_D_KO",
  3328. "onmousedown": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_scnuaiAdminDeskIconInfo[i]]),
  3332. "onclick": U.UF.C.closure(function (obj) {
  3333. //防止拖动图标即打开了桌面应用
  3334. U.MD.D.click(this, obj);
  3335. }, [_scnuaiAdminDeskIconInfo[i]])
  3336. }, _frag); //
  3337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3340. }
  3341. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3342. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3343. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3344. continue
  3345. }
  3346. _content = $$("div", {
  3347. className: "U_MD_D_KO",
  3348. "onmousedown": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_jccssylTeacherDeskIconInfo[i]]),
  3352. "onclick": U.UF.C.closure(function (obj) {
  3353. //防止拖动图标即打开了桌面应用
  3354. U.MD.D.click(this, obj);
  3355. }, [_jccssylTeacherDeskIconInfo[i]])
  3356. }, _frag); //
  3357. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3358. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3359. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3360. }
  3361. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3362. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3363. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3364. continue
  3365. }
  3366. _content = $$("div", {
  3367. className: "U_MD_D_KO",
  3368. "onmousedown": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_caleTeacherDeskIconInfo[i]]),
  3372. "onclick": U.UF.C.closure(function (obj) {
  3373. //防止拖动图标即打开了桌面应用
  3374. U.MD.D.click(this, obj);
  3375. }, [_caleTeacherDeskIconInfo[i]])
  3376. }, _frag); //
  3377. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3378. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3379. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3380. }
  3381. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3382. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3383. _content = $$("div", {
  3384. className: "U_MD_D_KO",
  3385. "onmousedown": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_tpcOrganizerDeskIconInfo[i]]),
  3389. "onclick": U.UF.C.closure(function (obj) {
  3390. //防止拖动图标即打开了桌面应用
  3391. U.MD.D.click(this, obj);
  3392. }, [_tpcOrganizerDeskIconInfo[i]])
  3393. }, _frag); //
  3394. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3395. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3396. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3397. }
  3398. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3399. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3400. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3401. continue
  3402. }
  3403. _content = $$("div", {
  3404. className: "U_MD_D_KO",
  3405. "onmousedown": U.UF.C.closure(function (obj) {
  3406. //防止拖动图标即打开了桌面应用
  3407. U.MD.D.click(this, obj);
  3408. }, [_tpcTeacherDeskIconInfo[i]]),
  3409. "onclick": U.UF.C.closure(function (obj) {
  3410. //防止拖动图标即打开了桌面应用
  3411. U.MD.D.click(this, obj);
  3412. }, [_tpcTeacherDeskIconInfo[i]])
  3413. }, _frag); //
  3414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3417. }
  3418. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3419. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3420. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3421. continue
  3422. }
  3423. _content = $$("div", {
  3424. className: "U_MD_D_KO",
  3425. "onmousedown": U.UF.C.closure(function (obj) {
  3426. //防止拖动图标即打开了桌面应用
  3427. U.MD.D.click(this, obj);
  3428. }, [_teacherDesktopIconInfo2[i]]),
  3429. "onclick": U.UF.C.closure(function (obj) {
  3430. //防止拖动图标即打开了桌面应用
  3431. U.MD.D.click(this, obj);
  3432. }, [_teacherDesktopIconInfo2[i]])
  3433. }, _frag); //
  3434. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3435. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3436. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3437. }
  3438. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3439. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3440. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3441. continue
  3442. }
  3443. _content = $$("div", {
  3444. className: "U_MD_D_KO",
  3445. "onmousedown": U.UF.C.closure(function (obj) {
  3446. //防止拖动图标即打开了桌面应用
  3447. U.MD.D.click(this, obj);
  3448. }, [_thuioeTeacherDeskIconInfo[i]]),
  3449. "onclick": U.UF.C.closure(function (obj) {
  3450. //防止拖动图标即打开了桌面应用
  3451. U.MD.D.click(this, obj);
  3452. }, [_thuioeTeacherDeskIconInfo[i]])
  3453. }, _frag); //
  3454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3457. }
  3458. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3459. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3460. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3461. continue
  3462. }
  3463. _content = $$("div", {
  3464. className: "U_MD_D_KO",
  3465. "onmousedown": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_lotechTeacherDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_lotechTeacherDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3477. }//
  3478. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3479. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3480. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3481. continue
  3482. }
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3497. }
  3498. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3499. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3500. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3501. continue
  3502. }
  3503. _content = $$("div", {
  3504. className: "U_MD_D_KO",
  3505. "onmousedown": U.UF.C.closure(function (obj) {
  3506. //防止拖动图标即打开了桌面应用
  3507. U.MD.D.click(this, obj);
  3508. }, [_siesTeacherDeskIconInfo[i]]),
  3509. "onclick": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_siesTeacherDeskIconInfo[i]])
  3513. }, _frag); //
  3514. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3515. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3516. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3517. }
  3518. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3519. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3520. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3521. continue
  3522. }
  3523. _content = $$("div", {
  3524. className: "U_MD_D_KO",
  3525. "onmousedown": U.UF.C.closure(function (obj) {
  3526. //防止拖动图标即打开了桌面应用
  3527. U.MD.D.click(this, obj);
  3528. }, [_guzmsTeacherDeskIconInfo[i]]),
  3529. "onclick": U.UF.C.closure(function (obj) {
  3530. //防止拖动图标即打开了桌面应用
  3531. U.MD.D.click(this, obj);
  3532. }, [_guzmsTeacherDeskIconInfo[i]])
  3533. }, _frag); //
  3534. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3535. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3536. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3537. }
  3538. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3539. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3540. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3541. continue
  3542. }
  3543. _content = $$("div", {
  3544. className: "U_MD_D_KO",
  3545. "onmousedown": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_longhuaTeacherDeskIconInfo[i]]),
  3549. "onclick": U.UF.C.closure(function (obj) {
  3550. //防止拖动图标即打开了桌面应用
  3551. U.MD.D.click(this, obj);
  3552. }, [_longhuaTeacherDeskIconInfo[i]])
  3553. }, _frag); //
  3554. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3555. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3556. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3557. }
  3558. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3559. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3560. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3561. continue
  3562. }
  3563. _content = $$("div", {
  3564. className: "U_MD_D_KO",
  3565. "onmousedown": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_ytyTeacherDeskIconInfo[i]]),
  3569. "onclick": U.UF.C.closure(function (obj) {
  3570. //防止拖动图标即打开了桌面应用
  3571. U.MD.D.click(this, obj);
  3572. }, [_ytyTeacherDeskIconInfo[i]])
  3573. }, _frag); //
  3574. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3575. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3576. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3577. }
  3578. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3579. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3580. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3581. continue
  3582. }
  3583. _content = $$("div", {
  3584. className: "U_MD_D_KO",
  3585. "onmousedown": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_yunhaiTeacherDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3597. } //_hkStudentDeskIconInfo
  3598. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3599. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3601. continue
  3602. }
  3603. _content = $$("div", {
  3604. className: "U_MD_D_KO",
  3605. "onmousedown": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. }
  3618. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3619. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3620. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3621. continue
  3622. }
  3623. _content = $$("div", {
  3624. className: "U_MD_D_KO",
  3625. "onmousedown": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_ricohTeacherDeskIconInfo[i]]),
  3629. "onclick": U.UF.C.closure(function (obj) {
  3630. //防止拖动图标即打开了桌面应用
  3631. U.MD.D.click(this, obj);
  3632. }, [_ricohTeacherDeskIconInfo[i]])
  3633. }, _frag); //
  3634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3637. }
  3638. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3639. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3640. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3641. continue
  3642. }
  3643. _content = $$("div", {
  3644. className: "U_MD_D_KO",
  3645. "onmousedown": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_hkTeacherDeskIconInfo[i]]),
  3649. "onclick": U.UF.C.closure(function (obj) {
  3650. //防止拖动图标即打开了桌面应用
  3651. U.MD.D.click(this, obj);
  3652. }, [_hkTeacherDeskIconInfo[i]])
  3653. }, _frag); //
  3654. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3655. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3656. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3657. }
  3658. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3659. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3660. if(_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3661. continue
  3662. }
  3663. _content = $$("div", {
  3664. className: "U_MD_D_KO",
  3665. "onmousedown": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_tycyTeacherDeskIconInfo[i]]),
  3669. "onclick": U.UF.C.closure(function (obj) {
  3670. //防止拖动图标即打开了桌面应用
  3671. U.MD.D.click(this, obj);
  3672. }, [_tycyTeacherDeskIconInfo[i]])
  3673. }, _frag); //
  3674. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3675. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3676. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3677. }
  3678. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3679. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3680. if(_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3681. continue
  3682. }
  3683. _content = $$("div", {
  3684. className: "U_MD_D_KO",
  3685. "onmousedown": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3689. "onclick": U.UF.C.closure(function (obj) {
  3690. //防止拖动图标即打开了桌面应用
  3691. U.MD.D.click(this, obj);
  3692. }, [_ckcpsTeacherDeskIconInfo[i]])
  3693. }, _frag); //
  3694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3697. }
  3698. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3699. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3700. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3701. continue
  3702. }
  3703. _content = $$("div", {
  3704. className: "U_MD_D_KO",
  3705. "onmousedown": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_hkaceTeacherDeskIconInfo[i]]),
  3709. "onclick": U.UF.C.closure(function (obj) {
  3710. //防止拖动图标即打开了桌面应用
  3711. U.MD.D.click(this, obj);
  3712. }, [_hkaceTeacherDeskIconInfo[i]])
  3713. }, _frag); //
  3714. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3715. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3716. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3717. }
  3718. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3719. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3720. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3721. continue
  3722. }
  3723. _content = $$("div", {
  3724. className: "U_MD_D_KO",
  3725. "onmousedown": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_cocobizTeacherDeskIconInfo[i]]),
  3729. "onclick": U.UF.C.closure(function (obj) {
  3730. //防止拖动图标即打开了桌面应用
  3731. U.MD.D.click(this, obj);
  3732. }, [_cocobizTeacherDeskIconInfo[i]])
  3733. }, _frag); //
  3734. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3735. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3736. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3737. }
  3738. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3739. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3740. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3741. continue
  3742. }
  3743. _content = $$("div", {
  3744. className: "U_MD_D_KO",
  3745. "onmousedown": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3749. "onclick": U.UF.C.closure(function (obj) {
  3750. //防止拖动图标即打开了桌面应用
  3751. U.MD.D.click(this, obj);
  3752. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3753. }, _frag); //
  3754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3757. }
  3758. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3759. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3760. _content = $$("div", {
  3761. className: "U_MD_D_KO",
  3762. "onmousedown": U.UF.C.closure(function (obj) {
  3763. //防止拖动图标即打开了桌面应用
  3764. U.MD.D.click(this, obj);
  3765. }, [_gdjgAdminDeskIconInfo[i]]),
  3766. "onclick": U.UF.C.closure(function (obj) {
  3767. //防止拖动图标即打开了桌面应用
  3768. U.MD.D.click(this, obj);
  3769. }, [_gdjgAdminDeskIconInfo[i]])
  3770. }, _frag); //
  3771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3774. }
  3775. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3776. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3777. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3778. continue
  3779. }
  3780. _content = $$("div", {
  3781. className: "U_MD_D_KO",
  3782. "onmousedown": U.UF.C.closure(function (obj) {
  3783. //防止拖动图标即打开了桌面应用
  3784. U.MD.D.click(this, obj);
  3785. }, [_gdjgTeacherDeskIconInfo[i]]),
  3786. "onclick": U.UF.C.closure(function (obj) {
  3787. //防止拖动图标即打开了桌面应用
  3788. U.MD.D.click(this, obj);
  3789. }, [_gdjgTeacherDeskIconInfo[i]])
  3790. }, _frag); //
  3791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3794. }
  3795. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3796. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3797. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3798. continue
  3799. }
  3800. _content = $$("div", {
  3801. className: "U_MD_D_KO",
  3802. "onmousedown": U.UF.C.closure(function (obj) {
  3803. //防止拖动图标即打开了桌面应用
  3804. U.MD.D.click(this, obj);
  3805. }, [_szherTeacherDeskIconInfo[i]]),
  3806. "onclick": U.UF.C.closure(function (obj) {
  3807. //防止拖动图标即打开了桌面应用
  3808. U.MD.D.click(this, obj);
  3809. }, [_szherTeacherDeskIconInfo[i]])
  3810. }, _frag); //
  3811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3814. }
  3815. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3816. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3817. _content = $$("div", {
  3818. className: "U_MD_D_KO",
  3819. "onmousedown": U.UF.C.closure(function (obj) {
  3820. //防止拖动图标即打开了桌面应用
  3821. U.MD.D.click(this, obj);
  3822. }, [_heyuannAdminDeskIconInfo[i]]),
  3823. "onclick": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_heyuannAdminDeskIconInfo[i]])
  3827. }, _frag); //
  3828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3831. }
  3832. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3833. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3834. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3835. continue
  3836. }
  3837. _content = $$("div", {
  3838. className: "U_MD_D_KO",
  3839. "onmousedown": U.UF.C.closure(function (obj) {
  3840. //防止拖动图标即打开了桌面应用
  3841. U.MD.D.click(this, obj);
  3842. }, [_heyuanTeacherDeskIconInfo[i]]),
  3843. "onclick": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_heyuanTeacherDeskIconInfo[i]])
  3847. }, _frag); //
  3848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3851. } //
  3852. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3853. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3854. _content = $$("div", {
  3855. className: "U_MD_D_KO",
  3856. "onmousedown": U.UF.C.closure(function (obj) {
  3857. //防止拖动图标即打开了桌面应用
  3858. U.MD.D.click(this, obj);
  3859. }, [_dseiAdminDeskIconInfo[i]]),
  3860. "onclick": U.UF.C.closure(function (obj) {
  3861. //防止拖动图标即打开了桌面应用
  3862. U.MD.D.click(this, obj);
  3863. }, [_dseiAdminDeskIconInfo[i]])
  3864. }, _frag); //
  3865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3868. }
  3869. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3870. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3871. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3872. continue
  3873. }
  3874. _content = $$("div", {
  3875. className: "U_MD_D_KO",
  3876. "onmousedown": U.UF.C.closure(function (obj) {
  3877. //防止拖动图标即打开了桌面应用
  3878. U.MD.D.click(this, obj);
  3879. }, [_dseiTeacherDeskIconInfo[i]]),
  3880. "onclick": U.UF.C.closure(function (obj) {
  3881. //防止拖动图标即打开了桌面应用
  3882. U.MD.D.click(this, obj);
  3883. }, [_dseiTeacherDeskIconInfo[i]])
  3884. }, _frag); //
  3885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3888. } //
  3889. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3890. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3891. _content = $$("div", {
  3892. className: "U_MD_D_KO",
  3893. "onmousedown": U.UF.C.closure(function (obj) {
  3894. //防止拖动图标即打开了桌面应用
  3895. U.MD.D.click(this, obj);
  3896. }, [_chjyjAdminDeskIconInfo[i]]),
  3897. "onclick": U.UF.C.closure(function (obj) {
  3898. //防止拖动图标即打开了桌面应用
  3899. U.MD.D.click(this, obj);
  3900. }, [_chjyjAdminDeskIconInfo[i]])
  3901. }, _frag); //
  3902. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3903. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3904. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3905. }//
  3906. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3907. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3908. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3909. continue
  3910. }
  3911. _content = $$("div", {
  3912. className: "U_MD_D_KO",
  3913. "onmousedown": U.UF.C.closure(function (obj) {
  3914. //防止拖动图标即打开了桌面应用
  3915. U.MD.D.click(this, obj);
  3916. }, [_chjyjTeacherDeskIconInfo[i]]),
  3917. "onclick": U.UF.C.closure(function (obj) {
  3918. //防止拖动图标即打开了桌面应用
  3919. U.MD.D.click(this, obj);
  3920. }, [_chjyjTeacherDeskIconInfo[i]])
  3921. }, _frag); //
  3922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3925. }
  3926. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3927. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3928. _content = $$("div", {
  3929. className: "U_MD_D_KO",
  3930. "onmousedown": U.UF.C.closure(function (obj) {
  3931. //防止拖动图标即打开了桌面应用
  3932. U.MD.D.click(this, obj);
  3933. }, [_szjkyAdminDeskIconInfo[i]]),
  3934. "onclick": U.UF.C.closure(function (obj) {
  3935. //防止拖动图标即打开了桌面应用
  3936. U.MD.D.click(this, obj);
  3937. }, [_szjkyAdminDeskIconInfo[i]])
  3938. }, _frag); //
  3939. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3940. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3941. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3942. }//
  3943. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3944. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3945. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3946. continue
  3947. }
  3948. _content = $$("div", {
  3949. className: "U_MD_D_KO",
  3950. "onmousedown": U.UF.C.closure(function (obj) {
  3951. //防止拖动图标即打开了桌面应用
  3952. U.MD.D.click(this, obj);
  3953. }, [_szjkyTeacherDeskIconInfo[i]]),
  3954. "onclick": U.UF.C.closure(function (obj) {
  3955. //防止拖动图标即打开了桌面应用
  3956. U.MD.D.click(this, obj);
  3957. }, [_szjkyTeacherDeskIconInfo[i]])
  3958. }, _frag); //
  3959. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3960. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3961. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3962. }
  3963. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3964. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3965. _content = $$("div", {
  3966. className: "U_MD_D_KO",
  3967. "onmousedown": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_x020201AdminDeskIconInfo[i]]),
  3971. "onclick": U.UF.C.closure(function (obj) {
  3972. //防止拖动图标即打开了桌面应用
  3973. U.MD.D.click(this, obj);
  3974. }, [_x020201AdminDeskIconInfo[i]])
  3975. }, _frag); //
  3976. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3977. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3978. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3979. }//
  3980. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3981. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3982. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3983. continue
  3984. }
  3985. _content = $$("div", {
  3986. className: "U_MD_D_KO",
  3987. "onmousedown": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x020201TeacherDeskIconInfo[i]]),
  3991. "onclick": U.UF.C.closure(function (obj) {
  3992. //防止拖动图标即打开了桌面应用
  3993. U.MD.D.click(this, obj);
  3994. }, [_x020201TeacherDeskIconInfo[i]])
  3995. }, _frag); //
  3996. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3997. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3998. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3999. }
  4000. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4001. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4002. _content = $$("div", {
  4003. className: "U_MD_D_KO",
  4004. "onmousedown": U.UF.C.closure(function (obj) {
  4005. //防止拖动图标即打开了桌面应用
  4006. U.MD.D.click(this, obj);
  4007. }, [_SCNUETAdminDeskIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_SCNUETAdminDeskIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4016. }//
  4017. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4018. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4019. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4020. continue
  4021. }
  4022. _content = $$("div", {
  4023. className: "U_MD_D_KO",
  4024. "onmousedown": U.UF.C.closure(function (obj) {
  4025. //防止拖动图标即打开了桌面应用
  4026. U.MD.D.click(this, obj);
  4027. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_SCNUETTeacherDeskIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4038. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4039. _content = $$("div", {
  4040. className: "U_MD_D_KO",
  4041. "onmousedown": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_futianAdminDeskIconInfo[i]]),
  4045. "onclick": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_futianAdminDeskIconInfo[i]])
  4049. }, _frag); //
  4050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4053. }
  4054. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4055. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4056. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4057. continue
  4058. }
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_futianTeacherDeskIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_futianTeacherDeskIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4075. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4076. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  4077. continue
  4078. }
  4079. _content = $$("div", {
  4080. className: "U_MD_D_KO",
  4081. "onmousedown": U.UF.C.closure(function (obj) {
  4082. //防止拖动图标即打开了桌面应用
  4083. U.MD.D.click(this, obj);
  4084. }, [_MingdeTeacherDeskIcon[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_MingdeTeacherDeskIcon[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4095. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4096. _content = $$("div", {
  4097. className: "U_MD_D_KO",
  4098. "onmousedown": U.UF.C.closure(function (obj) {
  4099. //防止拖动图标即打开了桌面应用
  4100. U.MD.D.click(this, obj);
  4101. }, [_lhsAdminDesktopIconInfo[i]]),
  4102. "onclick": U.UF.C.closure(function (obj) {
  4103. //防止拖动图标即打开了桌面应用
  4104. U.MD.D.click(this, obj);
  4105. }, [_lhsAdminDesktopIconInfo[i]])
  4106. }, _frag); //
  4107. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4108. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4109. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4110. }
  4111. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4112. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4113. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4114. continue
  4115. }
  4116. _content = $$("div", {
  4117. className: "U_MD_D_KO",
  4118. "onmousedown": U.UF.C.closure(function (obj) {
  4119. //防止拖动图标即打开了桌面应用
  4120. U.MD.D.click(this, obj);
  4121. }, [_lhsteacherDesktopIconInfo[i]]),
  4122. "onclick": U.UF.C.closure(function (obj) {
  4123. //防止拖动图标即打开了桌面应用
  4124. U.MD.D.click(this, obj);
  4125. }, [_lhsteacherDesktopIconInfo[i]])
  4126. }, _frag); //
  4127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4130. }
  4131. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4132. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4133. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  4134. continue
  4135. }
  4136. _content = $$("div", {
  4137. className: "U_MD_D_KO",
  4138. "onmousedown": U.UF.C.closure(function (obj) {
  4139. //防止拖动图标即打开了桌面应用
  4140. U.MD.D.click(this, obj);
  4141. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4142. "onclick": U.UF.C.closure(function (obj) {
  4143. //防止拖动图标即打开了桌面应用
  4144. U.MD.D.click(this, obj);
  4145. }, [_zhoujiateacherDesktopIconInfo[i]])
  4146. }, _frag); //
  4147. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4148. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4149. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4150. }
  4151. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4152. for (i = 0; i < _hanDeskIcon.length; i++) {
  4153. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  4154. continue
  4155. }
  4156. _content = $$("div", {
  4157. className: "U_MD_D_KO",
  4158. "onmousedown": U.UF.C.closure(function (obj) {
  4159. //防止拖动图标即打开了桌面应用
  4160. U.MD.D.click(this, obj);
  4161. }, [_hanDeskIcon[i]]),
  4162. "onclick": U.UF.C.closure(function (obj) {
  4163. //防止拖动图标即打开了桌面应用
  4164. U.MD.D.click(this, obj);
  4165. }, [_hanDeskIcon[i]])
  4166. }, _frag); //
  4167. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4168. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4169. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4170. }
  4171. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4172. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4173. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  4174. continue
  4175. }
  4176. _content = $$("div", {
  4177. className: "U_MD_D_KO",
  4178. "onmousedown": U.UF.C.closure(function (obj) {
  4179. //防止拖动图标即打开了桌面应用
  4180. U.MD.D.click(this, obj);
  4181. }, [_orgStemDeskIcon[i]]),
  4182. "onclick": U.UF.C.closure(function (obj) {
  4183. //防止拖动图标即打开了桌面应用
  4184. U.MD.D.click(this, obj);
  4185. }, [_orgStemDeskIcon[i]])
  4186. }, _frag); //
  4187. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4188. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4189. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4190. }
  4191. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4192. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4193. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  4194. continue
  4195. }
  4196. _content = $$("div", {
  4197. className: "U_MD_D_KO",
  4198. "onmousedown": U.UF.C.closure(function (obj) {
  4199. //防止拖动图标即打开了桌面应用
  4200. U.MD.D.click(this, obj);
  4201. }, [_szulsDeskIcon[i]]),
  4202. "onclick": U.UF.C.closure(function (obj) {
  4203. //防止拖动图标即打开了桌面应用
  4204. U.MD.D.click(this, obj);
  4205. }, [_szulsDeskIcon[i]])
  4206. }, _frag); //
  4207. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4208. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4209. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4210. }
  4211. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4212. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4213. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  4214. continue
  4215. }
  4216. _content = $$("div", {
  4217. className: "U_MD_D_KO",
  4218. "onmousedown": U.UF.C.closure(function (obj) {
  4219. //防止拖动图标即打开了桌面应用
  4220. U.MD.D.click(this, obj);
  4221. }, [_orgDesktopIconInfo[i]]),
  4222. "onclick": U.UF.C.closure(function (obj) {
  4223. //防止拖动图标即打开了桌面应用
  4224. U.MD.D.click(this, obj);
  4225. }, [_orgDesktopIconInfo[i]])
  4226. }, _frag); //
  4227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4230. }
  4231. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4232. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4233. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4234. continue
  4235. }
  4236. _content = $$("div", {
  4237. className: "U_MD_D_KO",
  4238. "onmousedown": U.UF.C.closure(function (obj) {
  4239. //防止拖动图标即打开了桌面应用
  4240. U.MD.D.click(this, obj);
  4241. }, [_schoolDesktopIconInfo[i]]),
  4242. "onclick": U.UF.C.closure(function (obj) {
  4243. //防止拖动图标即打开了桌面应用
  4244. U.MD.D.click(this, obj);
  4245. }, [_schoolDesktopIconInfo[i]])
  4246. }, _frag); //
  4247. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4248. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4249. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4250. }
  4251. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4252. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4253. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4254. continue
  4255. }
  4256. _content = $$("div", {
  4257. className: "U_MD_D_KO",
  4258. "onmousedown": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_GMteacherDesktopIconInfo[i]]),
  4262. "onclick": U.UF.C.closure(function (obj) {
  4263. //防止拖动图标即打开了桌面应用
  4264. U.MD.D.click(this, obj);
  4265. }, [_GMteacherDesktopIconInfo[i]])
  4266. }, _frag); //
  4267. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4268. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4269. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4270. }
  4271. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4272. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4273. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4274. continue
  4275. }
  4276. _content = $$("div", {
  4277. className: "U_MD_D_KO",
  4278. "onmousedown": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_SONGteacherDesktopIconInfo[i]]),
  4282. "onclick": U.UF.C.closure(function (obj) {
  4283. //防止拖动图标即打开了桌面应用
  4284. U.MD.D.click(this, obj);
  4285. }, [_SONGteacherDesktopIconInfo[i]])
  4286. }, _frag); //
  4287. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4288. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4289. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4290. }
  4291. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4292. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4293. _content = $$("div", {
  4294. className: "U_MD_D_KO",
  4295. "onmousedown": U.UF.C.closure(function (obj) {
  4296. //防止拖动图标即打开了桌面应用
  4297. U.MD.D.click(this, obj);
  4298. }, [_GMstudentDesktopIconInfo[i]]),
  4299. "onclick": U.UF.C.closure(function (obj) {
  4300. //防止拖动图标即打开了桌面应用
  4301. U.MD.D.click(this, obj);
  4302. }, [_GMstudentDesktopIconInfo[i]])
  4303. }, _frag); //
  4304. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4305. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4306. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4307. }
  4308. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4309. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4310. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4311. continue
  4312. }
  4313. _content = $$("div", {
  4314. className: "U_MD_D_KO",
  4315. "onmousedown": U.UF.C.closure(function (obj) {
  4316. //防止拖动图标即打开了桌面应用
  4317. U.MD.D.click(this, obj);
  4318. }, [_tcTeacherDeskIconInfo[i]]),
  4319. "onclick": U.UF.C.closure(function (obj) {
  4320. //防止拖动图标即打开了桌面应用
  4321. U.MD.D.click(this, obj);
  4322. }, [_tcTeacherDeskIconInfo[i]])
  4323. }, _frag); //
  4324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4327. }
  4328. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4329. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4330. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4331. continue
  4332. }
  4333. _content = $$("div", {
  4334. className: "U_MD_D_KO",
  4335. "onmousedown": U.UF.C.closure(function (obj) {
  4336. //防止拖动图标即打开了桌面应用
  4337. U.MD.D.click(this, obj);
  4338. }, [_tcOrganizerDeskIconInfo[i]]),
  4339. "onclick": U.UF.C.closure(function (obj) {
  4340. //防止拖动图标即打开了桌面应用
  4341. U.MD.D.click(this, obj);
  4342. }, [_tcOrganizerDeskIconInfo[i]])
  4343. }, _frag); //
  4344. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4345. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4346. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4347. }
  4348. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4349. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4350. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4351. continue
  4352. }
  4353. _content = $$("div", {
  4354. className: "U_MD_D_KO",
  4355. "onmousedown": U.UF.C.closure(function (obj) {
  4356. //防止拖动图标即打开了桌面应用
  4357. U.MD.D.click(this, obj);
  4358. }, [_szscTeacherDeskIconInfo[i]]),
  4359. "onclick": U.UF.C.closure(function (obj) {
  4360. //防止拖动图标即打开了桌面应用
  4361. U.MD.D.click(this, obj);
  4362. }, [_szscTeacherDeskIconInfo[i]])
  4363. }, _frag); //
  4364. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4365. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4366. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4367. }
  4368. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4369. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4370. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4371. continue
  4372. }
  4373. _content = $$("div", {
  4374. className: "U_MD_D_KO",
  4375. "onmousedown": U.UF.C.closure(function (obj) {
  4376. //防止拖动图标即打开了桌面应用
  4377. U.MD.D.click(this, obj);
  4378. }, [_szscOrganizerDeskIconInfo[i]]),
  4379. "onclick": U.UF.C.closure(function (obj) {
  4380. //防止拖动图标即打开了桌面应用
  4381. U.MD.D.click(this, obj);
  4382. }, [_szscOrganizerDeskIconInfo[i]])
  4383. }, _frag); //
  4384. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4385. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4386. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4387. }
  4388. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4389. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4390. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4391. continue
  4392. }
  4393. _content = $$("div", {
  4394. className: "U_MD_D_KO",
  4395. "onmousedown": U.UF.C.closure(function (obj) {
  4396. //防止拖动图标即打开了桌面应用
  4397. U.MD.D.click(this, obj);
  4398. }, [_nsfxTeacherDeskIconInfo[i]]),
  4399. "onclick": U.UF.C.closure(function (obj) {
  4400. //防止拖动图标即打开了桌面应用
  4401. U.MD.D.click(this, obj);
  4402. }, [_nsfxTeacherDeskIconInfo[i]])
  4403. }, _frag); //
  4404. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4405. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4406. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4407. }
  4408. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4409. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4410. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4411. continue
  4412. }
  4413. _content = $$("div", {
  4414. className: "U_MD_D_KO",
  4415. "onmousedown": U.UF.C.closure(function (obj) {
  4416. //防止拖动图标即打开了桌面应用
  4417. U.MD.D.click(this, obj);
  4418. }, [_stiaTeacherDeskIconInfo[i]]),
  4419. "onclick": U.UF.C.closure(function (obj) {
  4420. //防止拖动图标即打开了桌面应用
  4421. U.MD.D.click(this, obj);
  4422. }, [_stiaTeacherDeskIconInfo[i]])
  4423. }, _frag); //
  4424. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4425. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4426. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4427. }
  4428. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4429. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4430. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4431. continue
  4432. }
  4433. _content = $$("div", {
  4434. className: "U_MD_D_KO",
  4435. "onmousedown": U.UF.C.closure(function (obj) {
  4436. //防止拖动图标即打开了桌面应用
  4437. U.MD.D.click(this, obj);
  4438. }, [_szdjgTeacherDeskIconInfo[i]]),
  4439. "onclick": U.UF.C.closure(function (obj) {
  4440. //防止拖动图标即打开了桌面应用
  4441. U.MD.D.click(this, obj);
  4442. }, [_szdjgTeacherDeskIconInfo[i]])
  4443. }, _frag); //
  4444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4447. }
  4448. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4449. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4450. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4451. continue
  4452. }
  4453. _content = $$("div", {
  4454. className: "U_MD_D_KO",
  4455. "onmousedown": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_x010607TeacherDeskIconInfo[i]]),
  4459. "onclick": U.UF.C.closure(function (obj) {
  4460. //防止拖动图标即打开了桌面应用
  4461. U.MD.D.click(this, obj);
  4462. }, [_x010607TeacherDeskIconInfo[i]])
  4463. }, _frag); //
  4464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4467. }
  4468. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4469. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4470. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4471. continue
  4472. }
  4473. _content = $$("div", {
  4474. className: "U_MD_D_KO",
  4475. "onmousedown": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_xhlyTeacherDeskIconInfo[i]]),
  4479. "onclick": U.UF.C.closure(function (obj) {
  4480. //防止拖动图标即打开了桌面应用
  4481. U.MD.D.click(this, obj);
  4482. }, [_xhlyTeacherDeskIconInfo[i]])
  4483. }, _frag); //
  4484. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4485. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4486. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4487. }
  4488. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4489. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4490. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4491. continue
  4492. }
  4493. _content = $$("div", {
  4494. className: "U_MD_D_KO",
  4495. "onmousedown": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4499. "onclick": U.UF.C.closure(function (obj) {
  4500. //防止拖动图标即打开了桌面应用
  4501. U.MD.D.click(this, obj);
  4502. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4503. }, _frag); //
  4504. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4505. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4506. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4507. }
  4508. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4509. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4510. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4511. continue
  4512. }
  4513. _content = $$("div", {
  4514. className: "U_MD_D_KO",
  4515. "onmousedown": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_x010503TeacherDeskIconInfo[i]]),
  4519. "onclick": U.UF.C.closure(function (obj) {
  4520. //防止拖动图标即打开了桌面应用
  4521. U.MD.D.click(this, obj);
  4522. }, [_x010503TeacherDeskIconInfo[i]])
  4523. }, _frag); //
  4524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4527. }
  4528. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4529. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4530. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4531. continue
  4532. }
  4533. _content = $$("div", {
  4534. className: "U_MD_D_KO",
  4535. "onmousedown": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_x010504TeacherDeskIconInfo[i]]),
  4539. "onclick": U.UF.C.closure(function (obj) {
  4540. //防止拖动图标即打开了桌面应用
  4541. U.MD.D.click(this, obj);
  4542. }, [_x010504TeacherDeskIconInfo[i]])
  4543. }, _frag); //
  4544. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4545. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4546. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4547. }
  4548. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4549. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4550. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4551. continue
  4552. }
  4553. _content = $$("div", {
  4554. className: "U_MD_D_KO",
  4555. "onmousedown": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_x010505TeacherDeskIconInfo[i]]),
  4559. "onclick": U.UF.C.closure(function (obj) {
  4560. //防止拖动图标即打开了桌面应用
  4561. U.MD.D.click(this, obj);
  4562. }, [_x010505TeacherDeskIconInfo[i]])
  4563. }, _frag); //
  4564. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4565. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4566. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4567. }
  4568. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4569. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4570. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4571. continue
  4572. }
  4573. _content = $$("div", {
  4574. className: "U_MD_D_KO",
  4575. "onmousedown": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_x010404TeacherDeskIconInfo[i]]),
  4579. "onclick": U.UF.C.closure(function (obj) {
  4580. //防止拖动图标即打开了桌面应用
  4581. U.MD.D.click(this, obj);
  4582. }, [_x010404TeacherDeskIconInfo[i]])
  4583. }, _frag); //
  4584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4587. }
  4588. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4589. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4590. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4591. continue
  4592. }
  4593. _content = $$("div", {
  4594. className: "U_MD_D_KO",
  4595. "onmousedown": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_x010204TeacherDeskIconInfo[i]]),
  4599. "onclick": U.UF.C.closure(function (obj) {
  4600. //防止拖动图标即打开了桌面应用
  4601. U.MD.D.click(this, obj);
  4602. }, [_x010204TeacherDeskIconInfo[i]])
  4603. }, _frag); //
  4604. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4605. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4606. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4607. }
  4608. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4609. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4610. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4611. continue
  4612. }
  4613. _content = $$("div", {
  4614. className: "U_MD_D_KO",
  4615. "onmousedown": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x320101TeacherDeskIconInfo[i]]),
  4619. "onclick": U.UF.C.closure(function (obj) {
  4620. //防止拖动图标即打开了桌面应用
  4621. U.MD.D.click(this, obj);
  4622. }, [_x320101TeacherDeskIconInfo[i]])
  4623. }, _frag); //
  4624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4627. }
  4628. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4629. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4630. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4631. continue
  4632. }
  4633. _content = $$("div", {
  4634. className: "U_MD_D_KO",
  4635. "onmousedown": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_trailTeacherDeskIconInfo[i]]),
  4639. "onclick": U.UF.C.closure(function (obj) {
  4640. //防止拖动图标即打开了桌面应用
  4641. U.MD.D.click(this, obj);
  4642. }, [_trailTeacherDeskIconInfo[i]])
  4643. }, _frag); //
  4644. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4645. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4646. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4647. }
  4648. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4649. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4650. if(_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4651. continue
  4652. }
  4653. _content = $$("div", {
  4654. className: "U_MD_D_KO",
  4655. "onmousedown": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_trialTeacherDeskIconInfo[i]]),
  4659. "onclick": U.UF.C.closure(function (obj) {
  4660. //防止拖动图标即打开了桌面应用
  4661. U.MD.D.click(this, obj);
  4662. }, [_trialTeacherDeskIconInfo[i]])
  4663. }, _frag); //
  4664. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4665. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4666. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4667. }
  4668. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4669. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4670. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4671. continue
  4672. }
  4673. _content = $$("div", {
  4674. className: "U_MD_D_KO",
  4675. "onmousedown": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4679. "onclick": U.UF.C.closure(function (obj) {
  4680. //防止拖动图标即打开了桌面应用
  4681. U.MD.D.click(this, obj);
  4682. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4683. }, _frag); //
  4684. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4685. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4686. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4687. }
  4688. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4689. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4690. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4691. continue
  4692. }
  4693. _content = $$("div", {
  4694. className: "U_MD_D_KO",
  4695. "onmousedown": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_szsyTeacherDeskIconInfo[i]]),
  4699. "onclick": U.UF.C.closure(function (obj) {
  4700. //防止拖动图标即打开了桌面应用
  4701. U.MD.D.click(this, obj);
  4702. }, [_szsyTeacherDeskIconInfo[i]])
  4703. }, _frag); //
  4704. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4705. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4706. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4707. }
  4708. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4709. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4710. if(_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4711. continue
  4712. }
  4713. _content = $$("div", {
  4714. className: "U_MD_D_KO",
  4715. "onmousedown": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4719. "onclick": U.UF.C.closure(function (obj) {
  4720. //防止拖动图标即打开了桌面应用
  4721. U.MD.D.click(this, obj);
  4722. }, [_demoCocoTeacherDeskIconInfo[i]])
  4723. }, _frag); //
  4724. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4725. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4726. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4727. }
  4728. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4729. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4730. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4731. continue
  4732. }
  4733. _content = $$("div", {
  4734. className: "U_MD_D_KO",
  4735. "onmousedown": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010608TeacherDeskIconInfo[i]]),
  4739. "onclick": U.UF.C.closure(function (obj) {
  4740. //防止拖动图标即打开了桌面应用
  4741. U.MD.D.click(this, obj);
  4742. }, [_x010608TeacherDeskIconInfo[i]])
  4743. }, _frag); //
  4744. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4745. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4746. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4747. }
  4748. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4749. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4750. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4751. continue
  4752. }
  4753. _content = $$("div", {
  4754. className: "U_MD_D_KO",
  4755. "onmousedown": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010611TeacherDeskIconInfo[i]]),
  4759. "onclick": U.UF.C.closure(function (obj) {
  4760. //防止拖动图标即打开了桌面应用
  4761. U.MD.D.click(this, obj);
  4762. }, [_x010611TeacherDeskIconInfo[i]])
  4763. }, _frag); //
  4764. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4765. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4766. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4767. }
  4768. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4769. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4770. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4771. continue
  4772. }
  4773. _content = $$("div", {
  4774. className: "U_MD_D_KO",
  4775. "onmousedown": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x010612TeacherDeskIconInfo[i]]),
  4779. "onclick": U.UF.C.closure(function (obj) {
  4780. //防止拖动图标即打开了桌面应用
  4781. U.MD.D.click(this, obj);
  4782. }, [_x010612TeacherDeskIconInfo[i]])
  4783. }, _frag); //
  4784. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4785. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4786. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4787. }
  4788. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4789. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4790. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4791. continue
  4792. }
  4793. _content = $$("div", {
  4794. className: "U_MD_D_KO",
  4795. "onmousedown": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4799. "onclick": U.UF.C.closure(function (obj) {
  4800. //防止拖动图标即打开了桌面应用
  4801. U.MD.D.click(this, obj);
  4802. }, [_tianyuanTeacherDeskIconInfo[i]])
  4803. }, _frag); //
  4804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4807. }
  4808. }else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4809. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  4810. if(_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher'){
  4811. continue
  4812. }
  4813. _content = $$("div", {
  4814. className: "U_MD_D_KO",
  4815. "onmousedown": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_MOAITeacherDeskIcon[i]]),
  4819. "onclick": U.UF.C.closure(function (obj) {
  4820. //防止拖动图标即打开了桌面应用
  4821. U.MD.D.click(this, obj);
  4822. }, [_MOAITeacherDeskIcon[i]])
  4823. }, _frag); //
  4824. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4825. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  4826. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  4827. }
  4828. }else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  4829. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  4830. _content = $$("div", {
  4831. className: "U_MD_D_KO",
  4832. "onmousedown": U.UF.C.closure(function (obj) {
  4833. //防止拖动图标即打开了桌面应用
  4834. U.MD.D.click(this, obj);
  4835. }, [_MOAIStudentDeskIcon[i]]),
  4836. "onclick": U.UF.C.closure(function (obj) {
  4837. //防止拖动图标即打开了桌面应用
  4838. U.MD.D.click(this, obj);
  4839. }, [_MOAIStudentDeskIcon[i]])
  4840. }, _frag); //
  4841. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4842. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  4843. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  4844. }
  4845. } else {
  4846. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4847. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4848. continue
  4849. }
  4850. _content = $$("div", {
  4851. className: "U_MD_D_KO",
  4852. "onmousedown": U.UF.C.closure(function (obj) {
  4853. //防止拖动图标即打开了桌面应用
  4854. U.MD.D.click(this, obj);
  4855. }, [_teacherDesktopIconInfo[i]]),
  4856. "onclick": U.UF.C.closure(function (obj) {
  4857. //防止拖动图标即打开了桌面应用
  4858. U.MD.D.click(this, obj);
  4859. }, [_teacherDesktopIconInfo[i]])
  4860. }, _frag); //
  4861. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4862. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4863. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4864. }
  4865. }
  4866. } else {
  4867. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4868. _content = $$("div", {
  4869. className: "U_MD_D_KO",
  4870. style: { 'width': '124px', 'height': '145px' },
  4871. "onmousedown": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_easyDesktopIconInfo[i]]),
  4875. "onclick": U.UF.C.closure(function (obj) {
  4876. //防止拖动图标即打开了桌面应用
  4877. U.MD.D.click(this, obj);
  4878. }, [_easyDesktopIconInfo[i]])
  4879. }, _frag); //
  4880. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4883. }
  4884. }
  4885. if (type == 1) {
  4886. //加载好后给图标定位
  4887. U.MD.D.iconPostion($(_frag).Child());
  4888. } else {
  4889. //加载好后给图标定位
  4890. U.MD.D.iconPostion2($(_frag).Child());
  4891. }
  4892. //把图标加载到页面
  4893. el.appendChild(_frag);
  4894. }
  4895. /**
  4896. * 显示任务栏
  4897. *
  4898. * @param {element} 桌面元素
  4899. */
  4900. U.MD.D.I.displayTaskbar = function (el) {
  4901. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4902. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4903. //任务栏位置变化
  4904. U.selectEl(el).css({ "bottom": "0px" });
  4905. //桌面位置变话
  4906. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4907. }
  4908. }
  4909. //#region 桌面图标拖动逻辑
  4910. /**
  4911. * 桌面排列图标
  4912. *
  4913. * @param {element} 桌面元素
  4914. * @param {object} 上下相距的距离
  4915. * @param {object} 左右相距的距离
  4916. * @return {object} 命名空间
  4917. */
  4918. U.MD.D.iconPostion = function (childs, top, left) {
  4919. var i; //用于循环处理
  4920. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4921. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4922. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4923. for (i = 0; i < childs.length; i++) {
  4924. //如果竖排top超过了范围处理
  4925. if (top + 95 > US.height - 10) {
  4926. //left超过了页面范围处理,则向上重叠打印处理
  4927. if ((left + 180) > US.width) {
  4928. top -= 110;
  4929. left -= 90;
  4930. }
  4931. //没有超过范围,那么left+90添加到下一个竖排打印
  4932. else {
  4933. left += 90;
  4934. top = 15;
  4935. };
  4936. }
  4937. //给图标的位置赋值
  4938. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4939. if (i < childs.length - 1) {
  4940. //页面图标每次向下加95
  4941. top += 95;
  4942. }
  4943. }
  4944. //返回最后调用的图标的位置
  4945. return [top, left];
  4946. }
  4947. /**
  4948. * 桌面排列图标
  4949. *
  4950. * @param {element} 桌面元素
  4951. * @param {object} 上下相距的距离
  4952. * @param {object} 左右相距的距离
  4953. * @return {object} 命名空间
  4954. */
  4955. U.MD.D.iconPostion2 = function (childs, top, left) {
  4956. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4957. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4958. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4959. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4960. for (i = 0; i < childs.length; i++) {
  4961. //如果竖排top超过了范围处理
  4962. if (left + 150 > US.width - 10) {
  4963. //left超过了页面范围处理,则向上重叠打印处理
  4964. if ((top + 180) > US.Height) {
  4965. top -= 150;
  4966. left -= 150;
  4967. }
  4968. //没有超过范围,那么left+90添加到下一个竖排打印
  4969. else {
  4970. top += 150;
  4971. left = ol;
  4972. };
  4973. }
  4974. //给图标的位置赋值
  4975. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4976. if (i < childs.length - 1) {
  4977. //页面图标每次向下加95
  4978. left += 150;
  4979. }
  4980. }
  4981. //返回最后调用的图标的位置
  4982. return [top, left];
  4983. }
  4984. /**
  4985. * 桌面点击事件逻辑
  4986. *
  4987. * @param {element} 桌面元素
  4988. * @param {object} 上下相距的距离
  4989. * @param {object} 左右相距的距离
  4990. * @return {object} 命名空间
  4991. */
  4992. U.MD.D.click = function (el, obj) {
  4993. var _buttonnumber = event.button; //点击的按钮的事件值
  4994. var _userinfo = US.userInfo;
  4995. U.UF.EV.stopBubble(); //阻止向上冒泡
  4996. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4997. if (_buttonnumber < 2) {
  4998. //如果是click事件的处理
  4999. if (event.type == "click") {
  5000. //如果元素在mousemove事件中没有移动则出发click事件
  5001. if (!U.MD.D.I.IsDrag) {
  5002. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5003. U.alert("请先登录您的账号!");
  5004. setTimeout(() => {
  5005. U.MD.U.L.login();
  5006. }, 2000);
  5007. } else {
  5008. //打开应用处理
  5009. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5010. }
  5011. }
  5012. }
  5013. //如果是mouse事件的处理
  5014. else {
  5015. if (US.Config.type == '1') {
  5016. //拖动处理,添加拖动和拖动结束事件
  5017. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5018. }
  5019. }
  5020. U.MD.D.I.IsDrag = false;
  5021. }
  5022. }
  5023. /**
  5024. * 拖动的处理
  5025. *
  5026. */
  5027. U.MD.D.iconMove = function () {
  5028. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5029. U.MD.D.I.IsDrag = true;
  5030. }
  5031. /**
  5032. * 拖动结束后,这里是定位处理,以网状的形式定位
  5033. *
  5034. * @param {element} 拖动的元素
  5035. * @return {object} 命名空间
  5036. */
  5037. U.MD.D.iconUp = function (el) {
  5038. var _top = 15,
  5039. _left = 20,
  5040. _margin,
  5041. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5042. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5043. if (_positioninfo["OT"] > 15) {
  5044. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5045. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5046. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5047. }
  5048. if (_positioninfo["OL"] > 20) {
  5049. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5050. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5051. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5052. }
  5053. //while循环判断么一个重叠的元素
  5054. do {
  5055. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5056. _top = _positioninfo[0] + 95; //得到定位后的top
  5057. _left = _positioninfo[1]; //得到定位后的left
  5058. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5059. }
  5060. /**
  5061. * 判断拖动后图标是否重叠
  5062. *
  5063. * @param {element} 拖动的元素
  5064. * @param {element} 桌面所有的元素
  5065. * @param {array} 拖动元素的位置
  5066. ----------[0] 上 top
  5067. ----------[1] 左 left
  5068. * @return {object} 命名空间
  5069. */
  5070. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5071. //循环所有的图标
  5072. for (var i = 0; i < childs.length; i++) {
  5073. //判断有没有和该图标诶子重叠的元素
  5074. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5075. return childs[i]; //如果有返回
  5076. }
  5077. }
  5078. }
  5079. //#endregion
  5080. //#endregion
  5081. //#region 桌面应用
  5082. /**
  5083. * 打开应用
  5084. *
  5085. * @param {string} 类型
  5086. -----------------Disk 网盘系统
  5087. -----------------PDisk 学习系统网盘
  5088. -----------------Poto 图片
  5089. -----------------Video 视频
  5090. -----------------Music 音乐
  5091. -----------------Word word
  5092. -----------------Excel excel
  5093. -----------------Txt 记事本
  5094. -----------------PB 学习系统
  5095. -----------------Blog 朋友圈系统
  5096. -----------------FTP ftp系统
  5097. -----------------Group 好友群
  5098. -----------------SY 首页系统
  5099. -----------------Set 个人设置
  5100. -----------------XSet 系统设置
  5101. -----------------App 我们所有的app
  5102. -----------------BC c.1473.cn 平台
  5103. -----------------CWeb d.1473.cn 变成平台
  5104. -----------------其他的外联系统 我们统一用iframe打开
  5105. * @param {array} 类型
  5106. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5107. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5108. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5109. 如果第一个参数为其他,则无第二个参数
  5110. * @returns {array}
  5111. */
  5112. window.addEventListener('message', function (e) { // 监听 message 事件
  5113. // alert(e.data.type);
  5114. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5115. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5116. //3是展示全部阶段 2学生 1老师 4专家
  5117. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5118. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5119. //3是展示全部阶段 2学生 1老师 4专家
  5120. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5121. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5122. //3是展示全部阶段 2学生 1老师 4专家
  5123. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5124. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5125. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5126. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5127. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5128. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5129. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5130. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5131. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5132. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5133. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5134. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5135. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5136. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5137. //3是展示全部阶段 2学生 1老师 4专家
  5138. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5139. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5140. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5141. U.MD.D.I.selectUser();
  5142. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5143. var _formel = document.getElementById("study");
  5144. U.UF.F.windowZooming(_formel);
  5145. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5146. var _formel = document.getElementById("studyDetail");
  5147. U.UF.F.windowZooming(_formel);
  5148. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5149. var _formel = document.getElementById("studyDetail");
  5150. U.UF.F.windowZooming(_formel);
  5151. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5152. var _formel = document.getElementById("studentStudy");
  5153. U.UF.F.windowZooming(_formel);
  5154. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5155. // var _formel = document.getElementById("study");
  5156. //如果最大化了,那么就把他缩小
  5157. // if (_formel.ismaximize) {
  5158. // return;
  5159. // }
  5160. // U.UF.F.windowZooming(_formel);
  5161. // U.UF.F.topWindow(_formel);
  5162. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5163. // var _formel = document.getElementById("studyDetail");
  5164. //如果最大化了,那么就把他缩小
  5165. // if (_formel.ismaximize) {
  5166. // return;
  5167. // }
  5168. // U.UF.F.windowZooming(_formel);
  5169. // U.UF.F.topWindow(_formel);
  5170. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5171. // var _formel = document.getElementById("studentStudy");
  5172. // if (_formel.ismaximize) {
  5173. // return;
  5174. // }
  5175. // U.UF.F.windowZooming(_formel);
  5176. // U.UF.F.topWindow(_formel);
  5177. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5178. var _formel = document.getElementById("study");
  5179. // if (_formel.ismaximize) {
  5180. // return;
  5181. // }
  5182. // U.UF.F.windowZooming(_formel);
  5183. U.UF.F.topWindow(_formel);
  5184. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5185. var _formel = document.getElementById("studentIndex");
  5186. U.UF.F.windowZooming(_formel);
  5187. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5188. var _formel = document.getElementById("studyDetailS");
  5189. U.UF.F.windowZooming(_formel);
  5190. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5191. var _formel = document.getElementById("studioIndex");
  5192. U.UF.F.windowZooming(_formel);
  5193. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5194. var _formel = document.getElementById("studyDetailStudio");
  5195. U.UF.F.windowZooming(_formel);
  5196. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5197. var _formel = document.getElementById("studyDetailStudio");
  5198. U.UF.F.windowZooming(_formel);
  5199. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5200. var _formel = document.getElementById("studyDetailNT");
  5201. U.UF.F.windowZooming(_formel);
  5202. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5203. var _formel = document.getElementById("studyDetailS");
  5204. U.UF.F.windowZooming(_formel);
  5205. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5206. var _formel = document.getElementById("studyDetailS");
  5207. U.UF.F.topWindow(_formel);
  5208. } else if (e.data.tools && e.data.tools == "1") {
  5209. // U.MD.D.I.openApplication("whiteboard")
  5210. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5211. } else if (e.data.tools && e.data.tools == "2") {
  5212. U.MD.D.I.openApplication("note")
  5213. } else if (e.data.tools && e.data.tools == "3") {
  5214. // U.MD.D.I.openApplication("mind")
  5215. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5216. } else if (e.data.tools && e.data.tools == "4") {
  5217. U.MD.D.I.openApplication("investigation")
  5218. } else if (e.data.tools && e.data.tools == "6") {
  5219. // U.MD.D.I.openApplication("doc")
  5220. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5221. } else if (e.data.tools && e.data.tools == "7") {
  5222. // U.MD.D.I.openApplication("mindNetwork")
  5223. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5224. } else if (e.data.tools && e.data.tools == "8") {
  5225. U.MD.D.I.openApplication("library")
  5226. } else if (e.data.tools && e.data.tools == "17") {
  5227. U.MD.D.I.openApplication("stuLibrary")
  5228. } else if (e.data.tools && e.data.tools == "18") {
  5229. U.MD.D.I.openApplication("train")
  5230. } else if (e.data.tools && e.data.tools == "21") {
  5231. U.MD.D.I.openApplication("program")
  5232. } else if (e.data.tools && e.data.tools == "22") {
  5233. U.MD.D.I.openApplication("AIprogram2")
  5234. } else if (e.data.tools && e.data.tools == "23") {
  5235. U.MD.D.I.openApplication("Pythonprogram")
  5236. } else if (e.data.tools && e.data.tools == "24") {
  5237. U.MD.D.I.openApplication("AIprogram")
  5238. } else if (e.data.tools && e.data.tools == "25") {
  5239. U.MD.D.I.openApplication("sys")
  5240. } else if (e.data.tools && e.data.tools == "26") {
  5241. // U.MD.D.I.openApplication("courseDesign")
  5242. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5243. } else if (e.data.tools && e.data.tools == "31") {
  5244. U.MD.D.I.openApplication("netWorkPanel")
  5245. } else if (e.data.tools && e.data.tools == "32") {
  5246. U.MD.D.I.openApplication("codeEdit")
  5247. } else if (e.data.tools && e.data.tools == "57") {
  5248. U.MD.D.I.openApplication("CocoPi")
  5249. } else if (e.data.tools && e.data.tools == "63") {
  5250. U.MD.D.I.openApplication("Wood")
  5251. } else if (e.data.tools && e.data.tools == "58") {
  5252. U.MD.D.I.openApplication("car")
  5253. } else if (e.data.tools && e.data.tools == "59") {
  5254. U.MD.D.I.openApplication("lineSearch")
  5255. } else if (e.data.tools && e.data.tools == "60") {
  5256. U.MD.D.I.openApplication("deepLearning")
  5257. } else if (e.data.tools && e.data.tools == "61") {
  5258. U.MD.D.I.openApplication("allHistory")
  5259. } else if (e.data.tools && e.data.tools == "28") {
  5260. U.MD.D.I.openApplication("translation")
  5261. } else if (e.data.tools && e.data.tools == "37") {
  5262. U.MD.D.I.openApplication("mohe")
  5263. } else if (e.data.tools && e.data.tools == "38") {
  5264. U.MD.D.I.openApplication("24game")
  5265. } else if (e.data.tools && e.data.tools == "39") {
  5266. U.MD.D.I.openApplication("GeoGebra")
  5267. } else if (e.data.tools && e.data.tools == "43") {
  5268. U.MD.D.I.openApplication("studentEvaluate")
  5269. } else if (e.data.tools && e.data.tools == "44") {
  5270. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5271. } else if (e.data.tools && e.data.tools == "46") {
  5272. U.MD.D.I.openApplication("project")
  5273. } else if (e.data.tools && e.data.tools == "71") {
  5274. U.MD.D.I.openApplication("aigptCourse")
  5275. } else if (e.data.tools && e.data.tools == "72") {
  5276. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5277. } else if (e.data.tools && e.data.tools == "1s") {
  5278. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5279. } else if (e.data.tools && e.data.tools == "3s") {
  5280. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5281. } else if (e.data.tools && e.data.tools == "6s") {
  5282. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5283. } else if (e.data.tools && e.data.tools == "1studio") {
  5284. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5285. } else if (e.data.tools && e.data.tools == "3studio") {
  5286. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5287. } else if (e.data.tools && e.data.tools == "6studio") {
  5288. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5289. } else if (e.data.tools && e.data.tools == "3y") {
  5290. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5291. } else if (e.data.tools && e.data.tools == "1y") {
  5292. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5293. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5294. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5295. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5296. U.MD.D.I.openApplication("AIAnalyse")
  5297. } else if (e.data.tools && e.data.tools == "1teacher") {
  5298. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5299. } else if (e.data.tools && e.data.tools == "3teacher") {
  5300. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5301. } else if (e.data.tools && e.data.tools == "7teacher") {
  5302. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5303. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5304. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5305. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5306. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5307. } else if (e.data.tools && e.data.tools == "1E") {
  5308. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5309. } else if (e.data.tools && e.data.tools == "3E") {
  5310. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5311. } else if (e.data.tools && e.data.tools == "57y") {
  5312. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5313. } else if (e.data.tools && e.data.tools == "57u") {
  5314. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5315. } else if (e.data.tools && e.data.tools == "57teacher") {
  5316. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5317. } else if (e.data.tools && e.data.tools == "64") {
  5318. U.MD.D.I.openApplication("AIChat")
  5319. } else if (e.data.tools && e.data.tools == "66") {
  5320. U.MD.D.I.openApplication("formulaEdi")
  5321. } else if (e.data.tools && e.data.tools == "67") {
  5322. U.MD.D.I.openApplication("molStr")
  5323. } else if (e.data.tools && e.data.tools == "68") {
  5324. U.MD.D.I.openApplication("timeAxis")
  5325. } else if (e.data.tools && e.data.tools == "openCourse") {
  5326. let _data = {
  5327. typea: e.data.typea || '',
  5328. typeb: e.data.typeb || '',
  5329. typed: e.data.typed || '',
  5330. }
  5331. U.MD.D.I.openInApplication("index", _data)
  5332. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5333. let _data = {
  5334. classid: e.data.classid || '',
  5335. }
  5336. U.MD.D.I.openInApplication("dataClass", _data)
  5337. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5338. let _data = {
  5339. cid: e.data.cid || '',
  5340. gid: e.data.gid || '',
  5341. }
  5342. U.MD.D.I.openInApplication("opencCscl", _data)
  5343. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5344. U.MD.D.I.openApplication("dataBoardTest")
  5345. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5346. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5347. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5348. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5349. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5350. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5351. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5352. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5353. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5354. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5355. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5356. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5357. }else if (e.data.tools && e.data.tools == "loginSz") {
  5358. U.MD.D.I.openInApplication("loginSz")
  5359. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5360. if($('#classroom_observation_board')[0]){
  5361. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5362. }
  5363. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5364. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5365. if($('#classroom_observation_ob_comment')[0]){
  5366. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5367. }
  5368. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5369. }else if (e.data.tools && e.data.tools == "logout"){
  5370. U.MD.U.LO.logoutSystem()
  5371. }else if (e.data.tools && e.data.tools == "getLogin"){
  5372. let _iframe = $('#UI_Login')[0];
  5373. if (_iframe) {
  5374. var userInfo = US.userInfo;
  5375. var type = 2
  5376. if(userInfo && userInfo.userid){
  5377. type = 1
  5378. }
  5379. _contentWindow = _iframe.contentWindow;
  5380. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5381. }
  5382. }
  5383. });
  5384. U.MD.D.I.selectUser = function () {
  5385. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5386. if (res.value[0].length > 0) {
  5387. US.userInfo = res.value[0][0];
  5388. $(".userName")[0].innerHTML = US.userInfo.username;
  5389. }
  5390. }, [], { "type": "GET", "withCredentials": true });
  5391. }
  5392. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5393. var _userinfo = US.userInfo, //登录用户信息
  5394. _userid = US.userInfo.userid, //登录用户id
  5395. _oid = _userinfo.organizeid,
  5396. _type = US.userInfo.type,
  5397. _org = US.userInfo.org,
  5398. _role = US.userInfo.role,
  5399. _classId = US.userInfo.classid;
  5400. if (_type == 4) {
  5401. tType = 4
  5402. }
  5403. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5404. if(opArray.includes(str)){
  5405. let _str = str
  5406. if(str == 'appStore'){
  5407. _str = "cocoFlow"
  5408. }else if(str == "futureClass"){
  5409. _str = "cocoNote"
  5410. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5411. _str = "IntelligentForm"
  5412. }else if(str == "testStudent" || str == "testStudentSies"){
  5413. _str = "TeacherCenter"
  5414. }
  5415. try {
  5416. if (data) {
  5417. U.MD.D.addOp3('1', "", { type: _str+'Open', cid: data }, "success")
  5418. }else {
  5419. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5420. }
  5421. } catch (error) {
  5422. console.log(error);
  5423. }
  5424. }
  5425. switch (str) {
  5426. case "studyDetailNT": //无终端模式
  5427. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5428. setTimeout(() => {
  5429. U.MD.U.L.login();
  5430. }, 2000);
  5431. } else {
  5432. _formdiv = new U.UF.UI.form(
  5433. "课程详情",
  5434. $$("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 }), {
  5435. "id": "studyDetailNT",
  5436. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5437. "onresize": function () { }
  5438. }, {
  5439. closecallback: function () { }
  5440. }, { "style": { "height": "36px" } }).form; //创建窗体
  5441. _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); } }
  5442. break;
  5443. }
  5444. case "studyDetail":
  5445. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5446. setTimeout(() => {
  5447. U.MD.U.L.login();
  5448. }, 2000);
  5449. } else {
  5450. _formdiv = new U.UF.UI.form(
  5451. "课程详情",
  5452. $$("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 }), {
  5453. "id": "studyDetail",
  5454. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5455. "onresize": function () { }
  5456. }, {
  5457. closecallback: function () { }
  5458. }, { "style": { "height": "36px" } }).form; //创建窗体
  5459. _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); } }
  5460. break;
  5461. }
  5462. case "studyDetailTrain":
  5463. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5464. setTimeout(() => {
  5465. U.MD.U.L.login();
  5466. }, 2000);
  5467. } else {
  5468. _formdiv = new U.UF.UI.form(
  5469. "培训详情",
  5470. $$("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 }), {
  5471. "id": "studyDetailTrain",
  5472. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5473. "onresize": function () { }
  5474. }, {
  5475. closecallback: function () { }
  5476. }, { "style": { "height": "36px" } }).form; //创建窗体
  5477. _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); } }
  5478. break;
  5479. }
  5480. case "studyDetailS":
  5481. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5482. setTimeout(() => {
  5483. U.MD.U.L.login();
  5484. }, 2000);
  5485. } else {
  5486. _formdiv = new U.UF.UI.form(
  5487. "项目详情",
  5488. $$("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 }), {
  5489. "id": "studyDetailS",
  5490. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5491. "onresize": function () { }
  5492. }, {
  5493. closecallback: function () { }
  5494. }, { "style": { "height": "36px" } }).form; //创建窗体
  5495. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5496. break;
  5497. }
  5498. case "studyDetailStudio":
  5499. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5500. setTimeout(() => {
  5501. U.MD.U.L.login();
  5502. }, 2000);
  5503. } else {
  5504. _formdiv = new U.UF.UI.form(
  5505. "工作详情",
  5506. $$("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 }), {
  5507. "id": "studyDetailStudio",
  5508. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5509. "onresize": function () { }
  5510. }, {
  5511. closecallback: function () { }
  5512. }, { "style": { "height": "36px" } }).form; //创建窗体
  5513. _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); } }
  5514. break;
  5515. }
  5516. case "studyDetailS5":
  5517. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5518. setTimeout(() => {
  5519. U.MD.U.L.login();
  5520. }, 2000);
  5521. } else {
  5522. _formdiv = new U.UF.UI.form(
  5523. "项目详情",
  5524. $$("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 }), {
  5525. "id": "studyDetailS",
  5526. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5527. "onresize": function () { }
  5528. }, {
  5529. closecallback: function () { }
  5530. }, { "style": { "height": "36px" } }).form; //创建窗体
  5531. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5532. break;
  5533. }
  5534. case "studyDetailGM":
  5535. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5536. setTimeout(() => {
  5537. U.MD.U.L.login();
  5538. }, 2000);
  5539. } else {
  5540. _formdiv = new U.UF.UI.form(
  5541. "课程详情",
  5542. $$("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 }), {
  5543. "id": "studyDetail",
  5544. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5545. "onresize": function () { }
  5546. }, {
  5547. closecallback: function () { }
  5548. }, { "style": { "height": "36px" } }).form; //创建窗体
  5549. _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); } }
  5550. break;
  5551. }
  5552. case "hanUrl":
  5553. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5554. setTimeout(() => {
  5555. U.MD.U.L.login();
  5556. }, 2000);
  5557. } else {
  5558. _formdiv = new U.UF.UI.form(
  5559. "汉字宫",
  5560. $$("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" }), {
  5561. "id": "hanUrl",
  5562. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5563. "onresize": function () { }
  5564. }, {
  5565. closecallback: function () { }
  5566. }, { "style": { "height": "36px" } }).form; //创建窗体
  5567. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5568. break;
  5569. }
  5570. case "index":
  5571. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5572. setTimeout(() => {
  5573. U.MD.U.L.login();
  5574. }, 2000);
  5575. } else {
  5576. _formdiv = new U.UF.UI.form(
  5577. "课程中心",
  5578. $$("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 }), {
  5579. "id": "study",
  5580. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5581. "onresize": function () { }
  5582. }, {
  5583. closecallback: function () { }
  5584. }, { "style": { "height": "36px" } }).form; //创建窗体
  5585. _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); } }
  5586. break;
  5587. }
  5588. case "dataClass":
  5589. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5590. setTimeout(() => {
  5591. U.MD.U.L.login();
  5592. }, 2000);
  5593. } else {
  5594. _formdiv = new U.UF.UI.form(
  5595. "数据报告",
  5596. $$("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 }), {
  5597. "id": "dataClass",
  5598. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5599. "onresize": function () { }
  5600. }, {
  5601. closecallback: function () { }
  5602. }, { "style": { "height": "36px" } }).form; //创建窗体
  5603. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5604. break;
  5605. }
  5606. case "opencCscl":
  5607. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5608. setTimeout(() => {
  5609. U.MD.U.L.login();
  5610. }, 2000);
  5611. } else {
  5612. _formdiv = new U.UF.UI.form(
  5613. "协同建构",
  5614. $$("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 }), {
  5615. "id": "futureClass",
  5616. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5617. "onresize": function () { }
  5618. }, {
  5619. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5620. }, { "style": { "height": "36px" } }).form; //创建窗体
  5621. _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); } }
  5622. break;
  5623. }
  5624. case "openCourseUpdate":
  5625. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5626. setTimeout(() => {
  5627. U.MD.U.L.login();
  5628. }, 2000);
  5629. } else {
  5630. _formdiv = new U.UF.UI.form(
  5631. "课程管理",
  5632. $$("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 }), {
  5633. "id": "openCourseUpdate",
  5634. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5635. "onresize": function () { }
  5636. }, {
  5637. closecallback: function () { }
  5638. }, { "style": { "height": "36px" } }).form; //创建窗体
  5639. break;
  5640. }
  5641. case "openNewCourseUpdate":
  5642. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5643. setTimeout(() => {
  5644. U.MD.U.L.login();
  5645. }, 2000);
  5646. } else {
  5647. _formdiv = new U.UF.UI.form(
  5648. "课程管理",
  5649. $$("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 }), {
  5650. "id": "openCourseUpdate",
  5651. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. break;
  5657. }
  5658. case "openCourseEUpdate":
  5659. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5660. setTimeout(() => {
  5661. U.MD.U.L.login();
  5662. }, 2000);
  5663. } else {
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5667. "id": "openCourseUpdate",
  5668. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5669. "onresize": function () { }
  5670. }, {
  5671. closecallback: function () { }
  5672. }, { "style": { "height": "36px" } }).form; //创建窗体
  5673. break;
  5674. }
  5675. case "openCourseAiUpdate":
  5676. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5677. setTimeout(() => {
  5678. U.MD.U.L.login();
  5679. }, 2000);
  5680. } else {
  5681. _formdiv = new U.UF.UI.form(
  5682. "课程管理",
  5683. $$("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 }), {
  5684. "id": "openCourseUpdate",
  5685. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5686. "onresize": function () { }
  5687. }, {
  5688. closecallback: function () { }
  5689. }, { "style": { "height": "36px" } }).form; //创建窗体
  5690. break;
  5691. }
  5692. case "openCourseAiUpdate2":
  5693. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5694. setTimeout(() => {
  5695. U.MD.U.L.login();
  5696. }, 2000);
  5697. } else {
  5698. _formdiv = new U.UF.UI.form(
  5699. "课程管理",
  5700. $$("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 }), {
  5701. "id": "openCourseUpdate",
  5702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5703. "onresize": function () { }
  5704. }, {
  5705. closecallback: function () { }
  5706. }, { "style": { "height": "36px" } }).form; //创建窗体
  5707. break;
  5708. }
  5709. case "openCourseNewUpdate":
  5710. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5711. setTimeout(() => {
  5712. U.MD.U.L.login();
  5713. }, 2000);
  5714. } else {
  5715. _formdiv = new U.UF.UI.form(
  5716. "课程管理",
  5717. $$("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 }), {
  5718. "id": "openCourseUpdate",
  5719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. break;
  5725. }
  5726. case "inviteLoginSz":
  5727. _formdiv = new U.UF.UI.form(
  5728. "随机码登录",
  5729. $$("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 }), {
  5730. "id": "loginSz",
  5731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. break;
  5737. case "loginSz":
  5738. _formdiv = new U.UF.UI.form(
  5739. "教师登录",
  5740. $$("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" }), {
  5741. "id": "loginSz",
  5742. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5743. "onresize": function () { }
  5744. }, {
  5745. closecallback: function () { }
  5746. }, { "style": { "height": "36px" } }).form; //创建窗体
  5747. break;
  5748. case "teacher":
  5749. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5750. setTimeout(() => {
  5751. U.MD.U.L.login();
  5752. }, 2000);
  5753. } else {
  5754. _formdiv = new U.UF.UI.form(
  5755. "教师管理",
  5756. $$("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 }), {
  5757. "id": "teacher",
  5758. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5759. "onresize": function () { }
  5760. }, {
  5761. closecallback: function () { }
  5762. }, { "style": { "height": "36px" } }).form; //创建窗体
  5763. break;
  5764. }
  5765. case "dataBoardSZArea":
  5766. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5767. setTimeout(() => {
  5768. U.MD.U.L.login();
  5769. }, 2000);
  5770. } else {
  5771. _formdiv = new U.UF.UI.form(
  5772. "综合数据看板",
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5774. "id": "dataBoardSZArea",
  5775. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5776. "onresize": function () { }
  5777. }, {
  5778. closecallback: function () { }
  5779. }, { "style": { "height": "36px" } }).form; //创建窗体
  5780. break;
  5781. }
  5782. case "dataBoardSZCity":
  5783. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5784. setTimeout(() => {
  5785. U.MD.U.L.login();
  5786. }, 2000);
  5787. } else {
  5788. _formdiv = new U.UF.UI.form(
  5789. "综合数据看板",
  5790. $$("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 }), {
  5791. "id": "dataBoardSZCity",
  5792. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5793. "onresize": function () { }
  5794. }, {
  5795. closecallback: function () { }
  5796. }, { "style": { "height": "36px" } }).form; //创建窗体
  5797. break;
  5798. }
  5799. case "classroom_observation_board":
  5800. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5801. setTimeout(() => {
  5802. U.MD.U.L.login();
  5803. }, 2000);
  5804. } else {
  5805. _formdiv = new U.UF.UI.form(
  5806. "课堂观察",
  5807. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  5808. "id": "classroom_observation_board",
  5809. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //创建窗体
  5814. break;
  5815. }
  5816. case "classroom_observation_ob_comment":
  5817. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5818. setTimeout(() => {
  5819. U.MD.U.L.login();
  5820. }, 2000);
  5821. } else {
  5822. _formdiv = new U.UF.UI.form(
  5823. "课堂审核",
  5824. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  5825. "id": "classroom_observation_ob_comment",
  5826. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5827. "onresize": function () { }
  5828. }, {
  5829. closecallback: function () { }
  5830. }, { "style": { "height": "36px" } }).form; //创建窗体
  5831. break;
  5832. }
  5833. case "gptConfig":
  5834. _formdiv = new U.UF.UI.form(
  5835. data.name ? data.name : "应用中心",
  5836. $$("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 }), {
  5837. "id": "gptConfig" + data.id,
  5838. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5839. "onresize": function () { }
  5840. }, {
  5841. closecallback: function () { }
  5842. }, { "style": { "height": "36px" } }).form; //创建窗体
  5843. break;
  5844. case "testDetail":
  5845. _formdiv = new U.UF.UI.form(
  5846. "表单填写",
  5847. $$("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 }), {
  5848. "id": "testDetail" + data,
  5849. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5850. "onresize": function () { }
  5851. }, {
  5852. closecallback: function () { }
  5853. }, { "style": { "height": "36px" } }).form; //创建窗体
  5854. break;
  5855. }
  5856. }
  5857. U.MD.D.I.openApplication = function (str, obj, info) {
  5858. obj = obj || {};
  5859. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5860. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5861. _userinfo = US.userInfo, //登录用户信息
  5862. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5863. _oid = obj.organizeid || _userinfo.organizeid,
  5864. _type = US.userInfo.type,
  5865. _org = obj.org || US.userInfo.org,
  5866. _role = US.userInfo.role,
  5867. _classId = US.userInfo.classid,
  5868. _TscreenType = 1
  5869. _screenType = 2,
  5870. _SscreenType = 3;
  5871. let iframeBool = true
  5872. if(U.UF.UI.form.allForm[str]){
  5873. iframeBool = false
  5874. }
  5875. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5876. return;
  5877. }
  5878. let opArray = [ "project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  5879. if(opArray.includes(str)){
  5880. let _str = str
  5881. if(str == 'appStore'){
  5882. _str = "cocoFlow"
  5883. }else if(str == "futureClass"){
  5884. _str = "cocoNote"
  5885. }else if(str == "testTeacher" || str == "testTeacherSies"){
  5886. _str = "IntelligentForm"
  5887. }else if(str == "testStudent" || str == "testStudentSies"){
  5888. _str = "TeacherCenter"
  5889. }
  5890. try {
  5891. U.MD.D.addOp3('1', "", { type: _str+'Open' }, "success")
  5892. } catch (error) {
  5893. console.log(error);
  5894. }
  5895. }
  5896. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5897. switch (str) {
  5898. case "studnetProject": //好友打开
  5899. _formdiv = new U.UF.UI.form(
  5900. "我的项目",
  5901. $$("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 }), {
  5902. "id": "studnetProject",
  5903. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5904. "onresize": function () { }
  5905. }, {
  5906. closecallback: function () { }
  5907. }, { "style": { "height": "36px" } }).form; //创建窗体
  5908. _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); } }
  5909. break;
  5910. case "studentEvaluate": //好友打开
  5911. _formdiv = new U.UF.UI.form(
  5912. "我的评价",
  5913. $$("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 }), {
  5914. "id": "studentEvaluate",
  5915. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5916. "onresize": function () { }
  5917. }, {
  5918. closecallback: function () { }
  5919. }, { "style": { "height": "36px" } }).form; //创建窗体
  5920. _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); } }
  5921. break;
  5922. case "my":
  5923. _formdiv = new U.UF.UI.form(
  5924. "我的资料",
  5925. $$("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 }), {
  5926. "id": "my",
  5927. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5928. "onresize": function () { }
  5929. }, {
  5930. closecallback: function () { }
  5931. }, { "style": { "height": "36px" } }).form; //创建窗体
  5932. _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); } }
  5933. break;
  5934. case "program":
  5935. _formdiv = new U.UF.UI.form(
  5936. "编程平台",
  5937. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5938. "id": "program",
  5939. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5940. "onresize": function () { }
  5941. }, {
  5942. closecallback: function () { }
  5943. }, { "style": { "height": "36px" } }).form; //创建窗体
  5944. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5945. break;
  5946. case "library":
  5947. _formdiv = new U.UF.UI.form(
  5948. "素材库",
  5949. $$("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 }), {
  5950. "id": "library",
  5951. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5952. "onresize": function () { }
  5953. }, {
  5954. closecallback: function () { }
  5955. }, { "style": { "height": "36px" } }).form; //创建窗体
  5956. _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); } }
  5957. break;
  5958. case "whiteboard":
  5959. _formdiv = new U.UF.UI.form(
  5960. "电子白板",
  5961. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5962. "id": "whiteboard",
  5963. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5964. "onresize": function () { }
  5965. }, {
  5966. closecallback: function () { }
  5967. }, { "style": { "height": "36px" } }).form; //创建窗体
  5968. _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); } }
  5969. break;
  5970. case "investigation":
  5971. _formdiv = new U.UF.UI.form(
  5972. "问卷调查",
  5973. $$("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 }), {
  5974. "id": "investigation",
  5975. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5976. "onresize": function () { }
  5977. }, {
  5978. closecallback: function () { }
  5979. }, { "style": { "height": "36px" } }).form; //创建窗体
  5980. _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); } }
  5981. break;
  5982. case "note":
  5983. _formdiv = new U.UF.UI.form(
  5984. "便签分类",
  5985. $$("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 }), {
  5986. "id": "note",
  5987. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5988. "onresize": function () { }
  5989. }, {
  5990. closecallback: function () { }
  5991. }, { "style": { "height": "36px" } }).form; //创建窗体
  5992. _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); } }
  5993. break;
  5994. // case "score":
  5995. // _formdiv = new U.UF.UI.form(
  5996. // "量规评分",
  5997. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5998. // "id": "score",
  5999. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6000. // "onresize": function() {}
  6001. // }, {
  6002. // closecallback: function() {}
  6003. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6004. // _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); } }
  6005. // break;
  6006. case "mind":
  6007. _formdiv = new U.UF.UI.form(
  6008. "思维导图",
  6009. $$("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"
  6010. "id": "mind",
  6011. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6012. "onresize": function () { }
  6013. }, {
  6014. closecallback: function () { }
  6015. }, { "style": { "height": "36px" } }).form; //创建窗体
  6016. _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); } }
  6017. break;
  6018. case "doc":
  6019. // U.MD.D.I.isRoom();
  6020. _formdiv = new U.UF.UI.form(
  6021. "协同文档",
  6022. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6023. "id": "doc",
  6024. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6025. "onresize": function () { }
  6026. }, {
  6027. closecallback: function () { }
  6028. }, { "style": { "height": "36px" } }).form; //创建窗体
  6029. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6030. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6031. // })
  6032. _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); } }
  6033. break;
  6034. case "studentStudy":
  6035. _formdiv = new U.UF.UI.form(
  6036. "课程中心",
  6037. $$("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
  6038. "id": "studentStudy",
  6039. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6040. "onresize": function () { }
  6041. }, {
  6042. closecallback: function () { }
  6043. }, { "style": { "height": "36px" } }).form; //创建窗体
  6044. _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); } }
  6045. break;
  6046. case "train": //好友打开
  6047. _formdiv = new U.UF.UI.form(
  6048. "训练平台",
  6049. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6050. "id": "train",
  6051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6052. "onresize": function () { }
  6053. }, {
  6054. closecallback: function () { }
  6055. }, { "style": { "height": "36px" } }).form; //创建窗体
  6056. _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); } }
  6057. break;
  6058. case "mindNetwork": //好友打开
  6059. _formdiv = new U.UF.UI.form(
  6060. "思维网格",
  6061. $$("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 }), {
  6062. "id": "mindNetwork",
  6063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6064. "onresize": function () { }
  6065. }, {
  6066. closecallback: function () { }
  6067. }, { "style": { "height": "36px" } }).form; //创建窗体
  6068. _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); } }
  6069. break;
  6070. case "studentClassRoom": //好友打开
  6071. _formdiv = new U.UF.UI.form(
  6072. "实时课堂",
  6073. $$("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 }), {
  6074. "id": "studentClassRoom",
  6075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6076. "onresize": function () { }
  6077. }, {
  6078. closecallback: function () { }
  6079. }, { "style": { "height": "36px" } }).form; //创建窗体
  6080. _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); } }
  6081. setTimeout(() => {
  6082. U.UF.F.windowZooming(_formdiv)
  6083. }, 0);
  6084. break;
  6085. }
  6086. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6087. switch (str) {
  6088. case "studnetProject": //好友打开
  6089. _formdiv = new U.UF.UI.form(
  6090. "我的项目",
  6091. $$("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 }), {
  6092. "id": "studnetProject",
  6093. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6094. "onresize": function () { }
  6095. }, {
  6096. closecallback: function () { }
  6097. }, { "style": { "height": "36px" } }).form; //创建窗体
  6098. _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); } }
  6099. break;
  6100. case "studentEvaluate": //好友打开
  6101. _formdiv = new U.UF.UI.form(
  6102. "我的评价",
  6103. $$("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 }), {
  6104. "id": "studentEvaluate",
  6105. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6106. "onresize": function () { }
  6107. }, {
  6108. closecallback: function () { }
  6109. }, { "style": { "height": "36px" } }).form; //创建窗体
  6110. _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); } }
  6111. break;
  6112. case "my":
  6113. _formdiv = new U.UF.UI.form(
  6114. "我的资料",
  6115. $$("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 }), {
  6116. "id": "my",
  6117. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6118. "onresize": function () { }
  6119. }, {
  6120. closecallback: function () { }
  6121. }, { "style": { "height": "36px" } }).form; //创建窗体
  6122. _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); } }
  6123. break;
  6124. case "program":
  6125. _formdiv = new U.UF.UI.form(
  6126. "编程平台",
  6127. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6128. "id": "program",
  6129. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6130. "onresize": function () { }
  6131. }, {
  6132. closecallback: function () { }
  6133. }, { "style": { "height": "36px" } }).form; //创建窗体
  6134. _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); } }
  6135. break;
  6136. case "library":
  6137. _formdiv = new U.UF.UI.form(
  6138. "素材库",
  6139. $$("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 }), {
  6140. "id": "library",
  6141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6142. "onresize": function () { }
  6143. }, {
  6144. closecallback: function () { }
  6145. }, { "style": { "height": "36px" } }).form; //创建窗体
  6146. _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); } }
  6147. break;
  6148. case "whiteboard":
  6149. _formdiv = new U.UF.UI.form(
  6150. "电子白板",
  6151. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6152. "id": "whiteboard",
  6153. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6154. "onresize": function () { }
  6155. }, {
  6156. closecallback: function () { }
  6157. }, { "style": { "height": "36px" } }).form; //创建窗体
  6158. _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); } }
  6159. break;
  6160. case "investigation":
  6161. _formdiv = new U.UF.UI.form(
  6162. "问卷调查",
  6163. $$("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 }), {
  6164. "id": "investigation",
  6165. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6166. "onresize": function () { }
  6167. }, {
  6168. closecallback: function () { }
  6169. }, { "style": { "height": "36px" } }).form; //创建窗体
  6170. _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); } }
  6171. break;
  6172. case "note":
  6173. _formdiv = new U.UF.UI.form(
  6174. "便签分类",
  6175. $$("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 }), {
  6176. "id": "note",
  6177. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6178. "onresize": function () { }
  6179. }, {
  6180. closecallback: function () { }
  6181. }, { "style": { "height": "36px" } }).form; //创建窗体
  6182. _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); } }
  6183. break;
  6184. // case "score":
  6185. // _formdiv = new U.UF.UI.form(
  6186. // "量规评分",
  6187. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6188. // "id": "score",
  6189. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6190. // "onresize": function() {}
  6191. // }, {
  6192. // closecallback: function() {}
  6193. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6194. // _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); } }
  6195. // break;
  6196. case "mind":
  6197. _formdiv = new U.UF.UI.form(
  6198. "思维导图",
  6199. $$("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"
  6200. "id": "mind",
  6201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6202. "onresize": function () { }
  6203. }, {
  6204. closecallback: function () { }
  6205. }, { "style": { "height": "36px" } }).form; //创建窗体
  6206. _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); } }
  6207. break;
  6208. case "doc":
  6209. // U.MD.D.I.isRoom();
  6210. _formdiv = new U.UF.UI.form(
  6211. "协同文档",
  6212. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6213. "id": "doc",
  6214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6215. "onresize": function () { }
  6216. }, {
  6217. closecallback: function () { }
  6218. }, { "style": { "height": "36px" } }).form; //创建窗体
  6219. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6220. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6221. })
  6222. _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); } }
  6223. break;
  6224. case "train": //好友打开
  6225. _formdiv = new U.UF.UI.form(
  6226. "训练平台",
  6227. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6228. "id": "train",
  6229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, { "style": { "height": "36px" } }).form; //创建窗体
  6234. _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); } }
  6235. break;
  6236. case "studentStudy":
  6237. _formdiv = new U.UF.UI.form(
  6238. "课程中心",
  6239. $$("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
  6240. "id": "studentStudy",
  6241. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6242. "onresize": function () { }
  6243. }, {
  6244. closecallback: function () { }
  6245. }, { "style": { "height": "36px" } }).form; //创建窗体
  6246. _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); } }
  6247. break;
  6248. case "mindNetwork": //好友打开
  6249. _formdiv = new U.UF.UI.form(
  6250. "思维网格",
  6251. $$("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 }), {
  6252. "id": "mindNetwork",
  6253. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //创建窗体
  6258. _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); } }
  6259. break;
  6260. case "studentClassRoom": //好友打开
  6261. _formdiv = new U.UF.UI.form(
  6262. "实时课堂",
  6263. $$("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 }), {
  6264. "id": "studentClassRoom",
  6265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. _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); } }
  6271. setTimeout(() => {
  6272. U.UF.F.windowZooming(_formdiv)
  6273. }, 0);
  6274. break;
  6275. }
  6276. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6277. //选择应用处理
  6278. switch (str) {
  6279. case "project": //好友打开
  6280. _formdiv = new U.UF.UI.form(
  6281. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6282. $$("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 }), {
  6283. "id": "project",
  6284. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6285. "onresize": function () { }
  6286. }, {
  6287. closecallback: function () { }
  6288. }, { "style": { "height": "36px" } }).form; //创建窗体
  6289. _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); } }
  6290. break;
  6291. case "student":
  6292. _formdiv = new U.UF.UI.form(
  6293. "学生管理",
  6294. $$("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 }), {
  6295. "id": "student",
  6296. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6297. "onresize": function () { }
  6298. }, {
  6299. closecallback: function () { }
  6300. }, { "style": { "height": "36px" } }).form; //创建窗体
  6301. _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); } }
  6302. break;
  6303. case "evaluate":
  6304. _formdiv = new U.UF.UI.form(
  6305. "学生评价",
  6306. $$("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 }), {
  6307. "id": "evaluate",
  6308. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6309. "onresize": function () { }
  6310. }, {
  6311. closecallback: function () { }
  6312. }, { "style": { "height": "36px" } }).form; //创建窗体
  6313. _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); } }
  6314. break;
  6315. case "sys":
  6316. _formdiv = new U.UF.UI.form(
  6317. "目标管理",
  6318. $$("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 }), {
  6319. "id": "sys",
  6320. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6321. "onresize": function () { }
  6322. }, {
  6323. closecallback: function () { }
  6324. }, { "style": { "height": "36px" } }).form; //创建窗体
  6325. _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); } }
  6326. break;
  6327. case "courseDesign":
  6328. _formdiv = new U.UF.UI.form(
  6329. "项目设计",
  6330. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6331. "id": "courseDesign",
  6332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6333. "onresize": function () { }
  6334. }, {
  6335. closecallback: function () { }
  6336. }, { "style": { "height": "36px" } }).form; //创建窗体
  6337. _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); } }
  6338. break;
  6339. case "program":
  6340. _formdiv = new U.UF.UI.form(
  6341. "编程平台",
  6342. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6343. "id": "program",
  6344. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6345. "onresize": function () { }
  6346. }, {
  6347. closecallback: function () { }
  6348. }, { "style": { "height": "36px" } }).form; //创建窗体
  6349. _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); } }
  6350. break;
  6351. case "class":
  6352. _formdiv = new U.UF.UI.form(
  6353. "班级管理",
  6354. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/class?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6355. "id": "class",
  6356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6357. "onresize": function () { }
  6358. }, {
  6359. closecallback: function () { }
  6360. }, { "style": { "height": "36px" } }).form; //创建窗体
  6361. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6362. break;
  6363. case "Grade":
  6364. _formdiv = new U.UF.UI.form(
  6365. "年级管理",
  6366. $$("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 }), {
  6367. "id": "Grade",
  6368. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6369. "onresize": function () { }
  6370. }, {
  6371. closecallback: function () { }
  6372. }, { "style": { "height": "36px" } }).form; //创建窗体
  6373. _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); } }
  6374. break;
  6375. case "teacherOffice":
  6376. _formdiv = new U.UF.UI.form(
  6377. "教研室",
  6378. $$("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 }), {
  6379. "id": "teacherOffice",
  6380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _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); } }
  6386. break;
  6387. case "my":
  6388. _formdiv = new U.UF.UI.form(
  6389. "我的资料",
  6390. $$("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 }), {
  6391. "id": "my",
  6392. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6393. "onresize": function () { }
  6394. }, {
  6395. closecallback: function () { }
  6396. }, { "style": { "height": "36px" } }).form; //创建窗体
  6397. _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); } }
  6398. break;
  6399. case "notice":
  6400. _formdiv = new U.UF.UI.form(
  6401. "通知公告",
  6402. $$("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 }), {
  6403. "id": "notice",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _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); } }
  6410. break;
  6411. case "library":
  6412. _formdiv = new U.UF.UI.form(
  6413. "素材库",
  6414. $$("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 }), {
  6415. "id": "library",
  6416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6417. "onresize": function () { }
  6418. }, {
  6419. closecallback: function () { }
  6420. }, { "style": { "height": "36px" } }).form; //创建窗体
  6421. _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); } }
  6422. break;
  6423. case "whiteboard":
  6424. _formdiv = new U.UF.UI.form(
  6425. "电子白板",
  6426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6427. "id": "whiteboard",
  6428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _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); } }
  6434. break;
  6435. case "investigation":
  6436. _formdiv = new U.UF.UI.form(
  6437. "问卷调查",
  6438. $$("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 }), {
  6439. "id": "investigation",
  6440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _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); } }
  6446. break;
  6447. case "note":
  6448. _formdiv = new U.UF.UI.form(
  6449. "便签分类",
  6450. $$("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 }), {
  6451. "id": "note",
  6452. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _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); } }
  6458. break;
  6459. // case "score":
  6460. // _formdiv = new U.UF.UI.form(
  6461. // "量规评分",
  6462. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6463. // "id": "score",
  6464. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6465. // "onresize": function() {}
  6466. // }, {
  6467. // closecallback: function() {}
  6468. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. // _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); } }
  6470. // break;
  6471. case "mind":
  6472. _formdiv = new U.UF.UI.form(
  6473. "思维导图",
  6474. $$("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"
  6475. "id": "mind",
  6476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6477. "onresize": function () { }
  6478. }, {
  6479. closecallback: function () { }
  6480. }, { "style": { "height": "36px" } }).form; //创建窗体
  6481. _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); } }
  6482. break;
  6483. case "doc":
  6484. // U.MD.D.I.isRoom();
  6485. _formdiv = new U.UF.UI.form(
  6486. "协同文档",
  6487. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6488. "id": "doc",
  6489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6490. "onresize": function () { }
  6491. }, {
  6492. closecallback: function () { }
  6493. }, { "style": { "height": "36px" } }).form; //创建窗体
  6494. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6495. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6496. })
  6497. _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); } }
  6498. break;
  6499. case "study":
  6500. _formdiv = new U.UF.UI.form(
  6501. "课程中心",
  6502. $$("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
  6503. "id": "study",
  6504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //创建窗体
  6509. _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); } }
  6510. break;
  6511. case "mindNetwork": //好友打开
  6512. _formdiv = new U.UF.UI.form(
  6513. "思维网格",
  6514. $$("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 }), {
  6515. "id": "mindNetwork",
  6516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6522. break;
  6523. case "train": //好友打开
  6524. _formdiv = new U.UF.UI.form(
  6525. "训练平台",
  6526. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6527. "id": "mindNetwork",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6534. break;
  6535. case "teacherClassRoom": //好友打开
  6536. _formdiv = new U.UF.UI.form(
  6537. "实时课堂",
  6538. $$("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 }), {
  6539. "id": "teacherClassRoom",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _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); } }
  6546. setTimeout(() => {
  6547. U.UF.F.windowZooming(_formdiv)
  6548. }, 0);
  6549. break;
  6550. }
  6551. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6552. switch (str) {
  6553. case "project": //好友打开
  6554. _formdiv = new U.UF.UI.form(
  6555. "课程管理",
  6556. $$("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 }), {
  6557. "id": "project",
  6558. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6559. "onresize": function () { }
  6560. }, {
  6561. closecallback: function () { }
  6562. }, { "style": { "height": "36px" } }).form; //创建窗体
  6563. _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); } }
  6564. break;
  6565. case "evaluate":
  6566. _formdiv = new U.UF.UI.form(
  6567. "学生评价",
  6568. $$("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 }), {
  6569. "id": "evaluate",
  6570. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6571. "onresize": function () { }
  6572. }, {
  6573. closecallback: function () { }
  6574. }, { "style": { "height": "36px" } }).form; //创建窗体
  6575. _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); } }
  6576. break;
  6577. case "notice":
  6578. _formdiv = new U.UF.UI.form(
  6579. "通知公告",
  6580. $$("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 }), {
  6581. "id": "notice",
  6582. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6583. "onresize": function () { }
  6584. }, {
  6585. closecallback: function () { }
  6586. }, { "style": { "height": "36px" } }).form; //创建窗体
  6587. _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); } }
  6588. break;
  6589. case "stuLibrary":
  6590. _formdiv = new U.UF.UI.form(
  6591. "学习资料",
  6592. $$("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 }), {
  6593. "id": "stuLibrary",
  6594. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6595. "onresize": function () { }
  6596. }, {
  6597. closecallback: function () { }
  6598. }, { "style": { "height": "36px" } }).form; //创建窗体
  6599. _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); } }
  6600. break;
  6601. case "program":
  6602. _formdiv = new U.UF.UI.form(
  6603. "编程平台",
  6604. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6605. "id": "program",
  6606. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6607. "onresize": function () { }
  6608. }, {
  6609. closecallback: function () { }
  6610. }, { "style": { "height": "36px" } }).form; //创建窗体
  6611. _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); } }
  6612. break;
  6613. case "whiteboard":
  6614. _formdiv = new U.UF.UI.form(
  6615. "电子白板",
  6616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6617. "id": "whiteboard",
  6618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6619. "onresize": function () { }
  6620. }, {
  6621. closecallback: function () { }
  6622. }, { "style": { "height": "36px" } }).form; //创建窗体
  6623. _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); } }
  6624. break;
  6625. case "investigation":
  6626. _formdiv = new U.UF.UI.form(
  6627. "问卷调查",
  6628. $$("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 }), {
  6629. "id": "investigation",
  6630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6631. "onresize": function () { }
  6632. }, {
  6633. closecallback: function () { }
  6634. }, { "style": { "height": "36px" } }).form; //创建窗体
  6635. _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); } }
  6636. break;
  6637. case "mind":
  6638. _formdiv = new U.UF.UI.form(
  6639. "思维导图",
  6640. $$("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"
  6641. "id": "mind",
  6642. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6643. "onresize": function () { }
  6644. }, {
  6645. closecallback: function () { }
  6646. }, { "style": { "height": "36px" } }).form; //创建窗体
  6647. _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); } }
  6648. break;
  6649. case "doc":
  6650. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  6654. "id": "doc",
  6655. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6656. "onresize": function () { }
  6657. }, {
  6658. closecallback: function () { }
  6659. }, { "style": { "height": "36px" } }).form; //创建窗体
  6660. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6661. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6662. })
  6663. _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); } }
  6664. break;
  6665. case "study":
  6666. _formdiv = new U.UF.UI.form(
  6667. "课程中心",
  6668. $$("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
  6669. "id": "study",
  6670. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6676. break;
  6677. case "mindNetwork": //好友打开
  6678. _formdiv = new U.UF.UI.form(
  6679. "思维网格",
  6680. $$("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 }), {
  6681. "id": "mindNetwork",
  6682. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6683. "onresize": function () { }
  6684. }, {
  6685. closecallback: function () { }
  6686. }, { "style": { "height": "36px" } }).form; //创建窗体
  6687. _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); } }
  6688. break;
  6689. case "train": //好友打开
  6690. _formdiv = new U.UF.UI.form(
  6691. "训练平台",
  6692. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6693. "id": "train",
  6694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6695. "onresize": function () { }
  6696. }, {
  6697. closecallback: function () { }
  6698. }, { "style": { "height": "36px" } }).form; //创建窗体
  6699. _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); } }
  6700. break;
  6701. case "sys":
  6702. _formdiv = new U.UF.UI.form(
  6703. "目标管理",
  6704. $$("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 }), {
  6705. "id": "sys",
  6706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6707. "onresize": function () { }
  6708. }, {
  6709. closecallback: function () { }
  6710. }, { "style": { "height": "36px" } }).form; //创建窗体
  6711. _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); } }
  6712. break;
  6713. case "courseDesign":
  6714. _formdiv = new U.UF.UI.form(
  6715. "项目设计",
  6716. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6717. "id": "courseDesign",
  6718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6719. "onresize": function () { }
  6720. }, {
  6721. closecallback: function () { }
  6722. }, { "style": { "height": "36px" } }).form; //创建窗体
  6723. _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); } }
  6724. break;
  6725. }
  6726. } else if (!_type) {
  6727. switch (str) {
  6728. case "my":
  6729. _formdiv = new U.UF.UI.form(
  6730. "我的资料",
  6731. $$("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 }), {
  6732. "id": "my",
  6733. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6734. "onresize": function () { }
  6735. }, {
  6736. closecallback: function () { }
  6737. }, { "style": { "height": "36px" } }).form; //创建窗体
  6738. _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); } }
  6739. break;
  6740. }
  6741. }
  6742. switch (str) {
  6743. // AIprogram2 AI体验 aihub.cocorobo.cn
  6744. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6745. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6746. case "formulaEdi": //公式编辑
  6747. _formdiv = new U.UF.UI.form(
  6748. "公式编辑",
  6749. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6750. "id": "formulaEdi",
  6751. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6752. "onresize": function () { }
  6753. }, {
  6754. closecallback: function () { }
  6755. }, { "style": { "height": "36px" } }).form; //创建窗体
  6756. _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); } }
  6757. break;
  6758. case "molStr": //分子结构
  6759. _formdiv = new U.UF.UI.form(
  6760. "分子结构",
  6761. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6762. "id": "molStr",
  6763. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6764. "onresize": function () { }
  6765. }, {
  6766. closecallback: function () { }
  6767. }, { "style": { "height": "36px" } }).form; //创建窗体
  6768. _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); } }
  6769. break;
  6770. case "timeAxis": //时间轴
  6771. _formdiv = new U.UF.UI.form(
  6772. "时间轴",
  6773. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6774. "id": "timeAxis",
  6775. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6776. "onresize": function () { }
  6777. }, {
  6778. closecallback: function () { }
  6779. }, { "style": { "height": "36px" } }).form; //创建窗体
  6780. _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); } }
  6781. break;
  6782. case "AIprogram2": //AI体验
  6783. _formdiv = new U.UF.UI.form(
  6784. "AI体验",
  6785. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6786. "id": "AIprogram2",
  6787. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6788. "onresize": function () { }
  6789. }, {
  6790. closecallback: function () { }
  6791. }, { "style": { "height": "36px" } }).form; //创建窗体
  6792. _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); } }
  6793. break;
  6794. case "Pythonprogram": //python编程
  6795. _formdiv = new U.UF.UI.form(
  6796. "Python编程",
  6797. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6798. "id": "Pythonprogram",
  6799. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6800. "onresize": function () { }
  6801. }, {
  6802. closecallback: function () { }
  6803. }, { "style": { "height": "36px" } }).form; //创建窗体
  6804. _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); } }
  6805. break;
  6806. case "AIprogram": //ai编程
  6807. _formdiv = new U.UF.UI.form(
  6808. "AI编程平台",
  6809. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6810. "id": "AIprogram",
  6811. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6812. "onresize": function () { }
  6813. }, {
  6814. closecallback: function () { }
  6815. }, { "style": { "height": "36px" } }).form; //创建窗体
  6816. _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); } }
  6817. break;
  6818. case "CocoPi": //CocoPi
  6819. _formdiv = new U.UF.UI.form(
  6820. "CocoPi",
  6821. $$("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" }), {
  6822. "id": "CocoPi",
  6823. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6824. "onresize": function () { }
  6825. }, {
  6826. closecallback: function () { }
  6827. }, { "style": { "height": "36px" } }).form; //创建窗体
  6828. _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); } }
  6829. break;
  6830. case "Wood": //Wood
  6831. _formdiv = new U.UF.UI.form(
  6832. "海龟编程",
  6833. $$("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/" }), {
  6834. "id": "Wood",
  6835. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6836. "onresize": function () { }
  6837. }, {
  6838. closecallback: function () { }
  6839. }, { "style": { "height": "36px" } }).form; //创建窗体
  6840. _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); } }
  6841. break;
  6842. case "car": //模拟驾驶
  6843. _formdiv = new U.UF.UI.form(
  6844. "模拟驾驶",
  6845. $$("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/" }), {
  6846. "id": "car",
  6847. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6848. "onresize": function () { }
  6849. }, {
  6850. closecallback: function () { }
  6851. }, { "style": { "height": "36px" } }).form; //创建窗体
  6852. _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); } }
  6853. break;
  6854. case "lineSearch": //路径搜索
  6855. _formdiv = new U.UF.UI.form(
  6856. "路径搜索",
  6857. $$("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/" }), {
  6858. "id": "lineSearch",
  6859. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6860. "onresize": function () { }
  6861. }, {
  6862. closecallback: function () { }
  6863. }, { "style": { "height": "36px" } }).form; //创建窗体
  6864. _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); } }
  6865. break;
  6866. case "deepLearning": //深度学习
  6867. _formdiv = new U.UF.UI.form(
  6868. "深度学习",
  6869. $$("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/#" }), {
  6870. "id": "deepLearning",
  6871. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6872. "onresize": function () { }
  6873. }, {
  6874. closecallback: function () { }
  6875. }, { "style": { "height": "36px" } }).form; //创建窗体
  6876. _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); } }
  6877. break;
  6878. case "allHistory": //深度学习
  6879. _formdiv = new U.UF.UI.form(
  6880. "全历史",
  6881. $$("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/" }), {
  6882. "id": "allHistory",
  6883. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6884. "onresize": function () { }
  6885. }, {
  6886. closecallback: function () { }
  6887. }, { "style": { "height": "36px" } }).form; //创建窗体
  6888. _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); } }
  6889. break;
  6890. case "chatPDF": //ai编程
  6891. _formdiv = new U.UF.UI.form(
  6892. "chatPDF",
  6893. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6894. "id": "chatPDF",
  6895. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6896. "onresize": function () { }
  6897. }, {
  6898. closecallback: function () { }
  6899. }, { "style": { "height": "36px" } }).form; //创建窗体
  6900. _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); } }
  6901. break;
  6902. case "resources": //国家教育
  6903. _formdiv = new U.UF.UI.form(
  6904. "国家教育",
  6905. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6906. "id": "resources",
  6907. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6908. "onresize": function () { }
  6909. }, {
  6910. closecallback: function () { }
  6911. }, { "style": { "height": "36px" } }).form; //创建窗体
  6912. _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); } }
  6913. break;
  6914. case "codeEdit": //源码编辑
  6915. _formdiv = new U.UF.UI.form(
  6916. "源码编辑",
  6917. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6918. "id": "codeEdit",
  6919. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6920. "onresize": function () { }
  6921. }, {
  6922. closecallback: function () { }
  6923. }, { "style": { "height": "36px" } }).form; //创建窗体
  6924. _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); } }
  6925. break; //
  6926. case "MindMap": //MindMap
  6927. _formdiv = new U.UF.UI.form(
  6928. "MindMap",
  6929. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6930. "id": "MindMap",
  6931. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6932. "onresize": function () { }
  6933. }, {
  6934. closecallback: function () { }
  6935. }, { "style": { "height": "36px" } }).form; //创建窗体
  6936. _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); } }
  6937. break;
  6938. case "netWorkPanel": //netWorkPanel
  6939. _formdiv = new U.UF.UI.form(
  6940. "netWorkPanel",
  6941. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6942. "id": "netWorkPanel",
  6943. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6944. "onresize": function () { }
  6945. }, {
  6946. closecallback: function () { }
  6947. }, { "style": { "height": "36px" } }).form; //创建窗体
  6948. _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); } }
  6949. break;
  6950. case "GeoGebra": //GeoGebra
  6951. _formdiv = new U.UF.UI.form(
  6952. "GeoGebra",
  6953. $$("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" }), {
  6954. "id": "GeoGebra",
  6955. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6956. "onresize": function () { }
  6957. }, {
  6958. closecallback: function () { }
  6959. }, { "style": { "height": "36px" } }).form; //创建窗体
  6960. _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); } }
  6961. break;
  6962. case "translation": //翻译
  6963. _formdiv = new U.UF.UI.form(
  6964. "翻译",
  6965. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6966. "id": "translation",
  6967. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6968. "onresize": function () { }
  6969. }, {
  6970. closecallback: function () { }
  6971. }, { "style": { "height": "36px" } }).form; //创建窗体
  6972. _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); } }
  6973. break;
  6974. case "mohe": //魔盒
  6975. _formdiv = new U.UF.UI.form(
  6976. "魔盒识字",
  6977. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6978. "id": "mohe",
  6979. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6980. "onresize": function () { }
  6981. }, {
  6982. closecallback: function () { }
  6983. }, { "style": { "height": "36px" } }).form; //创建窗体
  6984. _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); } }
  6985. break;
  6986. case "24game": //24点
  6987. _formdiv = new U.UF.UI.form(
  6988. "24点",
  6989. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6990. "id": "24game",
  6991. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6992. "onresize": function () { }
  6993. }, {
  6994. closecallback: function () { }
  6995. }, { "style": { "height": "36px" } }).form; //创建窗体
  6996. _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); } }
  6997. break;
  6998. case "case":
  6999. _formdiv = new U.UF.UI.form(
  7000. "课程进展",
  7001. $$("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 }), {
  7002. "id": "case",
  7003. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7004. "onresize": function () { }
  7005. }, {
  7006. closecallback: function () { }
  7007. }, { "style": { "height": "36px" } }).form; //创建窗体
  7008. _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); } }
  7009. break;
  7010. case "snf":
  7011. _formdiv = new U.UF.UI.form(
  7012. "赛诺梵",
  7013. $$("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" }), {
  7014. "id": "snf",
  7015. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7016. "onresize": function () { }
  7017. }, {
  7018. closecallback: function () { }
  7019. }, { "style": { "height": "36px" } }).form; //创建窗体
  7020. _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); } }
  7021. break;
  7022. case "hanFamily":
  7023. _formdiv = new U.UF.UI.form(
  7024. "汉字家族",
  7025. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7026. "id": "hanFamily",
  7027. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7028. "onresize": function () { }
  7029. }, {
  7030. closecallback: function () { }
  7031. }, { "style": { "height": "36px" } }).form; //创建窗体
  7032. _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); } }
  7033. break;
  7034. case "hanClassics":
  7035. _formdiv = new U.UF.UI.form(
  7036. "国学经典",
  7037. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7038. "id": "hanClassics",
  7039. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7040. "onresize": function () { }
  7041. }, {
  7042. closecallback: function () { }
  7043. }, { "style": { "height": "36px" } }).form; //创建窗体
  7044. _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); } }
  7045. break;
  7046. case "hanTraining":
  7047. _formdiv = new U.UF.UI.form(
  7048. "笔画训练",
  7049. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7050. "id": "hanTraining",
  7051. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7052. "onresize": function () { }
  7053. }, {
  7054. closecallback: function () { }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. break;
  7058. case "hanClass":
  7059. _formdiv = new U.UF.UI.form(
  7060. "书法课堂",
  7061. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7062. "id": "hanClass",
  7063. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7064. "onresize": function () { }
  7065. }, {
  7066. closecallback: function () { }
  7067. }, { "style": { "height": "36px" } }).form; //创建窗体
  7068. _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); } }
  7069. break;
  7070. case "han":
  7071. _formdiv = new U.UF.UI.form(
  7072. "汉字宫",
  7073. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7074. "id": "han",
  7075. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7076. "onresize": function () { }
  7077. }, {
  7078. closecallback: function () { }
  7079. }, { "style": { "height": "36px" } }).form; //创建窗体
  7080. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7081. break;
  7082. case "projectGM": //课程管理
  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/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7086. "id": "projectGM",
  7087. "style": { "width": "90%", "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/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7093. break;
  7094. case "studyGM": //课程中心
  7095. _formdiv = new U.UF.UI.form(
  7096. "课程中心",
  7097. $$("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
  7098. "id": "study",
  7099. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7100. "onresize": function () { }
  7101. }, {
  7102. closecallback: function () { }
  7103. }, { "style": { "height": "36px" } }).form; //创建窗体
  7104. _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); } }
  7105. break;
  7106. // studentGM
  7107. case "studentGM": //学生管理
  7108. _formdiv = new U.UF.UI.form(
  7109. "学生管理",
  7110. $$("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 }), {
  7111. "id": "studentGM",
  7112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7113. "onresize": function () { }
  7114. }, {
  7115. closecallback: function () { }
  7116. }, { "style": { "height": "36px" } }).form; //创建窗体
  7117. _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); } }
  7118. break;
  7119. case "evaluateGM": //学生评价
  7120. _formdiv = new U.UF.UI.form(
  7121. "学生评价",
  7122. $$("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 }), {
  7123. "id": "evaluateGM",
  7124. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7125. "onresize": function () { }
  7126. }, {
  7127. closecallback: function () { }
  7128. }, { "style": { "height": "36px" } }).form; //创建窗体
  7129. _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); } }
  7130. break;
  7131. // classGM
  7132. case "classGM": //班级管理
  7133. _formdiv = new U.UF.UI.form(
  7134. "班级管理",
  7135. $$("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 }), {
  7136. "id": "classGM",
  7137. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7138. "onresize": function () { }
  7139. }, {
  7140. closecallback: function () { }
  7141. }, { "style": { "height": "36px" } }).form; //创建窗体
  7142. _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); } }
  7143. break;
  7144. // dataGM
  7145. case "dataGM":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/dataGM?userid=" + _userid + "&org=" + _org }), {
  7149. "id": "dataGM",
  7150. "style": { "width": "42%", "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/gm/data.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7156. break;
  7157. // caseGM
  7158. case "caseGM": //课程进展
  7159. _formdiv = new U.UF.UI.form(
  7160. "课程进展",
  7161. $$("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 }), {
  7162. "id": "caseGM",
  7163. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7164. "onresize": function () { }
  7165. }, {
  7166. closecallback: function () { }
  7167. }, { "style": { "height": "36px" } }).form; //创建窗体
  7168. _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); } }
  7169. break;
  7170. // meterialGM
  7171. case "meterialGM": //素材库
  7172. _formdiv = new U.UF.UI.form(
  7173. "素材库",
  7174. $$("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 }), {
  7175. "id": "meterialGM",
  7176. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7177. "onresize": function () { }
  7178. }, {
  7179. closecallback: function () { }
  7180. }, { "style": { "height": "36px" } }).form; //创建窗体
  7181. _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); } }
  7182. break;
  7183. // evaluateSGM
  7184. case "evaluateSGM": //我的评价
  7185. _formdiv = new U.UF.UI.form(
  7186. "我的评价",
  7187. $$("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 }), {
  7188. "id": "evaluateSGM",
  7189. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7190. "onresize": function () { }
  7191. }, {
  7192. closecallback: function () { }
  7193. }, { "style": { "height": "36px" } }).form; //创建窗体
  7194. _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); } }
  7195. break;
  7196. case "jupyter": //jupyter
  7197. _formdiv = new U.UF.UI.form(
  7198. "jupyter",
  7199. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7200. "id": "jupyter",
  7201. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7202. "onresize": function () { }
  7203. }, {
  7204. closecallback: function () { }
  7205. }, { "style": { "height": "36px" } }).form; //创建窗体
  7206. _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); } }
  7207. break;
  7208. case "number": //数字实验室
  7209. _formdiv = new U.UF.UI.form(
  7210. "数字实验室",
  7211. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7212. "id": "number",
  7213. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7214. "onresize": function () { }
  7215. }, {
  7216. closecallback: function () { }
  7217. }, { "style": { "height": "36px" } }).form; //创建窗体
  7218. _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); } }
  7219. break;
  7220. case "studentCourse": //项目管理 学生
  7221. _formdiv = new U.UF.UI.form(
  7222. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7223. $$("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 }), {
  7224. "id": "studentCourse",
  7225. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7226. "onresize": function () { }
  7227. }, {
  7228. closecallback: function () { }
  7229. }, { "style": { "height": "36px" } }).form; //创建窗体
  7230. _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); } }
  7231. break;
  7232. case "studentCourseS": //项目管理 老师
  7233. _formdiv = new U.UF.UI.form(
  7234. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7235. $$("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 }), {
  7236. "id": "studentCourseS",
  7237. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7238. "onresize": function () { }
  7239. }, {
  7240. closecallback: function () { }
  7241. }, { "style": { "height": "36px" } }).form; //创建窗体
  7242. _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); } }
  7243. break;
  7244. case "studentIndex": //项目中心
  7245. _formdiv = new U.UF.UI.form(
  7246. "项目中心",
  7247. $$("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 }), {
  7248. "id": "studentIndex",
  7249. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7250. "onresize": function () { }
  7251. }, {
  7252. closecallback: function () { }
  7253. }, { "style": { "height": "36px" } }).form; //创建窗体
  7254. _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); } }
  7255. break;
  7256. case "CaseDesignS":
  7257. _formdiv = new U.UF.UI.form(
  7258. "项目进展",
  7259. $$("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 }), {
  7260. "id": "case",
  7261. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7262. "onresize": function () { }
  7263. }, {
  7264. closecallback: function () { }
  7265. }, { "style": { "height": "36px" } }).form; //创建窗体
  7266. _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); } }
  7267. break;
  7268. case "tcStudent": //腾讯学生管理
  7269. _formdiv = new U.UF.UI.form(
  7270. "学生管理",
  7271. $$("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 }), {
  7272. "id": "tcStudent",
  7273. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7274. "onresize": function () { }
  7275. }, {
  7276. closecallback: function () { }
  7277. }, { "style": { "height": "36px" } }).form; //创建窗体
  7278. _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); } }
  7279. break;
  7280. case "tcSchool": //腾讯学校管理
  7281. _formdiv = new U.UF.UI.form(
  7282. "学校管理",
  7283. $$("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 }), {
  7284. "id": "tcSchool",
  7285. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7286. "onresize": function () { }
  7287. }, {
  7288. closecallback: function () { }
  7289. }, { "style": { "height": "36px" } }).form; //创建窗体
  7290. _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); } }
  7291. break;
  7292. case "tcTeacher": //腾讯学校管理
  7293. _formdiv = new U.UF.UI.form(
  7294. "教师管理",
  7295. $$("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 }), {
  7296. "id": "tcTeacher",
  7297. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7298. "onresize": function () { }
  7299. }, {
  7300. closecallback: function () { }
  7301. }, { "style": { "height": "36px" } }).form; //创建窗体
  7302. _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); } }
  7303. break;
  7304. case "teacher":
  7305. _formdiv = new U.UF.UI.form(
  7306. "教师管理",
  7307. $$("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 }), {
  7308. "id": "teacher",
  7309. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7310. "onresize": function () { }
  7311. }, {
  7312. closecallback: function () { }
  7313. }, { "style": { "height": "36px" } }).form; //创建窗体
  7314. _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); } }
  7315. break;
  7316. case "tcData": //腾讯我的资料
  7317. _formdiv = new U.UF.UI.form(
  7318. "我的资料",
  7319. $$("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 }), {
  7320. "id": "tcData",
  7321. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7322. "onresize": function () { }
  7323. }, {
  7324. closecallback: function () { }
  7325. }, { "style": { "height": "36px" } }).form; //创建窗体
  7326. _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); } }
  7327. break;
  7328. case "tcNotice": //腾讯消息通知
  7329. _formdiv = new U.UF.UI.form(
  7330. "消息通知",
  7331. $$("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 }), {
  7332. "id": "tcNotice",
  7333. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7334. "onresize": function () { }
  7335. }, {
  7336. closecallback: function () { }
  7337. }, { "style": { "height": "36px" } }).form; //创建窗体
  7338. _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); } }
  7339. break;
  7340. case "myReport": //好友打开
  7341. _formdiv = new U.UF.UI.form(
  7342. "我的评价",
  7343. $$("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 }), {
  7344. "id": "myReport",
  7345. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7346. "onresize": function () { }
  7347. }, {
  7348. closecallback: function () { }
  7349. }, { "style": { "height": "36px" } }).form; //创建窗体
  7350. _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); } }
  7351. break;
  7352. case "learnAna": //好友打开
  7353. _formdiv = new U.UF.UI.form(
  7354. "学习分析",
  7355. $$("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 }), {
  7356. "id": "learnAna",
  7357. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7358. "onresize": function () { }
  7359. }, {
  7360. closecallback: function () { }
  7361. }, { "style": { "height": "36px" } }).form; //创建窗体
  7362. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/learnAna.png)" }, "name": "学习分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7363. break;
  7364. case "AIChat": //AI共创
  7365. _formdiv = new U.UF.UI.form(
  7366. "AI共创",
  7367. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7368. "id": "AIChat",
  7369. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7370. "onresize": function () { }
  7371. }, {
  7372. istop: true,
  7373. closecallback: function () { $("#aichat_icon").remove(); },
  7374. narrowcallback: function () {
  7375. if (!$("#aichat_icon")[0]) {
  7376. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7377. }
  7378. },
  7379. }, { "style": { "height": "36px" } }).form; //创建窗体
  7380. _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); } }
  7381. break;
  7382. case "ainew": //AI共创
  7383. _formdiv = new U.UF.UI.form(
  7384. "AI协同",
  7385. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7386. "id": "ainew",
  7387. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7388. "onresize": function () { }
  7389. }, {
  7390. closecallback: function () { }
  7391. }, { "style": { "height": "36px" } }).form; //创建窗体
  7392. _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); } }
  7393. break;
  7394. case "gpt4": //gpt4
  7395. _formdiv = new U.UF.UI.form(
  7396. "AI助手",
  7397. $$("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 }), {
  7398. "id": "gpt4",
  7399. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7400. "onresize": function () { }
  7401. }, {
  7402. closecallback: function () { }
  7403. }, { "style": { "height": "36px" } }).form; //创建窗体
  7404. _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); } }
  7405. break;
  7406. case "aigpt": //gpt4
  7407. _formdiv = new U.UF.UI.form(
  7408. "AI助手+",
  7409. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7410. "id": "aigpt",
  7411. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7412. "onresize": function () { }
  7413. }, {
  7414. closecallback: function () {
  7415. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7416. }
  7417. }, { "style": { "height": "36px" } }).form; //创建窗体
  7418. _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); } }
  7419. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7420. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7421. })
  7422. break;
  7423. case "aiKnowledge": //aiKnowledge
  7424. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7425. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7426. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7427. }
  7428. _formdiv = new U.UF.UI.form(
  7429. "知识建构",
  7430. $$("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 }), {
  7431. "id": "aiKnowledge",
  7432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, { "style": { "height": "36px" } }).form; //创建窗体
  7437. _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); } }
  7438. break;
  7439. case "futureClass": //AI共创
  7440. _formdiv = new U.UF.UI.form(
  7441. "协同建构",
  7442. $$("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
  7443. "id": "synergyCourse",
  7444. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () {
  7448. $("iframe", _formdiv)[0].contentWindow.loginout();
  7449. }
  7450. }, { "style": { "height": "36px" } }).form; //创建窗体
  7451. _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); } }
  7452. break;
  7453. case "aiagent": //ai agent
  7454. _formdiv = new U.UF.UI.form(
  7455. "AI Agent",
  7456. $$("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" }), {
  7457. "id": "AIAgent",
  7458. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7459. "onresize": function () { }
  7460. }, {
  7461. closecallback: function () { }
  7462. }, { "style": { "height": "36px" } }).form; //创建窗体
  7463. _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); } }
  7464. break;
  7465. case "dataBoard": //数据看板
  7466. _formdiv = new U.UF.UI.form(
  7467. "数据看板",
  7468. $$("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 }), {
  7469. "id": "dataBoard",
  7470. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7471. "onresize": function () { }
  7472. }, {
  7473. closecallback: function () { }
  7474. }, { "style": { "height": "36px" } }).form; //创建窗体
  7475. _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); } }
  7476. break;
  7477. case "dataBoardSies": //数据融合
  7478. _formdiv = new U.UF.UI.form(
  7479. "数据融合",
  7480. $$("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 }), {
  7481. "id": "dataBoardSies",
  7482. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7483. "onresize": function () { }
  7484. }, {
  7485. closecallback: function () { }
  7486. }, { "style": { "height": "36px" } }).form; //创建窗体
  7487. _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); } }
  7488. break;
  7489. case "dataBoardNew": //数据看板
  7490. _formdiv = new U.UF.UI.form(
  7491. "综合看板",
  7492. $$("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 }), {
  7493. "id": "dataBoardNew",
  7494. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7495. "onresize": function () { }
  7496. }, {
  7497. closecallback: function () { }
  7498. }, { "style": { "height": "36px" } }).form; //创建窗体
  7499. _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); } }
  7500. break;
  7501. case "dataBoardTest": //数据看板
  7502. _formdiv = new U.UF.UI.form(
  7503. "评测看板",
  7504. $$("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 }), {
  7505. "id": "dataBoardTest",
  7506. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7507. "onresize": function () { }
  7508. }, {
  7509. closecallback: function () { }
  7510. }, { "style": { "height": "36px" } }).form; //创建窗体
  7511. _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); } }
  7512. break;
  7513. case "AIAnalyse": //AI共创
  7514. _formdiv = new U.UF.UI.form(
  7515. "AI分析",
  7516. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7517. "id": "AIAnalyse",
  7518. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7519. "onresize": function () { }
  7520. }, {
  7521. closecallback: function () { }
  7522. }, { "style": { "height": "36px" } }).form; //创建窗体
  7523. _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); } }
  7524. break;
  7525. case "studioCourse": //AI共创
  7526. _formdiv = new U.UF.UI.form(
  7527. "工作管理",
  7528. $$("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 }), {
  7529. "id": "studioCourse",
  7530. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7531. "onresize": function () { }
  7532. }, {
  7533. closecallback: function () { }
  7534. }, { "style": { "height": "36px" } }).form; //创建窗体
  7535. _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); } }
  7536. break;
  7537. case "studioIndex": //AI共创
  7538. _formdiv = new U.UF.UI.form(
  7539. "工作中心",
  7540. $$("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 }), {
  7541. "id": "studioIndex",
  7542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7543. "onresize": function () { }
  7544. }, {
  7545. closecallback: function () { }
  7546. }, { "style": { "height": "36px" } }).form; //创建窗体
  7547. _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); } }
  7548. break;
  7549. case "source":
  7550. _formdiv = new U.UF.UI.form(
  7551. "教学资源",
  7552. $$("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 }), {
  7553. "id": "source",
  7554. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7555. "onresize": function () { }
  7556. }, {
  7557. closecallback: function () { }
  7558. }, { "style": { "height": "36px" } }).form; //创建窗体
  7559. _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); } }
  7560. break;
  7561. case "testTeacher":
  7562. _formdiv = new U.UF.UI.form(
  7563. "智能表单",
  7564. $$("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 }), {
  7565. "id": "testTeacher",
  7566. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7567. "onresize": function () { }
  7568. }, {
  7569. closecallback: function () { }
  7570. }, { "style": { "height": "36px" } }).form; //创建窗体
  7571. _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); } }
  7572. break;
  7573. case "testStudent":
  7574. _formdiv = new U.UF.UI.form(
  7575. "教师中心",
  7576. $$("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 }), {
  7577. "id": "testStudent",
  7578. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7579. "onresize": function () { }
  7580. }, {
  7581. closecallback: function () { }
  7582. }, { "style": { "height": "36px" } }).form; //创建窗体
  7583. _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); } }
  7584. break;
  7585. case "testTeacherSies":
  7586. _formdiv = new U.UF.UI.form(
  7587. "教师管理",
  7588. $$("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 }), {
  7589. "id": "testTeacherSies",
  7590. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7591. "onresize": function () { }
  7592. }, {
  7593. closecallback: function () { }
  7594. }, { "style": { "height": "36px" } }).form; //创建窗体
  7595. _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); } }
  7596. break;
  7597. case "testStudentSies":
  7598. _formdiv = new U.UF.UI.form(
  7599. "教师中心",
  7600. $$("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 }), {
  7601. "id": "testStudentSies",
  7602. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7603. "onresize": function () { }
  7604. }, {
  7605. closecallback: function () { }
  7606. }, { "style": { "height": "36px" } }).form; //创建窗体
  7607. _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); } }
  7608. break;
  7609. case "ytpbl": //消息通知
  7610. _formdiv = new U.UF.UI.form(
  7611. "案例征集",
  7612. $$("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 }), {
  7613. "id": "ytpbl",
  7614. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7615. "onresize": function () { }
  7616. }, {
  7617. closecallback: function () { }
  7618. }, { "style": { "height": "36px" } }).form; //创建窗体
  7619. _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); } }
  7620. // 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");
  7621. break;
  7622. case "aiCourseResource": //人工智能窗体
  7623. _formdiv = new U.UF.UI.form(
  7624. false,
  7625. $$("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 }), {
  7626. "id": "aiCourseResource",
  7627. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7628. "onresize": function () { },
  7629. "isdrag": false,
  7630. }, {
  7631. closecallback: function () { }
  7632. }, { "style": { "height": "36px" } }).form; //创建窗体
  7633. _taskbar = ''
  7634. break;
  7635. case "szdjgCocooroboX": //图形化编程
  7636. _formdiv = new U.UF.UI.form(
  7637. "图形化编程",
  7638. $$("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" }), {
  7639. "id": "szdjgCocooroboX",
  7640. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7641. "onresize": function () { }
  7642. }, {
  7643. closecallback: function () { }
  7644. }, { "style": { "height": "36px" } }).form; //创建窗体
  7645. _taskbar = ''
  7646. break;
  7647. case "szdjgPython": //python编程
  7648. _formdiv = new U.UF.UI.form(
  7649. "Python编程",
  7650. $$("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" }), {
  7651. "id": "szdjgPython",
  7652. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7653. "onresize": function () { }
  7654. }, {
  7655. closecallback: function () { }
  7656. }, { "style": { "height": "36px" } }).form; //创建窗体
  7657. _taskbar = ''
  7658. break;
  7659. case "Record":
  7660. _formdiv = new U.UF.UI.form(
  7661. "观察记录",
  7662. $$("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 }), {
  7663. "id": "Record",
  7664. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7665. "onresize": function () { }
  7666. }, {
  7667. closecallback: function () { }
  7668. }, { "style": { "height": "36px" } }).form; //创建窗体
  7669. _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); } }
  7670. break;
  7671. case "aigptCourse":
  7672. _formdiv = new U.UF.UI.form(
  7673. "AI智能体",
  7674. $$("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' }), {
  7675. "id": "aigptCourse",
  7676. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7677. "onresize": function () { }
  7678. }, {
  7679. closecallback: function () { }
  7680. }, { "style": { "height": "36px" } }).form; //创建窗体
  7681. _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); } }
  7682. break;
  7683. case "classroomObservation":
  7684. _formdiv = new U.UF.UI.form(
  7685. "课堂观察",
  7686. $$("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 }), {
  7687. "id": "classroomObservation",
  7688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7689. "onresize": function () { }
  7690. }, {
  7691. closecallback: function () { }
  7692. }, { "style": { "height": "36px" } }).form; //创建窗体
  7693. _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); } }
  7694. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7695. break;
  7696. case "pblCourse":
  7697. _formdiv = new U.UF.UI.form(
  7698. "学生PBL",
  7699. $$("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 }), {
  7700. "id": "pblCourse",
  7701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7702. "onresize": function () { }
  7703. }, {
  7704. closecallback: function () { }
  7705. }, { "style": { "height": "36px" } }).form; //创建窗体
  7706. _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); } }
  7707. break;
  7708. case "appStore":
  7709. U.MD.D.addOp('','cocoflowOpen','')
  7710. _formdiv = new U.UF.UI.form(
  7711. "CocoFlow",
  7712. $$("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 }), {
  7713. "id": "appStore",
  7714. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7715. "onresize": function () { }
  7716. }, {
  7717. closecallback: function () { }
  7718. }, { "style": { "height": "36px" } }).form; //创建窗体
  7719. _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); } }
  7720. break;
  7721. case "sassPlatform":
  7722. _formdiv = new U.UF.UI.form(
  7723. "Sass通用后台管理",
  7724. $$("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 }), {
  7725. "id": "sassPlatform",
  7726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7727. "onresize": function () { }
  7728. }, {
  7729. closecallback: function () { }
  7730. }, { "style": { "height": "36px" } }).form; //创建窗体
  7731. _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); } }
  7732. break;
  7733. case "EDU":
  7734. _formdiv = new U.UF.UI.form(
  7735. "EDU",
  7736. $$("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" }), {
  7737. "id": "EDU",
  7738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7739. "onresize": function () { }
  7740. }, {
  7741. closecallback: function () { }
  7742. }, { "style": { "height": "36px" } }).form; //创建窗体
  7743. _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); } }
  7744. break;
  7745. case "knowledge":
  7746. _formdiv = new U.UF.UI.form(
  7747. "知识库",
  7748. $$("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 }), {
  7749. "id": "knowledge",
  7750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7751. "onresize": function () { }
  7752. }, {
  7753. closecallback: function () { }
  7754. }, { "style": { "height": "36px" } }).form; //创建窗体
  7755. _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); } }
  7756. break;
  7757. case "userExamine":
  7758. _formdiv = new U.UF.UI.form(
  7759. "账号申请",
  7760. $$("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" }), {
  7761. "id": "userExamine",
  7762. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7763. "onresize": function () { }
  7764. }, {
  7765. closecallback: function () { }
  7766. }, { "style": { "height": "36px" } }).form; //创建窗体
  7767. break;
  7768. case "cocoflowDeskTop": //cocoflowDeskTop
  7769. _formdiv = new U.UF.UI.form(
  7770. false,
  7771. $$("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 }), {
  7772. "id": "cocoflowDeskTop",
  7773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7774. "onresize": function () { },
  7775. }, {
  7776. closecallback: function () { },
  7777. "isdrag": false,
  7778. }, { "style": { "height": "36px" } }).form; //创建窗体
  7779. _taskbar = ''
  7780. break;
  7781. case "liyuanLogin": //liyuanLogin
  7782. _formdiv = new U.UF.UI.form(
  7783. false,
  7784. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  7785. "id": "liyuanLogin",
  7786. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7787. "onresize": function () { },
  7788. }, {
  7789. closecallback: function () { },
  7790. isdrag: false,
  7791. isstretching: false,
  7792. isenlarge: false,
  7793. isnarrow: false
  7794. }, { "style": { "height": "36px" } }).form; //创建窗体
  7795. _taskbar = ''
  7796. break;
  7797. case "updatePaDialog":
  7798. _formdiv = new U.UF.UI.form(
  7799. "密码修改",
  7800. $$("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 }), {
  7801. "id": "updatePaDialog",
  7802. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  7803. "onresize": function () { },
  7804. }, {
  7805. closecallback: function () { },
  7806. isclose: false,
  7807. isdrag: false,
  7808. isstretching: false,
  7809. isenlarge: false,
  7810. isnarrow: false
  7811. }, { "style": { "height": "36px" } }).form; //创建窗体
  7812. break;
  7813. }
  7814. //U.MD.D.I.openClick(str);
  7815. //如果有任务栏信息
  7816. if (_taskbar) {
  7817. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7818. }
  7819. if(iframeBool){
  7820. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7821. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7822. // console.log("iframe进入");
  7823. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7824. // };
  7825. setTimeout(() => {
  7826. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7827. }, 2000);
  7828. }
  7829. }
  7830. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  7831. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7832. _userinfo = US.userInfo, //登录用户信息
  7833. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  7834. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  7835. let iframeBool = true;
  7836. let queryString = ''
  7837. if(array && array.length){
  7838. const paramsMap = {
  7839. userid: _userid,
  7840. org: _org,
  7841. oid: _oid,
  7842. type: _type,
  7843. role: _role,
  7844. classId: _classId,
  7845. TscreenType: _TscreenType,
  7846. SscreenType: _SscreenType
  7847. };
  7848. const canshu = array
  7849. .filter(param => paramsMap[param] !== undefined)
  7850. .map(param => `${param}=${paramsMap[param]}`);
  7851. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  7852. }
  7853. let _url = url + queryString
  7854. if(U.UF.UI.form.allForm[id]){
  7855. iframeBool = false
  7856. }
  7857. _formdiv = new U.UF.UI.form(
  7858. false,
  7859. $$("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 }),
  7860. {
  7861. "id": id,
  7862. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7863. "onresize": function () { },
  7864. },
  7865. {
  7866. closecallback: function () { },
  7867. isdrag: false,
  7868. isstretching: false,
  7869. isenlarge: false,
  7870. isnarrow: false
  7871. },
  7872. { "style": { "height": "36px" } },
  7873. undefined,
  7874. undefined,
  7875. dom
  7876. ).form
  7877. }
  7878. // U.MD.D.I.openClick = function(str){
  7879. // var click = '';
  7880. // switch(str){
  7881. // case 'friend':
  7882. // click = '我的好友';
  7883. // break;
  7884. // case 'domain':
  7885. // click = '域名管理';
  7886. // break;
  7887. // case 'disk':
  7888. // click = '我的云盘';
  7889. // break;
  7890. // case 'word':
  7891. // click = 'Word';
  7892. // break;
  7893. // case 'excel':
  7894. // click = 'Execl';
  7895. // break;
  7896. // case 'txt':
  7897. // click = '文本文件';
  7898. // break;
  7899. // case 'lookupFriend':
  7900. // click = '查找好友';
  7901. // break;
  7902. // case 'ftp':
  7903. // click = 'FTP';
  7904. // break;
  7905. // case 'group':
  7906. // click = '群组';
  7907. // break;
  7908. // case 'set':
  7909. // click = '我的设置';
  7910. // break;
  7911. // case 'systemSet':
  7912. // click = '系统设置';
  7913. // break;
  7914. // case 'boomYun':
  7915. // click = '互联办公';
  7916. // break;
  7917. // case 'xz':
  7918. // click = '云端下载';
  7919. // break;
  7920. // case 'client':
  7921. // click = '有思浏览器';
  7922. // break;
  7923. // case 'backEndProgramming':
  7924. // click = '在线后台编程';
  7925. // break;
  7926. // case 'frontEndProgramming':
  7927. // click = '在线前端编程';
  7928. // break;
  7929. // default: break;
  7930. // }
  7931. // if(U.MD.D.I.Ip && click){
  7932. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7933. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7934. // })
  7935. // }
  7936. // }
  7937. /**
  7938. *函数作用:ajax简易函数,使用post格式
  7939. *@param url {data} 后台地址
  7940. *@param data {data} 参数json
  7941. *@param fn {data} 回调函数
  7942. *
  7943. */
  7944. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7945. // var xhr = new XMLHttpRequest();
  7946. // xhr.open("GET",url,true);
  7947. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7948. // xhr.onreadystatechange = function(){
  7949. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7950. // fn.call(this,xhr.responseText);
  7951. // }
  7952. // };
  7953. // xhr.send();
  7954. // }
  7955. /*判断是否是内网IP*/
  7956. // U.MD.D.I.isInnerIPFn = function(str){
  7957. // var curPageUrl = str;
  7958. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7959. // curPageUrl =curPageUrl.replace(reg1,'');
  7960. // // console.log('curPageUrl-1 '+curPageUrl);
  7961. // var reg2 = /\:+/g;//替换冒号为一点
  7962. // curPageUrl =curPageUrl.replace(reg2,'.');
  7963. // // console.log('curPageUrl-2 '+curPageUrl);
  7964. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7965. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7966. // if(curPageUrl[2] != '16'){
  7967. // return ipAddress;
  7968. // }else{
  7969. // return false;
  7970. // }
  7971. // }
  7972. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7973. // //compatibility for firefox and chrome
  7974. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7975. // var pc = new myPeerConnection({
  7976. // iceServers: []
  7977. // }),
  7978. // noop = function() {},
  7979. // localIPs = {},
  7980. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7981. // key;
  7982. // function iterateIP(ip) {
  7983. // if (!localIPs[ip]) onNewIP(ip);
  7984. // localIPs[ip] = true;
  7985. // }
  7986. // //create a bogus data channel
  7987. // pc.createDataChannel("");
  7988. // // create offer and set local description
  7989. // pc.createOffer().then(function(sdp) {
  7990. // sdp.sdp.split('\n').forEach(function(line) {
  7991. // if (line.indexOf('candidate') < 0) return;
  7992. // line.match(ipRegex).forEach(iterateIP);
  7993. // });
  7994. // pc.setLocalDescription(sdp, noop, noop);
  7995. // }).catch(function(reason) {
  7996. // // An error occurred, so handle the failure to connect
  7997. // });
  7998. // //sten for candidate events
  7999. // pc.onicecandidate = function(ice) {
  8000. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8001. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8002. // };
  8003. // }
  8004. // U.MD.D.I.getUserIpBool = function(callback){
  8005. // U.MD.D.I.getUserIP(function(ip){
  8006. // alert("Got IP! :" + ip);
  8007. // });
  8008. //}
  8009. //#endregion
  8010. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8011. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8012. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8013. _userinfo = US.userInfo, //登录用户信息
  8014. _userid = US.userInfo.userid //登录用户id
  8015. let _iframe;
  8016. let _cid = cid,
  8017. _stage = stage,
  8018. _task = task,
  8019. _tool = tool;
  8020. var _jie = $$("div", {
  8021. "style": {
  8022. "position": "absolute",
  8023. "bottom": "50px",
  8024. "right": "50px",
  8025. "zIndex": "9999",
  8026. "backgroundColor": "#2268bc",
  8027. "color": "#fff",
  8028. "padding": "12px 20px",
  8029. "cursor": "pointer",
  8030. "borderRadius": "4px",
  8031. },
  8032. "innerHTML": "提交作业"
  8033. })
  8034. let aTool = ''
  8035. let _loading = document.createElement('div')
  8036. _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;"
  8037. // _loading.id = "";
  8038. let _lchild = document.createElement('div')
  8039. let _limg = document.createElement('img')
  8040. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8041. _limg.style = "width: 26px;margin-right: 10px;"
  8042. _lchild.appendChild(_limg)
  8043. let _lspan = document.createElement('span')
  8044. _lspan.innerHTML = "上传中..."
  8045. _lchild.appendChild(_lspan)
  8046. _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%);"
  8047. _loading.appendChild(_lchild)
  8048. var _box = $$('div', {
  8049. "style": {
  8050. "position": "relative",
  8051. "width": "100%",
  8052. "height": "100%",
  8053. },
  8054. })
  8055. _box.appendChild(_loading)
  8056. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8057. switch (str) {
  8058. case "whiteboard":
  8059. aTool = 1;
  8060. _iframe = $$("iframe", {
  8061. "frameborder": "no",
  8062. "border": "0",
  8063. "scrolling ": "no",
  8064. "style": {
  8065. "cssText": "border:0;width:100%;height:100%"
  8066. },
  8067. "src": "https://beta.iwb.cocorobo.cn/"
  8068. })
  8069. _box.appendChild(_iframe);
  8070. _box.appendChild(_jie);
  8071. _formdiv = new U.UF.UI.form(
  8072. "电子白板",
  8073. _box, {
  8074. "id": "whiteboard" + cid + stage + task + tool,
  8075. "style": {
  8076. "width": "90%",
  8077. "height": "90%",
  8078. "overflow": 'hidden'
  8079. },
  8080. "onresize": function () { }
  8081. }, {
  8082. closecallback: function () { }
  8083. }, {
  8084. "style": {
  8085. "height": "36px"
  8086. }
  8087. }).form; //创建窗体
  8088. _taskbar = {
  8089. "id": str + _formdiv.id,
  8090. "style": {
  8091. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8092. },
  8093. "name": "电子白板",
  8094. "forms": _formdiv,
  8095. "click": function () {
  8096. U.MD.D.I.openApplication(str, obj, info);
  8097. }
  8098. }
  8099. break;
  8100. case "mind":
  8101. aTool = 3;
  8102. _iframe = $$("iframe", {
  8103. "frameborder": "no",
  8104. "border": "0",
  8105. "scrolling ": "no",
  8106. "style": {
  8107. "cssText": "border:0;width:100%;height:100%"
  8108. },
  8109. "src": "/kityminder-editor/dist/index.html"
  8110. })
  8111. _box.appendChild(_iframe);
  8112. _box.appendChild(_jie);
  8113. _formdiv = new U.UF.UI.form(
  8114. "思维导图",
  8115. _box, { //"/jsmind/example/demo.html"
  8116. "id": "mind" + cid + stage + task + tool,
  8117. "style": {
  8118. "width": "90%",
  8119. "height": "90%",
  8120. "overflow": 'hidden'
  8121. },
  8122. "onresize": function () { }
  8123. }, {
  8124. closecallback: function () { }
  8125. }, {
  8126. "style": {
  8127. "height": "36px"
  8128. }
  8129. }).form; //创建窗体
  8130. _taskbar = {
  8131. "id": str + _formdiv.id,
  8132. "style": {
  8133. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8134. },
  8135. "name": "思维导图",
  8136. "forms": _formdiv,
  8137. "click": function () {
  8138. U.MD.D.I.openApplication(str, obj, info);
  8139. }
  8140. }
  8141. break;
  8142. case "MindMap":
  8143. aTool = 3;
  8144. _iframe = $$("iframe", {
  8145. "frameborder": "no",
  8146. "border": "0",
  8147. "scrolling ": "no",
  8148. "style": {
  8149. "cssText": "border:0;width:100%;height:100%"
  8150. },
  8151. "src": "//cloud.cocorobo.cn/mind/"
  8152. })
  8153. _box.appendChild(_iframe);
  8154. _box.appendChild(_jie);
  8155. _formdiv = new U.UF.UI.form(
  8156. "思维导图",
  8157. _box, { //"/jsmind/example/demo.html"
  8158. "id": "mind" + cid + stage + task + tool,
  8159. "style": {
  8160. "width": "90%",
  8161. "height": "90%",
  8162. "overflow": 'hidden'
  8163. },
  8164. "onresize": function () { }
  8165. }, {
  8166. closecallback: function () { }
  8167. }, {
  8168. "style": {
  8169. "height": "36px"
  8170. }
  8171. }).form; //创建窗体
  8172. _taskbar = {
  8173. "id": str + _formdiv.id,
  8174. "style": {
  8175. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8176. },
  8177. "name": "思维导图",
  8178. "forms": _formdiv,
  8179. "click": function () {
  8180. U.MD.D.I.openApplication(str, obj, info);
  8181. }
  8182. }
  8183. break;
  8184. case "doc":
  8185. aTool = 6;
  8186. _iframe = $$("iframe", {
  8187. "frameborder": "no",
  8188. "border": "0",
  8189. "scrolling ": "no",
  8190. "style": {
  8191. "cssText": "border:0;width:100%;height:100%"
  8192. },
  8193. "src": "/Office/Word/WordEditArea.htm"
  8194. })
  8195. _box.appendChild(_iframe);
  8196. _box.appendChild(_jie);
  8197. _formdiv = new U.UF.UI.form(
  8198. "协同文档",
  8199. _box, {
  8200. "id": "doc" + cid + stage + task + tool,
  8201. "style": {
  8202. "width": "90%",
  8203. "height": "90%",
  8204. "overflow": 'hidden'
  8205. },
  8206. "onresize": function () { }
  8207. }, {
  8208. closecallback: function () { }
  8209. }, {
  8210. "style": {
  8211. "height": "36px"
  8212. }
  8213. }).form; //创建窗体
  8214. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8215. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8216. })
  8217. _taskbar = {
  8218. "id": str + _formdiv.id,
  8219. "style": {
  8220. "backgroundImage": "url(/img/icon/doc.png)"
  8221. },
  8222. "name": "协同文档",
  8223. "forms": _formdiv,
  8224. "click": function () {
  8225. U.MD.D.I.openApplication(str, obj, info);
  8226. }
  8227. }
  8228. break;
  8229. case "mindNetwork": //好友打开
  8230. aTool = 7;
  8231. _iframe = $$("iframe", {
  8232. "webkitallowfullscreen": "",
  8233. "mozallowfullscreen": "",
  8234. "allowfullscreen": "",
  8235. "frameborder": "no",
  8236. "border": "0",
  8237. "scrolling ": "no",
  8238. "style": {
  8239. "cssText": "border:0; width:100%; height:100%;"
  8240. },
  8241. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8242. })
  8243. _box.appendChild(_iframe);
  8244. _box.appendChild(_jie);
  8245. _formdiv = new U.UF.UI.form(
  8246. "思维网格",
  8247. _box, {
  8248. "id": "mindNetwork" + cid + stage + task + tool,
  8249. "style": {
  8250. "width": "90%",
  8251. "height": "90%",
  8252. "overflow": 'hidden'
  8253. },
  8254. "onresize": function () { }
  8255. }, {
  8256. closecallback: function () { }
  8257. }, {
  8258. "style": {
  8259. "height": "36px"
  8260. }
  8261. }).form; //创建窗体
  8262. _taskbar = {
  8263. "id": str + _formdiv.id,
  8264. "style": {
  8265. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8266. },
  8267. "name": "思维网格",
  8268. "forms": _formdiv,
  8269. "click": function () {
  8270. U.MD.D.I.openApplication(str, obj, info);
  8271. }
  8272. }
  8273. break;
  8274. case "courseDesign":
  8275. _iframe = $$("iframe", {
  8276. "webkitallowfullscreen": "",
  8277. "mozallowfullscreen": "",
  8278. "allowfullscreen": "",
  8279. "frameborder": "no",
  8280. "border": "0",
  8281. "scrolling ": "no",
  8282. "style": {
  8283. "cssText": "border:0; width:100%; height:100%;"
  8284. },
  8285. "src": "/course-design-vue"
  8286. })
  8287. _box.appendChild(_iframe);
  8288. _box.appendChild(_jie);
  8289. _formdiv = new U.UF.UI.form(
  8290. "项目设计",
  8291. _box, {
  8292. "id": "courseDesign" + cid + stage + task + tool,
  8293. "style": {
  8294. "width": "90%",
  8295. "height": "90%",
  8296. "overflow": 'hidden'
  8297. },
  8298. "onresize": function () { }
  8299. }, {
  8300. closecallback: function () { }
  8301. }, {
  8302. "style": {
  8303. "height": "36px"
  8304. }
  8305. }).form; //创建窗体
  8306. _taskbar = {
  8307. "id": str + _formdiv.id,
  8308. "style": {
  8309. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8310. },
  8311. "name": "项目设计",
  8312. "forms": _formdiv,
  8313. "click": function () {
  8314. U.MD.D.I.openApplication(str, obj, info);
  8315. }
  8316. }
  8317. break;
  8318. }
  8319. const script1 = document.createElement("script");
  8320. script1.type = "text/javascript";
  8321. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8322. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8323. const script2 = document.createElement("script");
  8324. script2.type = "text/javascript";
  8325. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8326. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8327. const script3 = document.createElement("script");
  8328. script3.type = "text/javascript";
  8329. script3.charset = "UTF-8";
  8330. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8331. const script4 = document.createElement("script");
  8332. script4.type = "text/javascript";
  8333. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8334. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8335. if (_iframe) {
  8336. if (str == 'doc') {
  8337. _iframe = _formdiv.querySelector('iframe')
  8338. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8339. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8340. _iframe.contentWindow.document.body.appendChild(script1);
  8341. _iframe.contentWindow.document.body.appendChild(script2);
  8342. // _iframe.contentWindow.document.body.appendChild(script3);
  8343. _iframe.contentWindow.document.body.appendChild(script4);
  8344. })
  8345. if (onloadListener) {
  8346. _iframe.contentDocument.location.reload()
  8347. } else {
  8348. _iframe.contentDocument.location.reload()
  8349. }
  8350. } else if (str == 'courseDesign') {
  8351. U.UF.DL.iframeLoad(_iframe, function () {
  8352. // _iframe.contentWindow.U.MD.O.W.load();
  8353. // _iframe.contentWindow.document.body.appendChild(script1);
  8354. _iframe.contentWindow.document.body.appendChild(script2);
  8355. _iframe.contentWindow.document.body.appendChild(script4);
  8356. })
  8357. } else if (str == 'mind') {
  8358. _iframe = _formdiv.querySelector('iframe')
  8359. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8360. //
  8361. _iframe.contentWindow.document.body.appendChild(script1);
  8362. _iframe.contentWindow.document.body.appendChild(script2);
  8363. _iframe.contentWindow.document.body.appendChild(script4);
  8364. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8365. })
  8366. if (onloadListener) {
  8367. _iframe.contentDocument.location.reload()
  8368. } else {
  8369. _iframe.contentDocument.location.reload()
  8370. }
  8371. } else if (str == 'whiteboard') {
  8372. _iframe = _formdiv.querySelector('iframe')
  8373. let onloadListener = _iframe.onload = () => {
  8374. _iframe.contentWindow.document.body.appendChild(script1);
  8375. _iframe.contentWindow.document.body.appendChild(script2);
  8376. _iframe.contentWindow.document.body.appendChild(script4);
  8377. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8378. };
  8379. // if (onloadListener) {
  8380. // try {
  8381. // _iframe.src += "?cocorobo="+new Date().getTime()
  8382. // _iframe.contentWindow.document.location.reload()
  8383. // } catch (error) {
  8384. // }
  8385. // } else {
  8386. // _iframe.contentDocument.location.reload()
  8387. // }
  8388. } else {
  8389. _iframe.onload = () => {
  8390. _iframe.contentWindow.document.body.appendChild(script1);
  8391. _iframe.contentWindow.document.body.appendChild(script2);
  8392. // _iframe.contentWindow.document.body.appendChild(script3);
  8393. _iframe.contentWindow.document.body.appendChild(script4);
  8394. };
  8395. }
  8396. _jie.onclick = async () => {
  8397. let text = ''
  8398. if (aTool == 1) {
  8399. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8400. } else if (aTool == 6) {
  8401. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8402. } else if (aTool == 3) {
  8403. text = await U.MD.D.I.getEditorContent(_iframe);
  8404. }
  8405. _loading.style.display = 'flex'
  8406. console.log(_loading);
  8407. var _ajs = _iframe.contentWindow.document.createElement("script");
  8408. _ajs.type = "text/javascript";
  8409. _ajs.innerHTML =
  8410. // 'console.log(' + _loading + ');\n' +
  8411. 'var _js = document.createElement("script");\n' +
  8412. '_js.type="text/javascript";\n' +
  8413. '_js.charset="UTF-8";\n' +
  8414. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8415. "_js.onload = function(){\n" +
  8416. ' var a = document.getElementsByTagName("img")\n' +
  8417. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8418. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8419. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8420. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8421. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8422. "beforeUpload_shishi(file," +
  8423. "'" +
  8424. _userid +
  8425. "'" +
  8426. ", " +
  8427. "'" +
  8428. _cid +
  8429. "'" +
  8430. ", " +
  8431. "'" +
  8432. _stage +
  8433. "'" +
  8434. ", " +
  8435. "'" +
  8436. _task +
  8437. "'" +
  8438. ", " +
  8439. "'" +
  8440. _tool +
  8441. "'" +
  8442. ", " +
  8443. "'" +
  8444. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8445. "'" +
  8446. ", " +
  8447. "'" +
  8448. aTool +
  8449. "'" +
  8450. ", " +
  8451. "`" +
  8452. text +
  8453. "`" +
  8454. ")\n" +
  8455. " });\n" +
  8456. "}\n" +
  8457. "document.head.appendChild(_js);\n";
  8458. _iframe.contentWindow.document.head.appendChild(_ajs);
  8459. }
  8460. }
  8461. //U.MD.D.I.openClick(str);
  8462. //如果有任务栏信息
  8463. // if (_taskbar) {
  8464. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8465. // }
  8466. }
  8467. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8468. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8469. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8470. _userinfo = US.userInfo, //登录用户信息
  8471. _userid = US.userInfo.userid //登录用户id
  8472. let _iframe;
  8473. let _cid = cid,
  8474. _stage = stage,
  8475. _task = task,
  8476. _tool = tool;
  8477. var _jie = $$("div", {
  8478. "style": {
  8479. "position": "absolute",
  8480. "bottom": "50px",
  8481. "right": "50px",
  8482. "zIndex": "9999",
  8483. "backgroundColor": "#2268bc",
  8484. "color": "#fff",
  8485. "padding": "12px 20px",
  8486. "cursor": "pointer",
  8487. "borderRadius": "4px",
  8488. },
  8489. "innerHTML": "提交作业"
  8490. })
  8491. let aTool = ''
  8492. let _loading = document.createElement('div')
  8493. _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;"
  8494. // _loading.id = "";
  8495. let _lchild = document.createElement('div')
  8496. let _limg = document.createElement('img')
  8497. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8498. _limg.style = "width: 26px;margin-right: 10px;"
  8499. _lchild.appendChild(_limg)
  8500. let _lspan = document.createElement('span')
  8501. _lspan.innerHTML = "上传中..."
  8502. _lchild.appendChild(_lspan)
  8503. _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%);"
  8504. _loading.appendChild(_lchild)
  8505. let _box = $$('div', {
  8506. "style": {
  8507. "position": "relative",
  8508. "width": "100%",
  8509. "height": "100%",
  8510. },
  8511. })
  8512. _box.appendChild(_loading)
  8513. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8514. switch (str) {
  8515. case "whiteboard":
  8516. aTool = 1;
  8517. _iframe = $$("iframe", {
  8518. "frameborder": "no",
  8519. "border": "0",
  8520. "scrolling ": "no",
  8521. "style": {
  8522. "cssText": "border:0;width:100%;height:100%"
  8523. },
  8524. "src": "https://beta.iwb.cocorobo.cn/"
  8525. })
  8526. _box.appendChild(_iframe);
  8527. _box.appendChild(_jie);
  8528. _formdiv = new U.UF.UI.form(
  8529. "电子白板",
  8530. _box, {
  8531. "id": "whiteboard" + cid + stage + task + tool,
  8532. "style": {
  8533. "width": "90%",
  8534. "height": "90%",
  8535. "overflow": 'hidden'
  8536. },
  8537. "onresize": function () { }
  8538. }, {
  8539. closecallback: function () { }
  8540. }, {
  8541. "style": {
  8542. "height": "36px"
  8543. }
  8544. }).form; //创建窗体
  8545. _taskbar = {
  8546. "id": str + _formdiv.id,
  8547. "style": {
  8548. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8549. },
  8550. "name": "电子白板",
  8551. "forms": _formdiv,
  8552. "click": function () {
  8553. U.MD.D.I.openApplication(str, obj, info);
  8554. }
  8555. }
  8556. break;
  8557. case "mind":
  8558. aTool = 3;
  8559. _iframe = $$("iframe", {
  8560. "frameborder": "no",
  8561. "border": "0",
  8562. "scrolling ": "no",
  8563. "style": {
  8564. "cssText": "border:0;width:100%;height:100%"
  8565. },
  8566. "src": "/kityminder-editor/dist/index.html"
  8567. })
  8568. _box.appendChild(_iframe);
  8569. _box.appendChild(_jie);
  8570. _formdiv = new U.UF.UI.form(
  8571. "思维导图",
  8572. _box, { //"/jsmind/example/demo.html"
  8573. "id": "mind" + cid + stage + task + tool,
  8574. "style": {
  8575. "width": "90%",
  8576. "height": "90%",
  8577. "overflow": 'hidden'
  8578. },
  8579. "onresize": function () { }
  8580. }, {
  8581. closecallback: function () { }
  8582. }, {
  8583. "style": {
  8584. "height": "36px"
  8585. }
  8586. }).form; //创建窗体
  8587. _taskbar = {
  8588. "id": str + _formdiv.id,
  8589. "style": {
  8590. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8591. },
  8592. "name": "思维导图",
  8593. "forms": _formdiv,
  8594. "click": function () {
  8595. U.MD.D.I.openApplication(str, obj, info);
  8596. }
  8597. }
  8598. break;
  8599. case "MindMap":
  8600. aTool = 3;
  8601. _iframe = $$("iframe", {
  8602. "frameborder": "no",
  8603. "border": "0",
  8604. "scrolling ": "no",
  8605. "style": {
  8606. "cssText": "border:0;width:100%;height:100%"
  8607. },
  8608. "src": "//cloud.cocorobo.cn/mind/"
  8609. })
  8610. _box.appendChild(_iframe);
  8611. _box.appendChild(_jie);
  8612. _formdiv = new U.UF.UI.form(
  8613. "思维导图",
  8614. _box, { //"/jsmind/example/demo.html"
  8615. "id": "mind" + cid + stage + task + tool,
  8616. "style": {
  8617. "width": "90%",
  8618. "height": "90%",
  8619. "overflow": 'hidden'
  8620. },
  8621. "onresize": function () { }
  8622. }, {
  8623. closecallback: function () { }
  8624. }, {
  8625. "style": {
  8626. "height": "36px"
  8627. }
  8628. }).form; //创建窗体
  8629. _taskbar = {
  8630. "id": str + _formdiv.id,
  8631. "style": {
  8632. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8633. },
  8634. "name": "思维导图",
  8635. "forms": _formdiv,
  8636. "click": function () {
  8637. U.MD.D.I.openApplication(str, obj, info);
  8638. }
  8639. }
  8640. break;
  8641. case "doc":
  8642. aTool = 6;
  8643. _iframe = $$("iframe", {
  8644. "frameborder": "no",
  8645. "border": "0",
  8646. "scrolling ": "no",
  8647. "style": {
  8648. "cssText": "border:0;width:100%;height:100%"
  8649. },
  8650. "src": "/Office/Word/WordEditArea.htm"
  8651. })
  8652. _box.appendChild(_iframe);
  8653. _box.appendChild(_jie);
  8654. _formdiv = new U.UF.UI.form(
  8655. "协同文档",
  8656. _box, {
  8657. "id": "doc" + cid + stage + task + tool,
  8658. "style": {
  8659. "width": "90%",
  8660. "height": "90%",
  8661. "overflow": 'hidden'
  8662. },
  8663. "onresize": function () { }
  8664. }, {
  8665. closecallback: function () { }
  8666. }, {
  8667. "style": {
  8668. "height": "36px"
  8669. }
  8670. }).form; //创建窗体
  8671. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8672. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8673. })
  8674. _taskbar = {
  8675. "id": str + _formdiv.id,
  8676. "style": {
  8677. "backgroundImage": "url(/img/icon/doc.png)"
  8678. },
  8679. "name": "协同文档",
  8680. "forms": _formdiv,
  8681. "click": function () {
  8682. U.MD.D.I.openApplication(str, obj, info);
  8683. }
  8684. }
  8685. break;
  8686. case "mindNetwork": //好友打开
  8687. aTool = 7;
  8688. _iframe = $$("iframe", {
  8689. "webkitallowfullscreen": "",
  8690. "mozallowfullscreen": "",
  8691. "allowfullscreen": "",
  8692. "frameborder": "no",
  8693. "border": "0",
  8694. "scrolling ": "no",
  8695. "style": {
  8696. "cssText": "border:0; width:100%; height:100%;"
  8697. },
  8698. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8699. })
  8700. _box.appendChild(_iframe);
  8701. _box.appendChild(_jie);
  8702. _formdiv = new U.UF.UI.form(
  8703. "思维网格",
  8704. _box, {
  8705. "id": "mindNetwork" + cid + stage + task + tool,
  8706. "style": {
  8707. "width": "90%",
  8708. "height": "90%",
  8709. "overflow": 'hidden'
  8710. },
  8711. "onresize": function () { }
  8712. }, {
  8713. closecallback: function () { }
  8714. }, {
  8715. "style": {
  8716. "height": "36px"
  8717. }
  8718. }).form; //创建窗体
  8719. _taskbar = {
  8720. "id": str + _formdiv.id,
  8721. "style": {
  8722. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8723. },
  8724. "name": "思维网格",
  8725. "forms": _formdiv,
  8726. "click": function () {
  8727. U.MD.D.I.openApplication(str, obj, info);
  8728. }
  8729. }
  8730. break;
  8731. case "courseDesign":
  8732. _iframe = $$("iframe", {
  8733. "webkitallowfullscreen": "",
  8734. "mozallowfullscreen": "",
  8735. "allowfullscreen": "",
  8736. "frameborder": "no",
  8737. "border": "0",
  8738. "scrolling ": "no",
  8739. "style": {
  8740. "cssText": "border:0; width:100%; height:100%;"
  8741. },
  8742. "src": "/course-design-vue"
  8743. })
  8744. _box.appendChild(_iframe);
  8745. _box.appendChild(_jie);
  8746. _formdiv = new U.UF.UI.form(
  8747. "项目设计",
  8748. _box, {
  8749. "id": "courseDesign" + cid + stage + task + tool,
  8750. "style": {
  8751. "width": "90%",
  8752. "height": "90%",
  8753. "overflow": 'hidden'
  8754. },
  8755. "onresize": function () { }
  8756. }, {
  8757. closecallback: function () { }
  8758. }, {
  8759. "style": {
  8760. "height": "36px"
  8761. }
  8762. }).form; //创建窗体
  8763. _taskbar = {
  8764. "id": str + _formdiv.id,
  8765. "style": {
  8766. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8767. },
  8768. "name": "项目设计",
  8769. "forms": _formdiv,
  8770. "click": function () {
  8771. U.MD.D.I.openApplication(str, obj, info);
  8772. }
  8773. }
  8774. break;
  8775. }
  8776. const script1 = document.createElement("script");
  8777. script1.type = "text/javascript";
  8778. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8779. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8780. const script2 = document.createElement("script");
  8781. script2.type = "text/javascript";
  8782. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8783. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8784. const script3 = document.createElement("script");
  8785. script3.type = "text/javascript";
  8786. script3.charset = "UTF-8";
  8787. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8788. const script4 = document.createElement("script");
  8789. script4.type = "text/javascript";
  8790. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8791. script4.src = window.origin + "/js/Common/jietu2E.js";
  8792. if (_iframe) {
  8793. if (str == 'doc') {
  8794. _iframe = _formdiv.querySelector('iframe')
  8795. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8796. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8797. _iframe.contentWindow.document.body.appendChild(script1);
  8798. _iframe.contentWindow.document.body.appendChild(script2);
  8799. // _iframe.contentWindow.document.body.appendChild(script3);
  8800. _iframe.contentWindow.document.body.appendChild(script4);
  8801. })
  8802. if (onloadListener) {
  8803. _iframe.contentDocument.location.reload()
  8804. } else {
  8805. _iframe.contentDocument.location.reload()
  8806. }
  8807. } else if (str == 'courseDesign') {
  8808. U.UF.DL.iframeLoad(_iframe, function () {
  8809. // _iframe.contentWindow.U.MD.O.W.load();
  8810. // _iframe.contentWindow.document.body.appendChild(script1);
  8811. _iframe.contentWindow.document.body.appendChild(script2);
  8812. _iframe.contentWindow.document.body.appendChild(script4);
  8813. })
  8814. } else if (str == 'mind') {
  8815. _iframe = _formdiv.querySelector('iframe')
  8816. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8817. //
  8818. _iframe.contentWindow.document.body.appendChild(script1);
  8819. _iframe.contentWindow.document.body.appendChild(script2);
  8820. _iframe.contentWindow.document.body.appendChild(script4);
  8821. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8822. })
  8823. if (onloadListener) {
  8824. _iframe.contentDocument.location.reload()
  8825. } else {
  8826. _iframe.contentDocument.location.reload()
  8827. }
  8828. } else if (str == 'whiteboard') {
  8829. _iframe = _formdiv.querySelector('iframe')
  8830. let onloadListener = _iframe.onload = () => {
  8831. _iframe.contentWindow.document.body.appendChild(script1);
  8832. _iframe.contentWindow.document.body.appendChild(script2);
  8833. _iframe.contentWindow.document.body.appendChild(script4);
  8834. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8835. };
  8836. // if (onloadListener) {
  8837. // try {
  8838. // _iframe.src += "?cocorobo="+new Date().getTime()
  8839. // _iframe.contentWindow.document.location.reload()
  8840. // } catch (error) {
  8841. // }
  8842. // } else {
  8843. // _iframe.contentDocument.location.reload()
  8844. // }
  8845. } else {
  8846. _iframe.onload = () => {
  8847. _iframe.contentWindow.document.body.appendChild(script1);
  8848. _iframe.contentWindow.document.body.appendChild(script2);
  8849. // _iframe.contentWindow.document.body.appendChild(script3);
  8850. _iframe.contentWindow.document.body.appendChild(script4);
  8851. };
  8852. }
  8853. _jie.onclick = async () => {
  8854. let text = ''
  8855. if (aTool == 1) {
  8856. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8857. } else if (aTool == 6) {
  8858. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8859. } else if (aTool == 3) {
  8860. text = await U.MD.D.I.getEditorContent(_iframe);
  8861. }
  8862. _loading.style.display = 'flex'
  8863. console.log(_loading);
  8864. var _ajs = _iframe.contentWindow.document.createElement("script");
  8865. _ajs.type = "text/javascript";
  8866. _ajs.innerHTML =
  8867. // 'console.log(' + _loading + ');\n' +
  8868. 'var _js = document.createElement("script");\n' +
  8869. '_js.type="text/javascript";\n' +
  8870. '_js.charset="UTF-8";\n' +
  8871. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8872. "_js.onload = function(){\n" +
  8873. ' var a = document.getElementsByTagName("img")\n' +
  8874. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8875. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8876. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8877. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8878. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8879. "beforeUpload_shishi(file," +
  8880. "'" +
  8881. _userid +
  8882. "'" +
  8883. ", " +
  8884. "'" +
  8885. _cid +
  8886. "'" +
  8887. ", " +
  8888. "'" +
  8889. _stage +
  8890. "'" +
  8891. ", " +
  8892. "'" +
  8893. _task +
  8894. "'" +
  8895. ", " +
  8896. "'" +
  8897. _tool +
  8898. "'" +
  8899. ", " +
  8900. "'" +
  8901. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8902. "'" +
  8903. ", " +
  8904. "'" +
  8905. aTool +
  8906. "'" +
  8907. ", " +
  8908. "`" +
  8909. text +
  8910. "`" +
  8911. ")\n" +
  8912. " });\n" +
  8913. "}\n" +
  8914. "document.head.appendChild(_js);\n";
  8915. _iframe.contentWindow.document.head.appendChild(_ajs);
  8916. }
  8917. }
  8918. //U.MD.D.I.openClick(str);
  8919. //如果有任务栏信息
  8920. // if (_taskbar) {
  8921. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8922. // }
  8923. }
  8924. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8925. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8926. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8927. _userid = student.userid, //登录用户id
  8928. _username = student.student //用户名字
  8929. let _iframe;
  8930. let _cid = cid,
  8931. _stage = stage,
  8932. _task = task,
  8933. _tool = tool;
  8934. var _jie = $$("div", {
  8935. "style": {
  8936. "position": "absolute",
  8937. "bottom": "50px",
  8938. "right": "50px",
  8939. "zIndex": "9999",
  8940. "backgroundColor": "#2268bc",
  8941. "color": "#fff",
  8942. "padding": "12px 20px",
  8943. "cursor": "pointer",
  8944. "borderRadius": "4px",
  8945. },
  8946. "innerHTML": "提交作业"
  8947. })
  8948. let aTool = ''
  8949. let _loading = document.createElement('div')
  8950. _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;"
  8951. // _loading.id = "";
  8952. let _lchild = document.createElement('div')
  8953. let _limg = document.createElement('img')
  8954. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8955. _limg.style = "width: 26px;margin-right: 10px;"
  8956. _lchild.appendChild(_limg)
  8957. let _lspan = document.createElement('span')
  8958. _lspan.innerHTML = "上传中..."
  8959. _lchild.appendChild(_lspan)
  8960. _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%);"
  8961. _loading.appendChild(_lchild)
  8962. var _box = $$('div', {
  8963. "style": {
  8964. "position": "relative",
  8965. "width": "100%",
  8966. "height": "100%",
  8967. },
  8968. })
  8969. _box.appendChild(_loading)
  8970. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8971. switch (str) {
  8972. case "whiteboard":
  8973. aTool = 1;
  8974. _iframe = $$("iframe", {
  8975. "frameborder": "no",
  8976. "border": "0",
  8977. "scrolling ": "no",
  8978. "style": {
  8979. "cssText": "border:0;width:100%;height:100%"
  8980. },
  8981. "src": "https://beta.iwb.cocorobo.cn/"
  8982. })
  8983. _box.appendChild(_iframe);
  8984. _box.appendChild(_jie);
  8985. _formdiv = new U.UF.UI.form(
  8986. "电子白板-" + _username,
  8987. _box, {
  8988. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8989. "style": {
  8990. "width": "90%",
  8991. "height": "90%",
  8992. "overflow": 'hidden'
  8993. },
  8994. "onresize": function () { }
  8995. }, {
  8996. closecallback: function () { }
  8997. }, {
  8998. "style": {
  8999. "height": "36px"
  9000. }
  9001. }).form; //创建窗体
  9002. _taskbar = {
  9003. "id": str + _formdiv.id,
  9004. "style": {
  9005. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9006. },
  9007. "name": "电子白板",
  9008. "forms": _formdiv,
  9009. "click": function () {
  9010. U.MD.D.I.openApplication(str, obj, info);
  9011. }
  9012. }
  9013. break;
  9014. case "mind":
  9015. aTool = 3;
  9016. _iframe = $$("iframe", {
  9017. "frameborder": "no",
  9018. "border": "0",
  9019. "scrolling ": "no",
  9020. "style": {
  9021. "cssText": "border:0;width:100%;height:100%"
  9022. },
  9023. "src": "/kityminder-editor/dist/index.html"
  9024. })
  9025. _box.appendChild(_iframe);
  9026. _box.appendChild(_jie);
  9027. _formdiv = new U.UF.UI.form(
  9028. "思维导图-" + _username,
  9029. _box, { //"/jsmind/example/demo.html"
  9030. "id": "mind" + cid + stage + task + tool + _userid,
  9031. "style": {
  9032. "width": "90%",
  9033. "height": "90%",
  9034. "overflow": 'hidden'
  9035. },
  9036. "onresize": function () { }
  9037. }, {
  9038. closecallback: function () { }
  9039. }, {
  9040. "style": {
  9041. "height": "36px"
  9042. }
  9043. }).form; //创建窗体
  9044. _taskbar = {
  9045. "id": str + _formdiv.id,
  9046. "style": {
  9047. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9048. },
  9049. "name": "思维导图",
  9050. "forms": _formdiv,
  9051. "click": function () {
  9052. U.MD.D.I.openApplication(str, obj, info);
  9053. }
  9054. }
  9055. break;
  9056. case "MindMap":
  9057. aTool = 3;
  9058. _iframe = $$("iframe", {
  9059. "frameborder": "no",
  9060. "border": "0",
  9061. "scrolling ": "no",
  9062. "style": {
  9063. "cssText": "border:0;width:100%;height:100%"
  9064. },
  9065. "src": "//cloud.cocorobo.cn/mind/"
  9066. })
  9067. _box.appendChild(_iframe);
  9068. _box.appendChild(_jie);
  9069. _formdiv = new U.UF.UI.form(
  9070. "思维导图-" + _username,
  9071. _box, { //"/jsmind/example/demo.html"
  9072. "id": "mind" + cid + stage + task + tool + _userid,
  9073. "style": {
  9074. "width": "90%",
  9075. "height": "90%",
  9076. "overflow": 'hidden'
  9077. },
  9078. "onresize": function () { }
  9079. }, {
  9080. closecallback: function () { }
  9081. }, {
  9082. "style": {
  9083. "height": "36px"
  9084. }
  9085. }).form; //创建窗体
  9086. _taskbar = {
  9087. "id": str + _formdiv.id,
  9088. "style": {
  9089. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9090. },
  9091. "name": "思维导图",
  9092. "forms": _formdiv,
  9093. "click": function () {
  9094. U.MD.D.I.openApplication(str, obj, info);
  9095. }
  9096. }
  9097. break;
  9098. case "doc":
  9099. aTool = 6;
  9100. _iframe = $$("iframe", {
  9101. "frameborder": "no",
  9102. "border": "0",
  9103. "scrolling ": "no",
  9104. "style": {
  9105. "cssText": "border:0;width:100%;height:100%"
  9106. },
  9107. "src": "/Office/Word/WordEditArea.htm"
  9108. })
  9109. _box.appendChild(_iframe);
  9110. _box.appendChild(_jie);
  9111. _formdiv = new U.UF.UI.form(
  9112. "协同文档-" + _username,
  9113. _box, {
  9114. "id": "doc" + cid + stage + task + tool + _userid,
  9115. "style": {
  9116. "width": "90%",
  9117. "height": "90%",
  9118. "overflow": 'hidden'
  9119. },
  9120. "onresize": function () { }
  9121. }, {
  9122. closecallback: function () { }
  9123. }, {
  9124. "style": {
  9125. "height": "36px"
  9126. }
  9127. }).form; //创建窗体
  9128. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9129. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9130. })
  9131. _taskbar = {
  9132. "id": str + _formdiv.id,
  9133. "style": {
  9134. "backgroundImage": "url(/img/icon/doc.png)"
  9135. },
  9136. "name": "协同文档",
  9137. "forms": _formdiv,
  9138. "click": function () {
  9139. U.MD.D.I.openApplication(str, obj, info);
  9140. }
  9141. }
  9142. break;
  9143. case "mindNetwork": //好友打开
  9144. aTool = 7;
  9145. _iframe = $$("iframe", {
  9146. "webkitallowfullscreen": "",
  9147. "mozallowfullscreen": "",
  9148. "allowfullscreen": "",
  9149. "frameborder": "no",
  9150. "border": "0",
  9151. "scrolling ": "no",
  9152. "style": {
  9153. "cssText": "border:0; width:100%; height:100%;"
  9154. },
  9155. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9156. })
  9157. _box.appendChild(_iframe);
  9158. _box.appendChild(_jie);
  9159. _formdiv = new U.UF.UI.form(
  9160. "思维网格-" + _username,
  9161. _box, {
  9162. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9163. "style": {
  9164. "width": "90%",
  9165. "height": "90%",
  9166. "overflow": 'hidden'
  9167. },
  9168. "onresize": function () { }
  9169. }, {
  9170. closecallback: function () { }
  9171. }, {
  9172. "style": {
  9173. "height": "36px"
  9174. }
  9175. }).form; //创建窗体
  9176. _taskbar = {
  9177. "id": str + _formdiv.id,
  9178. "style": {
  9179. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9180. },
  9181. "name": "思维网格",
  9182. "forms": _formdiv,
  9183. "click": function () {
  9184. U.MD.D.I.openApplication(str, obj, info);
  9185. }
  9186. }
  9187. break;
  9188. case "courseDesign":
  9189. _iframe = $$("iframe", {
  9190. "webkitallowfullscreen": "",
  9191. "mozallowfullscreen": "",
  9192. "allowfullscreen": "",
  9193. "frameborder": "no",
  9194. "border": "0",
  9195. "scrolling ": "no",
  9196. "style": {
  9197. "cssText": "border:0; width:100%; height:100%;"
  9198. },
  9199. "src": "/course-design-vue"
  9200. })
  9201. _box.appendChild(_iframe);
  9202. _box.appendChild(_jie);
  9203. _formdiv = new U.UF.UI.form(
  9204. "项目设计-" + _username,
  9205. _box, {
  9206. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9207. "style": {
  9208. "width": "90%",
  9209. "height": "90%",
  9210. "overflow": 'hidden'
  9211. },
  9212. "onresize": function () { }
  9213. }, {
  9214. closecallback: function () { }
  9215. }, {
  9216. "style": {
  9217. "height": "36px"
  9218. }
  9219. }).form; //创建窗体
  9220. _taskbar = {
  9221. "id": str + _formdiv.id,
  9222. "style": {
  9223. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9224. },
  9225. "name": "项目设计",
  9226. "forms": _formdiv,
  9227. "click": function () {
  9228. U.MD.D.I.openApplication(str, obj, info);
  9229. }
  9230. }
  9231. break;
  9232. }
  9233. const script1 = document.createElement("script");
  9234. script1.type = "text/javascript";
  9235. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9236. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9237. const script2 = document.createElement("script");
  9238. script2.type = "text/javascript";
  9239. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9240. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9241. const script3 = document.createElement("script");
  9242. script3.type = "text/javascript";
  9243. script3.charset = "UTF-8";
  9244. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9245. const script4 = document.createElement("script");
  9246. script4.type = "text/javascript";
  9247. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9248. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9249. if (_iframe) {
  9250. if (str == 'doc') {
  9251. _iframe = _formdiv.querySelector('iframe')
  9252. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9253. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9254. _iframe.contentWindow.document.body.appendChild(script1);
  9255. _iframe.contentWindow.document.body.appendChild(script2);
  9256. // _iframe.contentWindow.document.body.appendChild(script3);
  9257. _iframe.contentWindow.document.body.appendChild(script4);
  9258. })
  9259. if (onloadListener) {
  9260. _iframe.contentDocument.location.reload()
  9261. } else {
  9262. _iframe.contentDocument.location.reload()
  9263. }
  9264. } else if (str == 'courseDesign') {
  9265. U.UF.DL.iframeLoad(_iframe, function () {
  9266. // _iframe.contentWindow.U.MD.O.W.load();
  9267. // _iframe.contentWindow.document.body.appendChild(script1);
  9268. _iframe.contentWindow.document.body.appendChild(script2);
  9269. _iframe.contentWindow.document.body.appendChild(script4);
  9270. })
  9271. } else if (str == 'mind') {
  9272. _iframe = _formdiv.querySelector('iframe')
  9273. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9274. //
  9275. _iframe.contentWindow.document.body.appendChild(script1);
  9276. _iframe.contentWindow.document.body.appendChild(script2);
  9277. _iframe.contentWindow.document.body.appendChild(script4);
  9278. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9279. })
  9280. if (onloadListener) {
  9281. _iframe.contentDocument.location.reload()
  9282. } else {
  9283. _iframe.contentDocument.location.reload()
  9284. }
  9285. } else if (str == 'whiteboard') {
  9286. _iframe = _formdiv.querySelector('iframe')
  9287. let onloadListener = _iframe.onload = () => {
  9288. _iframe.contentWindow.document.body.appendChild(script1);
  9289. _iframe.contentWindow.document.body.appendChild(script2);
  9290. _iframe.contentWindow.document.body.appendChild(script4);
  9291. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9292. };
  9293. // if (onloadListener) {
  9294. // try {
  9295. // _iframe.src += "?cocorobo="+new Date().getTime()
  9296. // _iframe.contentWindow.document.location.reload()
  9297. // } catch (error) {
  9298. // }
  9299. // } else {
  9300. // _iframe.contentDocument.location.reload()
  9301. // }
  9302. } else {
  9303. _iframe.onload = () => {
  9304. _iframe.contentWindow.document.body.appendChild(script1);
  9305. _iframe.contentWindow.document.body.appendChild(script2);
  9306. // _iframe.contentWindow.document.body.appendChild(script3);
  9307. _iframe.contentWindow.document.body.appendChild(script4);
  9308. };
  9309. }
  9310. _jie.onclick = async () => {
  9311. let text = ''
  9312. if (aTool == 1) {
  9313. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9314. } else if (aTool == 6) {
  9315. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9316. } else if (aTool == 3) {
  9317. text = await U.MD.D.I.getEditorContent(_iframe);
  9318. }
  9319. _loading.style.display = 'flex'
  9320. console.log(_loading);
  9321. var _ajs = _iframe.contentWindow.document.createElement("script");
  9322. _ajs.type = "text/javascript";
  9323. _ajs.innerHTML =
  9324. // 'console.log(' + _loading + ');\n' +
  9325. 'var _js = document.createElement("script");\n' +
  9326. '_js.type="text/javascript";\n' +
  9327. '_js.charset="UTF-8";\n' +
  9328. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9329. "_js.onload = function(){\n" +
  9330. ' var a = document.getElementsByTagName("img")\n' +
  9331. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9332. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9333. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9334. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9335. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9336. "beforeUpload_shishi(file," +
  9337. "'" +
  9338. _userid +
  9339. "'" +
  9340. ", " +
  9341. "'" +
  9342. _cid +
  9343. "'" +
  9344. ", " +
  9345. "'" +
  9346. _stage +
  9347. "'" +
  9348. ", " +
  9349. "'" +
  9350. _task +
  9351. "'" +
  9352. ", " +
  9353. "'" +
  9354. _tool +
  9355. "'" +
  9356. ", " +
  9357. "'" +
  9358. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9359. "'" +
  9360. ", " +
  9361. "'" +
  9362. aTool +
  9363. "'" +
  9364. ", " +
  9365. "`" +
  9366. text +
  9367. "`" +
  9368. ")\n" +
  9369. " });\n" +
  9370. "}\n" +
  9371. "document.head.appendChild(_js);\n";
  9372. _iframe.contentWindow.document.head.appendChild(_ajs);
  9373. }
  9374. }
  9375. }
  9376. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9377. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9378. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9379. _userid = student.userid, //登录用户id
  9380. _username = student.student //用户名字
  9381. let _iframe;
  9382. let _cid = cid,
  9383. _stage = stage,
  9384. _task = task,
  9385. _tool = tool;
  9386. var _jie = $$("div", {
  9387. "style": {
  9388. "position": "absolute",
  9389. "bottom": "50px",
  9390. "right": "50px",
  9391. "zIndex": "9999",
  9392. "backgroundColor": "#2268bc",
  9393. "color": "#fff",
  9394. "padding": "12px 20px",
  9395. "cursor": "pointer",
  9396. "borderRadius": "4px",
  9397. },
  9398. "innerHTML": "提交作业"
  9399. })
  9400. let aTool = ''
  9401. let _loading = document.createElement('div')
  9402. _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;"
  9403. // _loading.id = "";
  9404. let _lchild = document.createElement('div')
  9405. let _limg = document.createElement('img')
  9406. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9407. _limg.style = "width: 26px;margin-right: 10px;"
  9408. _lchild.appendChild(_limg)
  9409. let _lspan = document.createElement('span')
  9410. _lspan.innerHTML = "上传中..."
  9411. _lchild.appendChild(_lspan)
  9412. _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%);"
  9413. _loading.appendChild(_lchild)
  9414. var _box = $$('div', {
  9415. "style": {
  9416. "position": "relative",
  9417. "width": "100%",
  9418. "height": "100%",
  9419. },
  9420. })
  9421. _box.appendChild(_loading)
  9422. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9423. switch (str) {
  9424. case "whiteboard":
  9425. aTool = 1;
  9426. _iframe = $$("iframe", {
  9427. "frameborder": "no",
  9428. "border": "0",
  9429. "scrolling ": "no",
  9430. "style": {
  9431. "cssText": "border:0;width:100%;height:100%"
  9432. },
  9433. "src": "https://beta.iwb.cocorobo.cn/"
  9434. })
  9435. _box.appendChild(_iframe);
  9436. _box.appendChild(_jie);
  9437. _formdiv = new U.UF.UI.form(
  9438. "电子白板-" + _username,
  9439. _box, {
  9440. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9441. "style": {
  9442. "width": "90%",
  9443. "height": "90%",
  9444. "overflow": 'hidden'
  9445. },
  9446. "onresize": function () { }
  9447. }, {
  9448. closecallback: function () { }
  9449. }, {
  9450. "style": {
  9451. "height": "36px"
  9452. }
  9453. }).form; //创建窗体
  9454. _taskbar = {
  9455. "id": str + _formdiv.id,
  9456. "style": {
  9457. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9458. },
  9459. "name": "电子白板",
  9460. "forms": _formdiv,
  9461. "click": function () {
  9462. U.MD.D.I.openApplication(str, obj, info);
  9463. }
  9464. }
  9465. break;
  9466. case "mind":
  9467. aTool = 3;
  9468. _iframe = $$("iframe", {
  9469. "frameborder": "no",
  9470. "border": "0",
  9471. "scrolling ": "no",
  9472. "style": {
  9473. "cssText": "border:0;width:100%;height:100%"
  9474. },
  9475. "src": "/kityminder-editor/dist/index.html"
  9476. })
  9477. _box.appendChild(_iframe);
  9478. _box.appendChild(_jie);
  9479. _formdiv = new U.UF.UI.form(
  9480. "思维导图-" + _username,
  9481. _box, { //"/jsmind/example/demo.html"
  9482. "id": "mind" + cid + stage + task + tool + _userid,
  9483. "style": {
  9484. "width": "90%",
  9485. "height": "90%",
  9486. "overflow": 'hidden'
  9487. },
  9488. "onresize": function () { }
  9489. }, {
  9490. closecallback: function () { }
  9491. }, {
  9492. "style": {
  9493. "height": "36px"
  9494. }
  9495. }).form; //创建窗体
  9496. _taskbar = {
  9497. "id": str + _formdiv.id,
  9498. "style": {
  9499. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9500. },
  9501. "name": "思维导图",
  9502. "forms": _formdiv,
  9503. "click": function () {
  9504. U.MD.D.I.openApplication(str, obj, info);
  9505. }
  9506. }
  9507. break;
  9508. case "MindMap":
  9509. aTool = 3;
  9510. _iframe = $$("iframe", {
  9511. "frameborder": "no",
  9512. "border": "0",
  9513. "scrolling ": "no",
  9514. "style": {
  9515. "cssText": "border:0;width:100%;height:100%"
  9516. },
  9517. "src": "//cloud.cocorobo.cn/mind/"
  9518. })
  9519. _box.appendChild(_iframe);
  9520. _box.appendChild(_jie);
  9521. _formdiv = new U.UF.UI.form(
  9522. "思维导图-" + _username,
  9523. _box, { //"/jsmind/example/demo.html"
  9524. "id": "mind" + cid + stage + task + tool + _userid,
  9525. "style": {
  9526. "width": "90%",
  9527. "height": "90%",
  9528. "overflow": 'hidden'
  9529. },
  9530. "onresize": function () { }
  9531. }, {
  9532. closecallback: function () { }
  9533. }, {
  9534. "style": {
  9535. "height": "36px"
  9536. }
  9537. }).form; //创建窗体
  9538. _taskbar = {
  9539. "id": str + _formdiv.id,
  9540. "style": {
  9541. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9542. },
  9543. "name": "思维导图",
  9544. "forms": _formdiv,
  9545. "click": function () {
  9546. U.MD.D.I.openApplication(str, obj, info);
  9547. }
  9548. }
  9549. break;
  9550. case "doc":
  9551. aTool = 6;
  9552. _iframe = $$("iframe", {
  9553. "frameborder": "no",
  9554. "border": "0",
  9555. "scrolling ": "no",
  9556. "style": {
  9557. "cssText": "border:0;width:100%;height:100%"
  9558. },
  9559. "src": "/Office/Word/WordEditArea.htm"
  9560. })
  9561. _box.appendChild(_iframe);
  9562. _box.appendChild(_jie);
  9563. _formdiv = new U.UF.UI.form(
  9564. "协同文档-" + _username,
  9565. _box, {
  9566. "id": "doc" + cid + stage + task + tool + _userid,
  9567. "style": {
  9568. "width": "90%",
  9569. "height": "90%",
  9570. "overflow": 'hidden'
  9571. },
  9572. "onresize": function () { }
  9573. }, {
  9574. closecallback: function () { }
  9575. }, {
  9576. "style": {
  9577. "height": "36px"
  9578. }
  9579. }).form; //创建窗体
  9580. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9581. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9582. })
  9583. _taskbar = {
  9584. "id": str + _formdiv.id,
  9585. "style": {
  9586. "backgroundImage": "url(/img/icon/doc.png)"
  9587. },
  9588. "name": "协同文档",
  9589. "forms": _formdiv,
  9590. "click": function () {
  9591. U.MD.D.I.openApplication(str, obj, info);
  9592. }
  9593. }
  9594. break;
  9595. case "mindNetwork": //好友打开
  9596. aTool = 7;
  9597. _iframe = $$("iframe", {
  9598. "webkitallowfullscreen": "",
  9599. "mozallowfullscreen": "",
  9600. "allowfullscreen": "",
  9601. "frameborder": "no",
  9602. "border": "0",
  9603. "scrolling ": "no",
  9604. "style": {
  9605. "cssText": "border:0; width:100%; height:100%;"
  9606. },
  9607. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9608. })
  9609. _box.appendChild(_iframe);
  9610. _box.appendChild(_jie);
  9611. _formdiv = new U.UF.UI.form(
  9612. "思维网格-" + _username,
  9613. _box, {
  9614. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9615. "style": {
  9616. "width": "90%",
  9617. "height": "90%",
  9618. "overflow": 'hidden'
  9619. },
  9620. "onresize": function () { }
  9621. }, {
  9622. closecallback: function () { }
  9623. }, {
  9624. "style": {
  9625. "height": "36px"
  9626. }
  9627. }).form; //创建窗体
  9628. _taskbar = {
  9629. "id": str + _formdiv.id,
  9630. "style": {
  9631. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9632. },
  9633. "name": "思维网格",
  9634. "forms": _formdiv,
  9635. "click": function () {
  9636. U.MD.D.I.openApplication(str, obj, info);
  9637. }
  9638. }
  9639. break;
  9640. case "courseDesign":
  9641. _iframe = $$("iframe", {
  9642. "webkitallowfullscreen": "",
  9643. "mozallowfullscreen": "",
  9644. "allowfullscreen": "",
  9645. "frameborder": "no",
  9646. "border": "0",
  9647. "scrolling ": "no",
  9648. "style": {
  9649. "cssText": "border:0; width:100%; height:100%;"
  9650. },
  9651. "src": "/course-design-vue"
  9652. })
  9653. _box.appendChild(_iframe);
  9654. _box.appendChild(_jie);
  9655. _formdiv = new U.UF.UI.form(
  9656. "项目设计-" + _username,
  9657. _box, {
  9658. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9659. "style": {
  9660. "width": "90%",
  9661. "height": "90%",
  9662. "overflow": 'hidden'
  9663. },
  9664. "onresize": function () { }
  9665. }, {
  9666. closecallback: function () { }
  9667. }, {
  9668. "style": {
  9669. "height": "36px"
  9670. }
  9671. }).form; //创建窗体
  9672. _taskbar = {
  9673. "id": str + _formdiv.id,
  9674. "style": {
  9675. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9676. },
  9677. "name": "项目设计",
  9678. "forms": _formdiv,
  9679. "click": function () {
  9680. U.MD.D.I.openApplication(str, obj, info);
  9681. }
  9682. }
  9683. break;
  9684. }
  9685. const script1 = document.createElement("script");
  9686. script1.type = "text/javascript";
  9687. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9688. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9689. const script2 = document.createElement("script");
  9690. script2.type = "text/javascript";
  9691. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9692. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9693. const script3 = document.createElement("script");
  9694. script3.type = "text/javascript";
  9695. script3.charset = "UTF-8";
  9696. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9697. const script4 = document.createElement("script");
  9698. script4.type = "text/javascript";
  9699. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9700. script4.src = window.origin + "/js/Common/jietu2E.js";
  9701. if (_iframe) {
  9702. if (str == 'doc') {
  9703. _iframe = _formdiv.querySelector('iframe')
  9704. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9705. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9706. _iframe.contentWindow.document.body.appendChild(script1);
  9707. _iframe.contentWindow.document.body.appendChild(script2);
  9708. // _iframe.contentWindow.document.body.appendChild(script3);
  9709. _iframe.contentWindow.document.body.appendChild(script4);
  9710. })
  9711. if (onloadListener) {
  9712. _iframe.contentDocument.location.reload()
  9713. } else {
  9714. _iframe.contentDocument.location.reload()
  9715. }
  9716. } else if (str == 'courseDesign') {
  9717. U.UF.DL.iframeLoad(_iframe, function () {
  9718. // _iframe.contentWindow.U.MD.O.W.load();
  9719. // _iframe.contentWindow.document.body.appendChild(script1);
  9720. _iframe.contentWindow.document.body.appendChild(script2);
  9721. _iframe.contentWindow.document.body.appendChild(script4);
  9722. })
  9723. } else if (str == 'mind') {
  9724. _iframe = _formdiv.querySelector('iframe')
  9725. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9726. //
  9727. _iframe.contentWindow.document.body.appendChild(script1);
  9728. _iframe.contentWindow.document.body.appendChild(script2);
  9729. _iframe.contentWindow.document.body.appendChild(script4);
  9730. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9731. })
  9732. if (onloadListener) {
  9733. _iframe.contentDocument.location.reload()
  9734. } else {
  9735. _iframe.contentDocument.location.reload()
  9736. }
  9737. } else if (str == 'whiteboard') {
  9738. _iframe = _formdiv.querySelector('iframe')
  9739. let onloadListener = _iframe.onload = () => {
  9740. _iframe.contentWindow.document.body.appendChild(script1);
  9741. _iframe.contentWindow.document.body.appendChild(script2);
  9742. _iframe.contentWindow.document.body.appendChild(script4);
  9743. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9744. };
  9745. // if (onloadListener) {
  9746. // try {
  9747. // _iframe.src += "?cocorobo="+new Date().getTime()
  9748. // _iframe.contentWindow.document.location.reload()
  9749. // } catch (error) {
  9750. // }
  9751. // } else {
  9752. // _iframe.contentDocument.location.reload()
  9753. // }
  9754. } else {
  9755. _iframe.onload = () => {
  9756. _iframe.contentWindow.document.body.appendChild(script1);
  9757. _iframe.contentWindow.document.body.appendChild(script2);
  9758. // _iframe.contentWindow.document.body.appendChild(script3);
  9759. _iframe.contentWindow.document.body.appendChild(script4);
  9760. };
  9761. }
  9762. _jie.onclick = async () => {
  9763. let text = ''
  9764. if (aTool == 1) {
  9765. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9766. } else if (aTool == 6) {
  9767. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9768. } else if (aTool == 3) {
  9769. text = await U.MD.D.I.getEditorContent(_iframe);
  9770. }
  9771. _loading.style.display = 'flex'
  9772. console.log(_loading);
  9773. var _ajs = _iframe.contentWindow.document.createElement("script");
  9774. _ajs.type = "text/javascript";
  9775. _ajs.innerHTML =
  9776. // 'console.log(' + _loading + ');\n' +
  9777. 'var _js = document.createElement("script");\n' +
  9778. '_js.type="text/javascript";\n' +
  9779. '_js.charset="UTF-8";\n' +
  9780. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9781. "_js.onload = function(){\n" +
  9782. ' var a = document.getElementsByTagName("img")\n' +
  9783. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9784. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9785. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9786. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9787. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9788. "beforeUpload_shishi(file," +
  9789. "'" +
  9790. _userid +
  9791. "'" +
  9792. ", " +
  9793. "'" +
  9794. _cid +
  9795. "'" +
  9796. ", " +
  9797. "'" +
  9798. _stage +
  9799. "'" +
  9800. ", " +
  9801. "'" +
  9802. _task +
  9803. "'" +
  9804. ", " +
  9805. "'" +
  9806. _tool +
  9807. "'" +
  9808. ", " +
  9809. "'" +
  9810. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9811. "'" +
  9812. ", " +
  9813. "'" +
  9814. aTool +
  9815. "'" +
  9816. ", " +
  9817. "`" +
  9818. text +
  9819. "`" +
  9820. ")\n" +
  9821. " });\n" +
  9822. "}\n" +
  9823. "document.head.appendChild(_js);\n";
  9824. _iframe.contentWindow.document.head.appendChild(_ajs);
  9825. }
  9826. }
  9827. }
  9828. U.MD.D.I.getEditorContent = function (iframe) {
  9829. return new Promise((resolve, reject) => {
  9830. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9831. console.log(content);
  9832. resolve(content)
  9833. });
  9834. });
  9835. }
  9836. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9837. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9838. // if (res.value[0].length > 0) {
  9839. // // resolve(res.value[0][0].text);
  9840. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9841. // $(fileInput).val('');
  9842. // });
  9843. // }
  9844. // }, [], { "type": "GET", "withCredentials": true });
  9845. var xmlhttp;
  9846. var Mac, Sn, DeviceId
  9847. if (window.XMLHttpRequest) {
  9848. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9849. xmlhttp = new XMLHttpRequest();
  9850. } else {
  9851. // IE6, IE5 浏览器执行代码
  9852. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9853. }
  9854. xmlhttp.onreadystatechange = function () {
  9855. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9856. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9857. // resolve(res.value[0][0].text);
  9858. if (type == '2') {
  9859. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9860. } else if (type == '3') {
  9861. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9862. }
  9863. } else {
  9864. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9865. }
  9866. }
  9867. }
  9868. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9869. xmlhttp.send();
  9870. }
  9871. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9872. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9873. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9874. _userinfo = US.userInfo, //登录用户信息
  9875. _userid = US.userInfo.userid //登录用户id
  9876. let _iframe;
  9877. let _cid = cid,
  9878. _stage = stage,
  9879. _task = task,
  9880. _tool = tool;
  9881. var _jie = $$("div", {
  9882. "style": {
  9883. "position": "absolute",
  9884. "bottom": "50px",
  9885. "right": "50px",
  9886. "zIndex": "9999",
  9887. "backgroundColor": "#2268bc",
  9888. "color": "#fff",
  9889. "padding": "12px 20px",
  9890. "cursor": "pointer",
  9891. "borderRadius": "4px",
  9892. },
  9893. "innerHTML": "确认并提交"
  9894. })
  9895. let aTool = ''
  9896. let _loading = document.createElement('div')
  9897. _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;"
  9898. // _loading.id = "";
  9899. let _lchild = document.createElement('div')
  9900. let _limg = document.createElement('img')
  9901. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9902. _limg.style = "width: 26px;margin-right: 10px;"
  9903. _lchild.appendChild(_limg)
  9904. let _lspan = document.createElement('span')
  9905. _lspan.innerHTML = "上传中..."
  9906. _lchild.appendChild(_lspan)
  9907. _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%);"
  9908. _loading.appendChild(_lchild)
  9909. var _box = $$('div', {
  9910. "style": {
  9911. "position": "relative",
  9912. "width": "100%",
  9913. "height": "100%",
  9914. },
  9915. })
  9916. _box.appendChild(_loading)
  9917. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9918. switch (str) {
  9919. case "whiteboard":
  9920. aTool = 1;
  9921. _iframe = $$("iframe", {
  9922. "frameborder": "no",
  9923. "border": "0",
  9924. "scrolling ": "no",
  9925. "style": {
  9926. "cssText": "border:0;width:100%;height:100%"
  9927. },
  9928. "src": "https://beta.iwb.cocorobo.cn/"
  9929. })
  9930. _box.appendChild(_iframe);
  9931. _box.appendChild(_jie);
  9932. _formdiv = new U.UF.UI.form(
  9933. "电子白板",
  9934. _box, {
  9935. "id": "whiteboards" + cid + stage + task + tool,
  9936. "style": {
  9937. "width": "90%",
  9938. "height": "90%",
  9939. "overflow": 'hidden'
  9940. },
  9941. "onresize": function () { }
  9942. }, {
  9943. closecallback: function () { }
  9944. }, {
  9945. "style": {
  9946. "height": "36px"
  9947. }
  9948. }).form; //创建窗体
  9949. _taskbar = {
  9950. "id": str + _formdiv.id,
  9951. "style": {
  9952. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9953. },
  9954. "name": "电子白板",
  9955. "forms": _formdiv,
  9956. "click": function () {
  9957. U.MD.D.I.openApplication(str, obj, info);
  9958. }
  9959. }
  9960. break;
  9961. case "mind":
  9962. aTool = 3;
  9963. _iframe = $$("iframe", {
  9964. "frameborder": "no",
  9965. "border": "0",
  9966. "scrolling ": "no",
  9967. "style": {
  9968. "cssText": "border:0;width:100%;height:100%"
  9969. },
  9970. "src": "/kityminder-editor/dist/index.html"
  9971. });
  9972. _box.appendChild(_iframe);
  9973. _box.appendChild(_jie);
  9974. _formdiv = new U.UF.UI.form(
  9975. "思维导图",
  9976. _box, { //"/jsmind/example/demo.html"
  9977. "id": "minds" + cid + stage + task + tool,
  9978. "style": {
  9979. "width": "90%",
  9980. "height": "90%",
  9981. "overflow": 'hidden'
  9982. },
  9983. "onresize": function () { }
  9984. }, {
  9985. closecallback: function () { }
  9986. }, {
  9987. "style": {
  9988. "height": "36px"
  9989. }
  9990. }).form; //创建窗体
  9991. _taskbar = {
  9992. "id": str + _formdiv.id,
  9993. "style": {
  9994. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9995. },
  9996. "name": "思维导图",
  9997. "forms": _formdiv,
  9998. "click": function () {
  9999. U.MD.D.I.openApplication(str, obj, info);
  10000. }
  10001. }
  10002. break;
  10003. case "doc":
  10004. aTool = 6;
  10005. _iframe = $$("iframe", {
  10006. "frameborder": "no",
  10007. "border": "0",
  10008. "scrolling ": "no",
  10009. "style": {
  10010. "cssText": "border:0;width:100%;height:100%"
  10011. },
  10012. "src": "/Office/Word/WordEditArea.htm"
  10013. })
  10014. _box.appendChild(_iframe);
  10015. _box.appendChild(_jie);
  10016. _formdiv = new U.UF.UI.form(
  10017. "协同文档",
  10018. _box, {
  10019. "id": "docs" + cid + stage + task + tool,
  10020. "style": {
  10021. "width": "90%",
  10022. "height": "90%",
  10023. "overflow": 'hidden'
  10024. },
  10025. "onresize": function () { }
  10026. }, {
  10027. closecallback: function () { }
  10028. }, {
  10029. "style": {
  10030. "height": "36px"
  10031. }
  10032. }).form; //创建窗体
  10033. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10034. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10035. })
  10036. _taskbar = {
  10037. "id": str + _formdiv.id,
  10038. "style": {
  10039. "backgroundImage": "url(/img/icon/doc.png)"
  10040. },
  10041. "name": "协同文档",
  10042. "forms": _formdiv,
  10043. "click": function () {
  10044. U.MD.D.I.openApplication(str, obj, info);
  10045. }
  10046. }
  10047. break;
  10048. }
  10049. const script1 = document.createElement("script");
  10050. script1.type = "text/javascript";
  10051. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10052. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10053. const script2 = document.createElement("script");
  10054. script2.type = "text/javascript";
  10055. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10056. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10057. const script3 = document.createElement("script");
  10058. script3.type = "text/javascript";
  10059. script3.charset = "UTF-8";
  10060. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10061. const script4 = document.createElement("script");
  10062. script4.type = "text/javascript";
  10063. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10064. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10065. if (_iframe) {
  10066. if (str == 'doc') {
  10067. _iframe = _formdiv.querySelector('iframe')
  10068. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10069. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10070. _iframe.contentWindow.document.body.appendChild(script1);
  10071. _iframe.contentWindow.document.body.appendChild(script2);
  10072. // _iframe.contentWindow.document.body.appendChild(script3);
  10073. _iframe.contentWindow.document.body.appendChild(script4);
  10074. })
  10075. if (onloadListener) {
  10076. _iframe.contentDocument.location.reload()
  10077. } else {
  10078. _iframe.contentDocument.location.reload()
  10079. }
  10080. } else if (str == 'mind') {
  10081. _iframe = _formdiv.querySelector('iframe')
  10082. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10083. _iframe.contentWindow.document.body.appendChild(script1);
  10084. _iframe.contentWindow.document.body.appendChild(script2);
  10085. _iframe.contentWindow.document.body.appendChild(script4);
  10086. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10087. })
  10088. if (onloadListener) {
  10089. _iframe.contentDocument.location.reload()
  10090. } else {
  10091. _iframe.contentDocument.location.reload()
  10092. }
  10093. } else {
  10094. _iframe.onload = () => {
  10095. _iframe.contentWindow.document.body.appendChild(script1);
  10096. _iframe.contentWindow.document.body.appendChild(script2);
  10097. // _iframe.contentWindow.document.body.appendChild(script3);
  10098. _iframe.contentWindow.document.body.appendChild(script4);
  10099. };
  10100. }
  10101. _jie.onclick = async () => {
  10102. let text = ''
  10103. if (aTool == 6) {
  10104. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10105. } else if (aTool == 3) {
  10106. text = await U.MD.D.I.getEditorContent(_iframe);
  10107. }
  10108. _loading.style.display = 'flex'
  10109. console.log(_loading);
  10110. var _ajs = _iframe.contentWindow.document.createElement("script");
  10111. _ajs.type = "text/javascript";
  10112. _ajs.innerHTML =
  10113. // 'console.log(' + _loading + ');\n' +
  10114. 'var _js = document.createElement("script");\n' +
  10115. '_js.type="text/javascript";\n' +
  10116. '_js.charset="UTF-8";\n' +
  10117. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10118. "_js.onload = function(){\n" +
  10119. ' var a = document.getElementsByTagName("img")\n' +
  10120. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10121. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10122. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10123. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10124. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10125. "beforeUpload_shishi(file," +
  10126. "'" +
  10127. _userid +
  10128. "'" +
  10129. ", " +
  10130. "'" +
  10131. _cid +
  10132. "'" +
  10133. ", " +
  10134. "'" +
  10135. _stage +
  10136. "'" +
  10137. ", " +
  10138. "'" +
  10139. _task +
  10140. "'" +
  10141. ", " +
  10142. "'" +
  10143. _tool +
  10144. "'" +
  10145. ", " +
  10146. "'" +
  10147. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10148. "'" +
  10149. ", " +
  10150. "'" +
  10151. aTool +
  10152. "'" +
  10153. ", " +
  10154. "`" +
  10155. text +
  10156. "`" +
  10157. ")\n" +
  10158. " });\n" +
  10159. "}\n" +
  10160. "document.head.appendChild(_js);\n";
  10161. _iframe.contentWindow.document.head.appendChild(_ajs);
  10162. }
  10163. }
  10164. //U.MD.D.I.openClick(str);
  10165. //如果有任务栏信息
  10166. // if (_taskbar) {
  10167. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10168. // }
  10169. }
  10170. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10171. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10172. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10173. _userinfo = US.userInfo, //登录用户信息
  10174. _userid = US.userInfo.userid //登录用户id
  10175. let _iframe;
  10176. let _cid = cid,
  10177. _stage = stage,
  10178. _task = task,
  10179. _tool = tool;
  10180. var _jie = $$("div", {
  10181. "style": {
  10182. "position": "absolute",
  10183. "bottom": "50px",
  10184. "right": "50px",
  10185. "zIndex": "9999",
  10186. "backgroundColor": "#2268bc",
  10187. "color": "#fff",
  10188. "padding": "12px 20px",
  10189. "cursor": "pointer",
  10190. "borderRadius": "4px",
  10191. },
  10192. "innerHTML": "确认并提交"
  10193. })
  10194. let aTool = ''
  10195. let _loading = document.createElement('div')
  10196. _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;"
  10197. // _loading.id = "";
  10198. let _lchild = document.createElement('div')
  10199. let _limg = document.createElement('img')
  10200. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10201. _limg.style = "width: 26px;margin-right: 10px;"
  10202. _lchild.appendChild(_limg)
  10203. let _lspan = document.createElement('span')
  10204. _lspan.innerHTML = "上传中..."
  10205. _lchild.appendChild(_lspan)
  10206. _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%);"
  10207. _loading.appendChild(_lchild)
  10208. var _box = $$('div', {
  10209. "style": {
  10210. "position": "relative",
  10211. "width": "100%",
  10212. "height": "100%",
  10213. },
  10214. })
  10215. _box.appendChild(_loading)
  10216. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10217. switch (str) {
  10218. case "whiteboard":
  10219. aTool = 1;
  10220. _iframe = $$("iframe", {
  10221. "frameborder": "no",
  10222. "border": "0",
  10223. "scrolling ": "no",
  10224. "style": {
  10225. "cssText": "border:0;width:100%;height:100%"
  10226. },
  10227. "src": "https://beta.iwb.cocorobo.cn/"
  10228. })
  10229. _box.appendChild(_iframe);
  10230. _box.appendChild(_jie);
  10231. _formdiv = new U.UF.UI.form(
  10232. "电子白板",
  10233. _box, {
  10234. "id": "whiteboards" + cid + stage + task + tool,
  10235. "style": {
  10236. "width": "90%",
  10237. "height": "90%",
  10238. "overflow": 'hidden'
  10239. },
  10240. "onresize": function () { }
  10241. }, {
  10242. closecallback: function () { }
  10243. }, {
  10244. "style": {
  10245. "height": "36px"
  10246. }
  10247. }).form; //创建窗体
  10248. _taskbar = {
  10249. "id": str + _formdiv.id,
  10250. "style": {
  10251. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10252. },
  10253. "name": "电子白板",
  10254. "forms": _formdiv,
  10255. "click": function () {
  10256. U.MD.D.I.openApplication(str, obj, info);
  10257. }
  10258. }
  10259. break;
  10260. case "mind":
  10261. aTool = 3;
  10262. _iframe = $$("iframe", {
  10263. "frameborder": "no",
  10264. "border": "0",
  10265. "scrolling ": "no",
  10266. "style": {
  10267. "cssText": "border:0;width:100%;height:100%"
  10268. },
  10269. "src": "/kityminder-editor/dist/index.html"
  10270. });
  10271. _box.appendChild(_iframe);
  10272. _box.appendChild(_jie);
  10273. _formdiv = new U.UF.UI.form(
  10274. "思维导图",
  10275. _box, { //"/jsmind/example/demo.html"
  10276. "id": "minds" + cid + stage + task + tool,
  10277. "style": {
  10278. "width": "90%",
  10279. "height": "90%",
  10280. "overflow": 'hidden'
  10281. },
  10282. "onresize": function () { }
  10283. }, {
  10284. closecallback: function () { }
  10285. }, {
  10286. "style": {
  10287. "height": "36px"
  10288. }
  10289. }).form; //创建窗体
  10290. _taskbar = {
  10291. "id": str + _formdiv.id,
  10292. "style": {
  10293. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10294. },
  10295. "name": "思维导图",
  10296. "forms": _formdiv,
  10297. "click": function () {
  10298. U.MD.D.I.openApplication(str, obj, info);
  10299. }
  10300. }
  10301. break;
  10302. case "doc":
  10303. aTool = 6;
  10304. _iframe = $$("iframe", {
  10305. "frameborder": "no",
  10306. "border": "0",
  10307. "scrolling ": "no",
  10308. "style": {
  10309. "cssText": "border:0;width:100%;height:100%"
  10310. },
  10311. "src": "/Office/Word/WordEditArea.htm"
  10312. })
  10313. _box.appendChild(_iframe);
  10314. _box.appendChild(_jie);
  10315. _formdiv = new U.UF.UI.form(
  10316. "协同文档",
  10317. _box, {
  10318. "id": "docs" + cid + stage + task + tool,
  10319. "style": {
  10320. "width": "90%",
  10321. "height": "90%",
  10322. "overflow": 'hidden'
  10323. },
  10324. "onresize": function () { }
  10325. }, {
  10326. closecallback: function () { }
  10327. }, {
  10328. "style": {
  10329. "height": "36px"
  10330. }
  10331. }).form; //创建窗体
  10332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10334. })
  10335. _taskbar = {
  10336. "id": str + _formdiv.id,
  10337. "style": {
  10338. "backgroundImage": "url(/img/icon/doc.png)"
  10339. },
  10340. "name": "协同文档",
  10341. "forms": _formdiv,
  10342. "click": function () {
  10343. U.MD.D.I.openApplication(str, obj, info);
  10344. }
  10345. }
  10346. break;
  10347. }
  10348. const script1 = document.createElement("script");
  10349. script1.type = "text/javascript";
  10350. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10351. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10352. const script2 = document.createElement("script");
  10353. script2.type = "text/javascript";
  10354. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10355. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10356. const script3 = document.createElement("script");
  10357. script3.type = "text/javascript";
  10358. script3.charset = "UTF-8";
  10359. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10360. const script4 = document.createElement("script");
  10361. script4.type = "text/javascript";
  10362. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10363. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10364. if (_iframe) {
  10365. if (str == 'doc') {
  10366. _iframe = _formdiv.querySelector('iframe')
  10367. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10368. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10369. _iframe.contentWindow.document.body.appendChild(script1);
  10370. _iframe.contentWindow.document.body.appendChild(script2);
  10371. // _iframe.contentWindow.document.body.appendChild(script3);
  10372. _iframe.contentWindow.document.body.appendChild(script4);
  10373. })
  10374. if (onloadListener) {
  10375. _iframe.contentDocument.location.reload()
  10376. } else {
  10377. _iframe.contentDocument.location.reload()
  10378. }
  10379. } else if (str == 'mind') {
  10380. _iframe = _formdiv.querySelector('iframe')
  10381. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10382. _iframe.contentWindow.document.body.appendChild(script1);
  10383. _iframe.contentWindow.document.body.appendChild(script2);
  10384. _iframe.contentWindow.document.body.appendChild(script4);
  10385. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10386. })
  10387. if (onloadListener) {
  10388. _iframe.contentDocument.location.reload()
  10389. } else {
  10390. _iframe.contentDocument.location.reload()
  10391. }
  10392. } else {
  10393. _iframe.onload = () => {
  10394. _iframe.contentWindow.document.body.appendChild(script1);
  10395. _iframe.contentWindow.document.body.appendChild(script2);
  10396. // _iframe.contentWindow.document.body.appendChild(script3);
  10397. _iframe.contentWindow.document.body.appendChild(script4);
  10398. };
  10399. }
  10400. _jie.onclick = async () => {
  10401. let text = ''
  10402. if (aTool == 6) {
  10403. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10404. } else if (aTool == 3) {
  10405. text = await U.MD.D.I.getEditorContent(_iframe);
  10406. }
  10407. _loading.style.display = 'flex'
  10408. console.log(_loading);
  10409. var _ajs = _iframe.contentWindow.document.createElement("script");
  10410. _ajs.type = "text/javascript";
  10411. _ajs.innerHTML =
  10412. // 'console.log(' + _loading + ');\n' +
  10413. 'var _js = document.createElement("script");\n' +
  10414. '_js.type="text/javascript";\n' +
  10415. '_js.charset="UTF-8";\n' +
  10416. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10417. "_js.onload = function(){\n" +
  10418. ' var a = document.getElementsByTagName("img")\n' +
  10419. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10420. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10421. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10422. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10423. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10424. "beforeUpload_shishi(file," +
  10425. "'" +
  10426. _userid +
  10427. "'" +
  10428. ", " +
  10429. "'" +
  10430. _cid +
  10431. "'" +
  10432. ", " +
  10433. "'" +
  10434. _stage +
  10435. "'" +
  10436. ", " +
  10437. "'" +
  10438. _task +
  10439. "'" +
  10440. ", " +
  10441. "'" +
  10442. _tool +
  10443. "'" +
  10444. ", " +
  10445. "'" +
  10446. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10447. "'" +
  10448. ", " +
  10449. "'" +
  10450. aTool +
  10451. "'" +
  10452. ", " +
  10453. "`" +
  10454. text +
  10455. "`" +
  10456. ")\n" +
  10457. " });\n" +
  10458. "}\n" +
  10459. "document.head.appendChild(_js);\n";
  10460. _iframe.contentWindow.document.head.appendChild(_ajs);
  10461. }
  10462. }
  10463. //U.MD.D.I.openClick(str);
  10464. //如果有任务栏信息
  10465. // if (_taskbar) {
  10466. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10467. // }
  10468. }
  10469. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10470. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10471. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10472. _userinfo = US.userInfo, //登录用户信息
  10473. _userid = US.userInfo.userid //登录用户id
  10474. let _iframe;
  10475. let _cid = cid,
  10476. _stage = stage,
  10477. _task = task,
  10478. _tool = tool;
  10479. var _jie = $$("div", {
  10480. "style": {
  10481. "position": "absolute",
  10482. "bottom": "50px",
  10483. "right": "50px",
  10484. "zIndex": "9999",
  10485. "backgroundColor": "#2268bc",
  10486. "color": "#fff",
  10487. "padding": "12px 20px",
  10488. "cursor": "pointer",
  10489. "borderRadius": "4px",
  10490. },
  10491. "innerHTML": "上传模板"
  10492. })
  10493. let aTool = ''
  10494. let _loading = document.createElement('div')
  10495. _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;"
  10496. // _loading.id = "";
  10497. let _lchild = document.createElement('div')
  10498. let _limg = document.createElement('img')
  10499. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10500. _limg.style = "width: 26px;margin-right: 10px;"
  10501. _lchild.appendChild(_limg)
  10502. let _lspan = document.createElement('span')
  10503. _lspan.innerHTML = "上传中..."
  10504. _lchild.appendChild(_lspan)
  10505. _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%);"
  10506. _loading.appendChild(_lchild)
  10507. var _box = $$('div', {
  10508. "style": {
  10509. "position": "relative",
  10510. "width": "100%",
  10511. "height": "100%",
  10512. },
  10513. })
  10514. _box.appendChild(_loading)
  10515. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10516. switch (str) {
  10517. case "whiteboard":
  10518. aTool = 1;
  10519. _iframe = $$("iframe", {
  10520. "frameborder": "no",
  10521. "border": "0",
  10522. "scrolling ": "no",
  10523. "style": {
  10524. "cssText": "border:0;width:100%;height:100%"
  10525. },
  10526. "src": "https://beta.iwb.cocorobo.cn/"
  10527. })
  10528. _box.appendChild(_iframe);
  10529. _box.appendChild(_jie);
  10530. _formdiv = new U.UF.UI.form(
  10531. "电子白板",
  10532. _box, {
  10533. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10534. "style": {
  10535. "width": "90%",
  10536. "height": "90%",
  10537. "overflow": 'hidden'
  10538. },
  10539. "onresize": function () { }
  10540. }, {
  10541. closecallback: function () { }
  10542. }, {
  10543. "style": {
  10544. "height": "36px"
  10545. }
  10546. }).form; //创建窗体
  10547. _taskbar = {
  10548. "id": str + _formdiv.id,
  10549. "style": {
  10550. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10551. },
  10552. "name": "电子白板",
  10553. "forms": _formdiv,
  10554. "click": function () {
  10555. U.MD.D.I.openApplication(str, obj, info);
  10556. }
  10557. }
  10558. break;
  10559. case "mind":
  10560. aTool = 3;
  10561. _iframe = $$("iframe", {
  10562. "frameborder": "no",
  10563. "border": "0",
  10564. "scrolling ": "no",
  10565. "style": {
  10566. "cssText": "border:0;width:100%;height:100%"
  10567. },
  10568. "src": "/kityminder-editor/dist/index.html"
  10569. });
  10570. _box.appendChild(_iframe);
  10571. _box.appendChild(_jie);
  10572. _formdiv = new U.UF.UI.form(
  10573. "思维导图",
  10574. _box, { //"/jsmind/example/demo.html"
  10575. "id": "minds_Yu" + cid + stage + task + tool,
  10576. "style": {
  10577. "width": "90%",
  10578. "height": "90%",
  10579. "overflow": 'hidden'
  10580. },
  10581. "onresize": function () { }
  10582. }, {
  10583. closecallback: function () { }
  10584. }, {
  10585. "style": {
  10586. "height": "36px"
  10587. }
  10588. }).form; //创建窗体
  10589. _taskbar = {
  10590. "id": str + _formdiv.id,
  10591. "style": {
  10592. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10593. },
  10594. "name": "思维导图",
  10595. "forms": _formdiv,
  10596. "click": function () {
  10597. U.MD.D.I.openApplication(str, obj, info);
  10598. }
  10599. }
  10600. break;
  10601. case "doc":
  10602. aTool = 6;
  10603. _iframe = $$("iframe", {
  10604. "frameborder": "no",
  10605. "border": "0",
  10606. "scrolling ": "no",
  10607. "style": {
  10608. "cssText": "border:0;width:100%;height:100%"
  10609. },
  10610. "src": "/Office/Word/WordEditArea.htm"
  10611. })
  10612. _box.appendChild(_iframe);
  10613. _box.appendChild(_jie);
  10614. _formdiv = new U.UF.UI.form(
  10615. "协同文档",
  10616. _box, {
  10617. "id": "docs_Yu" + cid + stage + task + tool,
  10618. "style": {
  10619. "width": "90%",
  10620. "height": "90%",
  10621. "overflow": 'hidden'
  10622. },
  10623. "onresize": function () { }
  10624. }, {
  10625. closecallback: function () { }
  10626. }, {
  10627. "style": {
  10628. "height": "36px"
  10629. }
  10630. }).form; //创建窗体
  10631. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10632. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10633. })
  10634. _taskbar = {
  10635. "id": str + _formdiv.id,
  10636. "style": {
  10637. "backgroundImage": "url(/img/icon/doc.png)"
  10638. },
  10639. "name": "协同文档",
  10640. "forms": _formdiv,
  10641. "click": function () {
  10642. U.MD.D.I.openApplication(str, obj, info);
  10643. }
  10644. }
  10645. break;
  10646. case "CocoPi":
  10647. aTool = 57;
  10648. _iframe = $$("iframe", {
  10649. "allowpaymentrequest": "allowpaymentrequest",
  10650. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10651. "webkitallowfullscreen": "",
  10652. "mozallowfullscreen": "",
  10653. "frameborder": "no",
  10654. "border": "0",
  10655. "scrolling ": "no",
  10656. "style": {
  10657. "cssText": "border:0;width:100%;height:100%"
  10658. },
  10659. "src": "https://pi.cocorobo.cn/"
  10660. })
  10661. _box.appendChild(_iframe);
  10662. _box.appendChild(_jie);
  10663. _formdiv = new U.UF.UI.form(
  10664. "CocoPi",
  10665. _box, {
  10666. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10667. "style": {
  10668. "width": "90%",
  10669. "height": "90%",
  10670. "overflow": 'hidden'
  10671. },
  10672. "onresize": function () { }
  10673. }, {
  10674. closecallback: function () { }
  10675. }, {
  10676. "style": {
  10677. "height": "36px"
  10678. }
  10679. }).form; //创建窗体
  10680. _taskbar = {
  10681. "id": str + _formdiv.id,
  10682. "style": {
  10683. "backgroundImage": "url(/img/icon/cocopi.png)"
  10684. },
  10685. "name": "CocoPi",
  10686. "forms": _formdiv,
  10687. "click": function () {
  10688. U.MD.D.I.openApplication(str, obj, info);
  10689. }
  10690. }
  10691. break;
  10692. }
  10693. if (_iframe) {
  10694. if (str == 'doc') {
  10695. _iframe = _formdiv.querySelector('iframe')
  10696. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10697. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10698. })
  10699. if (onloadListener) {
  10700. _iframe.contentDocument.location.reload()
  10701. } else {
  10702. _iframe.contentDocument.location.reload()
  10703. }
  10704. } else if (str == 'mind') {
  10705. _iframe = _formdiv.querySelector('iframe')
  10706. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10707. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10708. })
  10709. if (onloadListener) {
  10710. _iframe.contentDocument.location.reload()
  10711. } else {
  10712. _iframe.contentDocument.location.reload()
  10713. }
  10714. } else if (str == 'whiteboard') {
  10715. _iframe = _formdiv.querySelector('iframe')
  10716. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10717. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10718. })
  10719. // if (onloadListener) {
  10720. // try {
  10721. // _iframe.src += "?cocorobo="+new Date().getTime()
  10722. // _iframe.contentWindow.document.location.reload()
  10723. // } catch (error) {
  10724. // }
  10725. // } else {
  10726. // _iframe.contentDocument.location.reload()
  10727. // }
  10728. } else if (str == 'CocoPi') {
  10729. _iframe = _formdiv.querySelector('iframe')
  10730. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10731. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10732. })
  10733. if (onloadListener) {
  10734. _iframe.contentDocument.location.reload()
  10735. } else {
  10736. _iframe.contentDocument.location.reload()
  10737. }
  10738. } else {
  10739. _iframe.onload = () => { };
  10740. }
  10741. _jie.onclick = async () => {
  10742. let text = ''
  10743. let type = '2'
  10744. if (aTool == 1) {
  10745. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10746. type = '3'
  10747. } else if (aTool == 6) {
  10748. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10749. type = '1'
  10750. } else if (aTool == 3) {
  10751. text = await U.MD.D.I.getEditorContent(_iframe);
  10752. type = '2'
  10753. } else if (aTool == 57) {
  10754. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10755. type = '4'
  10756. }
  10757. _loading.style.display = 'flex'
  10758. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10759. }
  10760. }
  10761. //U.MD.D.I.openClick(str);
  10762. //如果有任务栏信息
  10763. // if (_taskbar) {
  10764. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10765. // }
  10766. }
  10767. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10768. var xmlhttp;
  10769. var Mac, Sn, DeviceId
  10770. if (window.XMLHttpRequest) {
  10771. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10772. xmlhttp = new XMLHttpRequest();
  10773. } else {
  10774. // IE6, IE5 浏览器执行代码
  10775. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10776. }
  10777. xmlhttp.onreadystatechange = function () {
  10778. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10779. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10780. // resolve(res.value[0][0].text);
  10781. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10782. }
  10783. }
  10784. }
  10785. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10786. xmlhttp.send();
  10787. }
  10788. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10789. var xmlhttp;
  10790. var Mac, Sn, DeviceId
  10791. if (window.XMLHttpRequest) {
  10792. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10793. xmlhttp = new XMLHttpRequest();
  10794. } else {
  10795. // IE6, IE5 浏览器执行代码
  10796. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10797. }
  10798. xmlhttp.onreadystatechange = function () {
  10799. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10800. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10801. // resolve(res.value[0][0].text);
  10802. if (type == '2') {
  10803. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10804. } else if (type == '3') {
  10805. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10806. } else if (type == '4') {
  10807. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10808. }
  10809. } else {
  10810. if (type == '2') {
  10811. iframe.contentWindow.editor.minder.importData('json', '')
  10812. } else if (type == '3') {
  10813. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10814. } else if (type == '4') {
  10815. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10816. }
  10817. }
  10818. }
  10819. }
  10820. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10821. xmlhttp.send();
  10822. }
  10823. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10824. var xmlhttp;
  10825. var Mac, Sn, DeviceId
  10826. if (window.XMLHttpRequest) {
  10827. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10828. xmlhttp = new XMLHttpRequest();
  10829. } else {
  10830. // IE6, IE5 浏览器执行代码
  10831. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10832. }
  10833. xmlhttp.onreadystatechange = function () {
  10834. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10835. if (xmlhttp.response) {
  10836. // resolve(res.value[0][0].text);
  10837. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10838. // $(fileInput).val('');
  10839. // });
  10840. span.innerHTML = '上传成功'
  10841. setTimeout(() => {
  10842. loading.style.display = 'none'
  10843. }, 1000);
  10844. }
  10845. }
  10846. }
  10847. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10848. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10849. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10850. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10851. // 设置请求头,表示请求体的编码格式
  10852. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10853. // 设置请求体,使用url-encoded格式的数据
  10854. }
  10855. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10856. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10857. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10858. _userinfo = US.userInfo, //登录用户信息
  10859. _userid = US.userInfo.userid //登录用户id
  10860. let _iframe;
  10861. let _cid = cid,
  10862. _stage = stage,
  10863. _task = task,
  10864. _tool = tool;
  10865. var _jie = $$("div", {
  10866. "style": {
  10867. "position": "absolute",
  10868. "bottom": "50px",
  10869. "right": "50px",
  10870. "zIndex": "9999",
  10871. "backgroundColor": "#2268bc",
  10872. "color": "#fff",
  10873. "padding": "12px 20px",
  10874. "cursor": "pointer",
  10875. "borderRadius": "4px",
  10876. },
  10877. "innerHTML": "提交作业"
  10878. })
  10879. let aTool = ''
  10880. let _loading = document.createElement('div')
  10881. _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;"
  10882. // _loading.id = "";
  10883. let _lchild = document.createElement('div')
  10884. let _limg = document.createElement('img')
  10885. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10886. _limg.style = "width: 26px;margin-right: 10px;"
  10887. _lchild.appendChild(_limg)
  10888. let _lspan = document.createElement('span')
  10889. _lspan.innerHTML = "上传中..."
  10890. _lchild.appendChild(_lspan)
  10891. _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%);"
  10892. _loading.appendChild(_lchild)
  10893. var _box = $$('div', {
  10894. "style": {
  10895. "position": "relative",
  10896. "width": "100%",
  10897. "height": "100%",
  10898. },
  10899. })
  10900. _box.appendChild(_loading)
  10901. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10902. switch (str) {
  10903. case "CocoPi":
  10904. aTool = 57;
  10905. _iframe = $$("iframe", {
  10906. "allowpaymentrequest": "allowpaymentrequest",
  10907. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10908. "webkitallowfullscreen": "",
  10909. "mozallowfullscreen": "",
  10910. "frameborder": "no",
  10911. "border": "0",
  10912. "scrolling ": "no",
  10913. "style": {
  10914. "cssText": "border:0;width:100%;height:100%"
  10915. },
  10916. "src": "https://pi.cocorobo.cn/"
  10917. })
  10918. _box.appendChild(_iframe);
  10919. _box.appendChild(_jie);
  10920. _formdiv = new U.UF.UI.form(
  10921. "CocoPi",
  10922. _box, {
  10923. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10924. "style": {
  10925. "width": "90%",
  10926. "height": "90%",
  10927. "overflow": 'hidden'
  10928. },
  10929. "onresize": function () { }
  10930. }, {
  10931. closecallback: function () { }
  10932. }, {
  10933. "style": {
  10934. "height": "36px"
  10935. }
  10936. }).form; //创建窗体
  10937. _taskbar = {
  10938. "id": str + _formdiv.id,
  10939. "style": {
  10940. "backgroundImage": "url(/img/icon/cocopi.png)"
  10941. },
  10942. "name": "CocoPi",
  10943. "forms": _formdiv,
  10944. "click": function () {
  10945. U.MD.D.I.openApplication(str, obj, info);
  10946. }
  10947. }
  10948. break;
  10949. }
  10950. if (_iframe) {
  10951. if (str == 'CocoPi') {
  10952. _iframe = _formdiv.querySelector('iframe')
  10953. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10954. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10955. })
  10956. if (onloadListener) {
  10957. _iframe.contentDocument.location.reload()
  10958. } else {
  10959. _iframe.contentDocument.location.reload()
  10960. }
  10961. }
  10962. _jie.onclick = async () => {
  10963. let text = ''
  10964. if (aTool == 57) {
  10965. text = _iframe.contentWindow.getLoadXmlStr()
  10966. }
  10967. _loading.style.display = 'flex'
  10968. console.log(_loading);
  10969. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10970. _loading.style.display = 'none'
  10971. let _div = document.createElement('div')
  10972. _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;"
  10973. let _inner = document.createElement('div')
  10974. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10975. _inner.innerHTML = "上传成功"
  10976. _div.appendChild(_inner)
  10977. _iframe.contentWindow.window.document.body.appendChild(_div)
  10978. _div.onclick = () => {
  10979. _iframe.contentWindow.window.document.body.removeChild(_div)
  10980. }
  10981. setTimeout(() => {
  10982. _iframe.contentWindow.window.document.body.removeChild(_div)
  10983. }, 1000);
  10984. }, [], { "type": "POST", "withCredentials": true });
  10985. }
  10986. }
  10987. }
  10988. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10989. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10990. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10991. _userid = student.userid, //登录用户id
  10992. _username = student.student //用户名字
  10993. let _iframe;
  10994. let _cid = cid,
  10995. _stage = stage,
  10996. _task = task,
  10997. _tool = tool;
  10998. var _jie = $$("div", {
  10999. "style": {
  11000. "position": "absolute",
  11001. "bottom": "50px",
  11002. "right": "50px",
  11003. "zIndex": "9999",
  11004. "backgroundColor": "#2268bc",
  11005. "color": "#fff",
  11006. "padding": "12px 20px",
  11007. "cursor": "pointer",
  11008. "borderRadius": "4px",
  11009. },
  11010. "innerHTML": "提交作业"
  11011. })
  11012. let aTool = ''
  11013. let _loading = document.createElement('div')
  11014. _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;"
  11015. // _loading.id = "";
  11016. let _lchild = document.createElement('div')
  11017. let _limg = document.createElement('img')
  11018. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11019. _limg.style = "width: 26px;margin-right: 10px;"
  11020. _lchild.appendChild(_limg)
  11021. let _lspan = document.createElement('span')
  11022. _lspan.innerHTML = "上传中..."
  11023. _lchild.appendChild(_lspan)
  11024. _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%);"
  11025. _loading.appendChild(_lchild)
  11026. var _box = $$('div', {
  11027. "style": {
  11028. "position": "relative",
  11029. "width": "100%",
  11030. "height": "100%",
  11031. },
  11032. })
  11033. _box.appendChild(_loading)
  11034. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11035. switch (str) {
  11036. case "CocoPi":
  11037. aTool = 57;
  11038. _iframe = $$("iframe", {
  11039. "allowpaymentrequest": "allowpaymentrequest",
  11040. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  11041. "webkitallowfullscreen": "",
  11042. "mozallowfullscreen": "",
  11043. "frameborder": "no",
  11044. "border": "0",
  11045. "scrolling ": "no",
  11046. "style": {
  11047. "cssText": "border:0;width:100%;height:100%"
  11048. },
  11049. "src": "https://pi.cocorobo.cn/"
  11050. })
  11051. _box.appendChild(_iframe);
  11052. _box.appendChild(_jie);
  11053. _formdiv = new U.UF.UI.form(
  11054. "CocoPi-" + _username,
  11055. _box, {
  11056. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11057. "style": {
  11058. "width": "90%",
  11059. "height": "90%",
  11060. "overflow": 'hidden'
  11061. },
  11062. "onresize": function () { }
  11063. }, {
  11064. closecallback: function () { }
  11065. }, {
  11066. "style": {
  11067. "height": "36px"
  11068. }
  11069. }).form; //创建窗体
  11070. _taskbar = {
  11071. "id": str + _formdiv.id,
  11072. "style": {
  11073. "backgroundImage": "url(/img/icon/cocopi.png)"
  11074. },
  11075. "name": "CocoPi",
  11076. "forms": _formdiv,
  11077. "click": function () {
  11078. U.MD.D.I.openApplication(str, obj, info);
  11079. }
  11080. }
  11081. break;
  11082. }
  11083. if (_iframe) {
  11084. if (str == 'CocoPi') {
  11085. _iframe = _formdiv.querySelector('iframe')
  11086. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11087. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11088. })
  11089. if (onloadListener) {
  11090. _iframe.contentDocument.location.reload()
  11091. } else {
  11092. _iframe.contentDocument.location.reload()
  11093. }
  11094. }
  11095. _jie.onclick = async () => {
  11096. let text = ''
  11097. if (aTool == 57) {
  11098. text = _iframe.contentWindow.getLoadXmlStr()
  11099. }
  11100. _loading.style.display = 'flex'
  11101. console.log(_loading);
  11102. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11103. _loading.style.display = 'none'
  11104. let _div = document.createElement('div')
  11105. _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;"
  11106. let _inner = document.createElement('div')
  11107. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11108. _inner.innerHTML = "上传成功"
  11109. _div.appendChild(_inner)
  11110. _iframe.contentWindow.window.document.body.appendChild(_div)
  11111. _div.onclick = () => {
  11112. _iframe.contentWindow.window.document.body.removeChild(_div)
  11113. }
  11114. setTimeout(() => {
  11115. _iframe.contentWindow.window.document.body.removeChild(_div)
  11116. }, 1000);
  11117. }, [], { "type": "POST", "withCredentials": true });
  11118. }
  11119. }
  11120. }
  11121. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11122. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11123. if (res.value[0].length > 0) {
  11124. if (atool == 57) {
  11125. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11126. }
  11127. } else {
  11128. if (atool == 57) {
  11129. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11130. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11131. }
  11132. }
  11133. }, [], { "type": "POST", "withCredentials": true });
  11134. }
  11135. U.MD.D.addOp = function(text,type,time){
  11136. var userInfo = US.userInfo;
  11137. if(Object.keys(userInfo).length !== 0){
  11138. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  11139. }, [], { "type": "POST", "withCredentials": true });
  11140. }
  11141. }