DeskTop.js 699 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109
  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. ];
  627. //中山小学学生桌面图标的全局变量
  628. U.MD.D.I.guzmsStudentDeskIcon = [
  629. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  630. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  631. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  632. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  633. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  634. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  635. ];
  636. //福田
  637. U.MD.D.I.gdjgTeacherDeskIcon = [
  638. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  639. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  640. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  641. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  642. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  643. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  644. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  645. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  646. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  647. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  650. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  651. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  652. ];
  653. //gdjg
  654. U.MD.D.I.gdjgAdminDeskIcon = [
  655. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  656. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  657. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  658. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  659. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  660. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  661. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  662. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  663. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  666. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  667. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  668. ];
  669. //hk
  670. U.MD.D.I.hkteacherDeskIcon = [
  671. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  672. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  673. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  674. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  675. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  676. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  677. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  678. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  679. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  680. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  681. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  682. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  683. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  684. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  687. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  689. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  690. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  691. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  692. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  693. ];
  694. //ricoh
  695. U.MD.D.I.ricohteacherDeskIcon = [
  696. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  697. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  698. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  699. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  700. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  701. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  702. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  703. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  704. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  705. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  706. ];
  707. //hk
  708. U.MD.D.I.hkStudentDeskIcon = [
  709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  712. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. ];
  716. //hk
  717. U.MD.D.I.hkaceteacherDeskIcon = [
  718. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  719. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  720. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  721. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  722. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  723. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  724. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  725. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  726. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  727. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  728. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  729. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  730. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  731. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  737. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  738. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  739. ];
  740. //hk
  741. U.MD.D.I.hkaceStudentDeskIcon = [
  742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  743. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  744. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  747. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSteacherDeskIcon = [
  751. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  752. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  753. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  754. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  755. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  756. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  757. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  758. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  759. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  760. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  761. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  762. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  763. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  764. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  765. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  766. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  767. ];
  768. //香海正覺蓮社佛教正覺中學
  769. U.MD.D.I.hkZJLSStudentDeskIcon = [
  770. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  772. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. ];
  775. //云海
  776. U.MD.D.I.yunhaiTeacherDeskIcon = [
  777. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  778. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  779. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  780. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  784. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  785. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  786. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  787. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  788. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  789. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  790. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  791. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  792. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  793. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  794. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  795. ];
  796. //福田
  797. U.MD.D.I.heyuanTeacherDeskIcon = [
  798. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  799. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  800. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  801. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  802. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  803. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  804. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  805. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //福田
  812. U.MD.D.I.heyuanAdminDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  821. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  826. U.MD.D.I.szherTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  830. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  831. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  832. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  833. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  834. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  835. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  836. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  837. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  838. ];
  839. //dsei
  840. U.MD.D.I.dseiTeacherDeskIcon = [
  841. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  842. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  843. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  844. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  845. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  846. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  847. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  848. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  849. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  850. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  851. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  852. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  853. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  854. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  855. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  856. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  857. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  858. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  859. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  860. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  861. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  862. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  863. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  864. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  865. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  866. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  867. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  868. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  869. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  870. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  871. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  872. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  873. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  874. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  875. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  876. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  877. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  878. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  879. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  880. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  881. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  882. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  883. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  884. ];
  885. //dsei
  886. U.MD.D.I.dseiAdminDeskIcon = [
  887. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  888. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  889. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  890. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  891. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  892. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  893. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  894. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  895. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  896. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  897. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  898. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  899. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  900. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  901. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  902. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  903. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  904. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  905. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  906. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  907. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  908. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  909. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  910. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  911. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  912. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  913. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  914. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  915. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  916. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  917. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  918. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  919. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  920. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  921. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  922. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  923. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  924. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  925. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  926. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  927. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  928. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  929. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  930. ];
  931. //dsei
  932. U.MD.D.I.dseiStudentDeskIcon = [
  933. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  934. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  935. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  936. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. ];
  940. //未来教育基地
  941. U.MD.D.I.szjkyTeacherDeskIcon = [
  942. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  943. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  944. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  945. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  946. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  947. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  948. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  949. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  950. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  951. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  952. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  953. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  954. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  955. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  956. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  957. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  959. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  960. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  961. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  962. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  963. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  964. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  965. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  967. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  968. ];
  969. //未来教育基地
  970. U.MD.D.I.szjkyAdminDeskIcon = [
  971. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  972. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  973. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  974. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  975. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  976. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  977. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  978. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  979. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  980. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  981. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  982. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  983. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  984. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  985. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  986. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  987. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  988. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  989. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  990. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  991. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  992. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  993. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  994. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  995. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  996. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  997. ];
  998. //未来教育基地
  999. U.MD.D.I.szjkyStudentDeskIcon = [
  1000. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1001. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1002. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1003. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1004. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1005. ];
  1006. //成华教育局
  1007. U.MD.D.I.chjyjTeacherDeskIcon = [
  1008. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1009. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1010. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1011. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1012. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1013. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1014. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1015. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1016. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1017. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1018. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1019. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1020. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1021. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1022. ];
  1023. //成华教育局chjyj
  1024. U.MD.D.I.chjyjAdminDeskIcon = [
  1025. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1026. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1027. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1028. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1029. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1030. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.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": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1040. ];
  1041. //成华教育局chjyj
  1042. U.MD.D.I.chjyjStudentDeskIcon = [
  1043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1044. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1045. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1046. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1047. ];
  1048. //tpc
  1049. U.MD.D.I.tpcStudentDeskIcon = [
  1050. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1051. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1053. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1054. ];
  1055. //tpc
  1056. U.MD.D.I.tpcTeacherDeskIcon = [
  1057. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1058. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1062. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1063. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1064. ];
  1065. //tpc
  1066. U.MD.D.I.tpcAdminDeskIcon = [
  1067. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1068. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1069. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1070. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1071. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1072. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //THU-IOE
  1076. U.MD.D.I.thuioeTeacherDeskIcon = [
  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": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1080. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1081. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1082. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1083. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1084. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1087. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1088. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1089. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1090. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1091. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1092. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1093. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1094. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1095. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1096. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1097. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1098. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1099. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1100. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1101. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1102. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1103. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1104. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1105. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1106. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1107. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1108. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1109. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1110. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1112. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.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. //THU-IOE
  1118. U.MD.D.I.thuioeStudentDeskIcon = [
  1119. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1120. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1121. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1122. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylTeacherDeskIcon = [
  1126. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1127. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1128. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1129. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1130. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1131. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1132. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1133. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1134. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1135. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1136. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1137. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1138. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1139. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1140. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1141. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1142. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1143. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1144. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1145. ];
  1146. //jccssyl
  1147. U.MD.D.I.jccssylStudentDeskIcon = [
  1148. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1149. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1150. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleTeacherDeskIcon = [
  1155. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1156. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1157. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1158. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1159. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1160. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1161. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1162. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1167. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1168. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1169. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1170. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1171. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1172. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1173. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1174. ];
  1175. //cale
  1176. U.MD.D.I.caleStudentDeskIcon = [
  1177. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1178. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1179. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1180. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1181. ];
  1182. //lqwmsgzs
  1183. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1184. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1185. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1186. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1187. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1188. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1189. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1190. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1191. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1192. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1193. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1194. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1195. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1196. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1197. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1198. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1199. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1200. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1201. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1204. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1205. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1206. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1207. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1208. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1209. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1210. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1211. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1212. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1213. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1214. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1215. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1216. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1217. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1218. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1221. ];
  1222. //lqwmsgzs
  1223. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1224. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1225. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1226. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1228. ];
  1229. //盐田区幼儿园
  1230. U.MD.D.I.ytyTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1237. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1238. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1243. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1244. ];
  1245. //盐田区幼儿园
  1246. U.MD.D.I.ytyStudentDeskIcon = [
  1247. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1248. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1249. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1250. ];
  1251. //scnuai
  1252. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1253. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1254. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1255. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1256. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1257. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1258. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1259. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1260. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1261. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1262. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1263. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1264. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1265. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1266. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1268. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1269. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1270. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1271. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1272. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1273. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1274. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1275. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1276. ];
  1277. //scnuai
  1278. U.MD.D.I.scnuaiAdminDeskIcon = [
  1279. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1280. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1281. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1282. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1283. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1284. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1285. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1289. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1290. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1291. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1292. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1293. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1294. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1295. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1296. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1297. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1298. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1299. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1300. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1301. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiStudentDeskIcon = [
  1305. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1306. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1307. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1308. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1309. ];
  1310. //cocobiz
  1311. U.MD.D.I.cocobizteacherDeskIcon = [
  1312. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1313. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1314. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1315. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1316. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1317. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1318. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1319. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1320. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1321. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1322. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1323. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1324. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1325. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1329. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1330. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1331. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1332. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1333. ];
  1334. //cocobiz
  1335. U.MD.D.I.cocobizStudentDeskIcon = [
  1336. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1337. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1338. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1339. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1340. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1341. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1342. ];
  1343. //xxzjky
  1344. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1345. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1346. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1347. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1348. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1349. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1350. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1351. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1352. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1356. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1357. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1358. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1365. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1366. ];
  1367. //xxzjky
  1368. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1369. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1374. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1375. ];
  1376. //nsfx
  1377. U.MD.D.I.nsfxTeacherDeskIcon = [
  1378. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1379. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1380. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1381. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1382. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1383. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1385. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1386. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1387. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1388. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1389. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1390. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1391. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1392. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1395. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1396. ];
  1397. //nsfx
  1398. U.MD.D.I.nsfxStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //stia
  1405. U.MD.D.I.stiaTeacherDeskIcon = [
  1406. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1409. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1410. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1413. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1416. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1417. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1418. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1419. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1420. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1421. ];
  1422. //stia
  1423. U.MD.D.I.stiaStudentDeskIcon = [
  1424. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1425. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1426. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. ];
  1429. //szdjg
  1430. U.MD.D.I.szdjgTeacherDeskIcon = [
  1431. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1432. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. ];
  1434. //szdjg
  1435. U.MD.D.I.szdjgStudentDeskIcon = [
  1436. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010607
  1442. U.MD.D.I.x010607TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1451. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1452. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1453. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1454. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1455. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1456. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1457. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1458. ];
  1459. //010607
  1460. U.MD.D.I.x010607StudentDeskIcon = [
  1461. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1462. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1463. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1464. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1465. ];
  1466. //010608
  1467. U.MD.D.I.x010608TeacherDeskIcon = [
  1468. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1469. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1470. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1471. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1472. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1473. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1474. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1475. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1476. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1477. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1478. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1479. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1480. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1481. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1482. ];
  1483. //010608
  1484. U.MD.D.I.x010608StudentDeskIcon = [
  1485. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1486. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1487. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1489. ];
  1490. //xhly
  1491. U.MD.D.I.xhlyTeacherDeskIcon = [
  1492. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1493. ];
  1494. //010608
  1495. U.MD.D.I.xhlyStudentDeskIcon = [
  1496. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSteacherDeskIcon = [
  1500. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1501. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1502. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1503. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1506. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1507. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1508. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1509. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1510. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1511. ];
  1512. //北师大
  1513. U.MD.D.I.BSDNSstudentDeskIcon = [
  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. //CUHK_EDU
  1520. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1536. ];
  1537. //CUHK_EDU
  1538. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1542. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1543. ];
  1544. //010503
  1545. U.MD.D.I.x010503TeacherDeskIcon = [
  1546. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1547. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1548. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1549. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1550. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1551. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1552. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1553. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1554. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1555. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1556. ];
  1557. //010503
  1558. U.MD.D.I.x010503StudentDeskIcon = [
  1559. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1560. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1561. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1562. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1563. ];
  1564. //SPROUT Lab
  1565. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1566. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1567. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1568. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1569. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1570. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1571. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1572. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1573. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1574. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1575. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1576. ];
  1577. //SPROUT Lab
  1578. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1579. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1583. ];
  1584. //010204
  1585. U.MD.D.I.x010204TeacherDeskIcon = [
  1586. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1587. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1588. ];
  1589. //010204
  1590. U.MD.D.I.x010204StudentDeskIcon = [
  1591. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1592. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1593. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1594. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1595. ];
  1596. //trail
  1597. U.MD.D.I.trailTeacherDeskIcon = [
  1598. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1599. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1600. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1601. ];
  1602. //trail
  1603. U.MD.D.I.trailStudentDeskIcon = [
  1604. // { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1607. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. ];
  1609. //010504
  1610. U.MD.D.I.x010504TeacherDeskIcon = [
  1611. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1612. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1614. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1615. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1616. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1617. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1619. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1622. ];
  1623. //010504
  1624. U.MD.D.I.x010504StudentDeskIcon = [
  1625. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. ];
  1630. //010505
  1631. U.MD.D.I.x010505TeacherDeskIcon = [
  1632. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1633. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1634. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1635. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1638. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1639. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1640. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1641. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1642. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1643. ];
  1644. //010505
  1645. U.MD.D.I.x010505StudentDeskIcon = [
  1646. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //SCNUET
  1652. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1656. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1657. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1658. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1659. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1660. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1661. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1662. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1663. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1664. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1665. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1666. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1667. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1668. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1669. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1670. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1671. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1672. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1673. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1674. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1675. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1676. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1677. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1678. ];
  1679. //SCNUET
  1680. U.MD.D.I.SCNUETAdminDeskIcon = [
  1681. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1682. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1683. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1684. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1685. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1686. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1687. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1688. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1689. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1690. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1691. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1692. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1693. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1694. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1695. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1696. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1697. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1698. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1699. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1700. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1701. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1702. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1703. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1704. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1705. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1706. ];
  1707. //SCNUET
  1708. U.MD.D.I.SCNUETStudentDeskIcon = [
  1709. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1713. ];
  1714. //x020201
  1715. U.MD.D.I.x020201TeacherDeskIcon = [
  1716. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1717. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1718. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1719. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1720. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1721. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1722. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1723. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1724. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1725. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1728. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1729. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1730. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1732. ];
  1733. //x020201
  1734. U.MD.D.I.x020201AdminDeskIcon = [
  1735. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1736. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1737. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1738. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1740. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1741. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1742. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1743. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1744. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1745. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1746. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1747. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.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. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1752. ];
  1753. //020201
  1754. U.MD.D.I.x020201StudentDeskIcon = [
  1755. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1756. { "Name": "项目管理", "Url": "studentCourse", "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": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1759. ];
  1760. //010611
  1761. U.MD.D.I.x010611TeacherDeskIcon = [
  1762. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1763. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1764. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1765. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1766. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1767. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1770. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1771. ];
  1772. //010611
  1773. U.MD.D.I.x010611StudentDeskIcon = [
  1774. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1775. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1776. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1777. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1778. ];
  1779. //010612
  1780. U.MD.D.I.x010612TeacherDeskIcon = [
  1781. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1782. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1783. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1784. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1785. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1786. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1787. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1788. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1789. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1791. ];
  1792. //010612
  1793. U.MD.D.I.x010612StudentDeskIcon = [
  1794. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1795. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1796. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1797. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1798. ];
  1799. //tianyuan
  1800. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1801. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1802. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1803. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1804. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1805. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1806. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1807. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1810. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1811. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1812. ];
  1813. //010611
  1814. U.MD.D.I.tianyuanStudentDeskIcon = [
  1815. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1817. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. ];
  1820. //320101
  1821. U.MD.D.I.x320101TeacherDeskIcon = [
  1822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1828. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1829. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1830. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1831. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1832. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1833. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1834. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1835. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1836. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1837. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1838. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1839. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1840. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1841. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1842. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1843. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1844. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1845. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1846. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1847. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1848. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1849. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1850. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1851. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1852. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1853. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1854. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1855. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1856. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1857. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1858. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1859. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1860. ];
  1861. //320101
  1862. U.MD.D.I.x320101StudentDeskIcon = [
  1863. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1864. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1865. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1867. ];
  1868. //szsy
  1869. U.MD.D.I.szsyTeacherDeskIcon = [
  1870. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1871. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1877. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1878. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1879. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1880. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.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": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1884. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1885. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1886. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1887. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1888. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1889. ];
  1890. //szsy
  1891. U.MD.D.I.szsyStudentDeskIcon = [
  1892. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1893. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1894. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1895. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1896. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1897. ];
  1898. //010404
  1899. U.MD.D.I.x010404TeacherDeskIcon = [
  1900. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1901. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1902. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1903. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1904. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1905. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1906. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1908. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1909. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1910. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1911. ];
  1912. //010404
  1913. U.MD.D.I.x010404StudentDeskIcon = [
  1914. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1915. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1916. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1917. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1918. ];
  1919. //#region 桌面初始化a
  1920. /**
  1921. * 初始化桌面的起始函数
  1922. *
  1923. */
  1924. U.MD.D.I.init = function () {
  1925. if ($("#U_MD_D_K")[0]) {
  1926. //初始化桌面图标
  1927. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1928. // var clickUrl = ':12588/requestIp.php';
  1929. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1930. // U.MD.D.I.Ip = data;
  1931. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1932. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1933. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1934. // })
  1935. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1936. // })
  1937. }
  1938. }
  1939. /**
  1940. * 模式切换
  1941. *
  1942. */
  1943. U.MD.D.I.ModeCheck = function (type) {
  1944. if (US.Config.type == type) {
  1945. return
  1946. }
  1947. US.Config.type = type
  1948. $('.U_PBL_Check .active')[0].className = ''
  1949. if (type == 1) {
  1950. $('.U_PBL_Check div')[0].className = 'active'
  1951. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1952. } else {
  1953. $('.U_PBL_Check div')[1].className = 'active'
  1954. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1955. }
  1956. //初始化桌面图标
  1957. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1958. if (type == 2) {
  1959. U.MD.D.I.openApplication("project")
  1960. }
  1961. }
  1962. /**
  1963. * 隐藏任务栏
  1964. *
  1965. * @param {element} 桌面元素
  1966. */
  1967. U.MD.D.I.hiddenTaskbar = function (el) {
  1968. //任务栏位置变小
  1969. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1970. //桌面的位置变大
  1971. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1972. }
  1973. /**
  1974. * 隐藏任务栏
  1975. *
  1976. * @param {element} 桌面元素
  1977. */
  1978. U.MD.D.I.hiddenTaskbarout = function (el) {
  1979. //任务栏位置变小
  1980. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1981. //任务栏位置变化
  1982. U.selectEl(el).css({ "bottom": "-60px" });
  1983. //桌面的位置变大
  1984. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1985. }
  1986. }
  1987. /**
  1988. * 初始化打印桌面图标
  1989. *
  1990. * @param {element} 桌面元素
  1991. */
  1992. U.MD.D.I.initDesktopIcons = function (el, type) {
  1993. var i, //用于循环
  1994. _content, //桌面图标元素
  1995. _iconcontent, //桌面图标元素
  1996. _frag = $$("frag"), //定义一个碎片元素
  1997. _type = US.userInfo.type,
  1998. _org = US.userInfo.org,
  1999. _oid = US.userInfo.organizeid,
  2000. _role = US.userInfo.role,
  2001. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2002. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2003. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2004. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2005. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2006. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2007. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2008. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2009. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2010. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2011. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2012. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2013. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2014. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2015. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2016. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2017. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2018. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2019. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2020. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2021. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2022. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2023. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2024. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2025. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2026. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2027. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2028. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2029. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2030. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2031. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2032. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2033. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2034. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2035. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2036. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2037. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2038. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2039. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2040. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2041. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2042. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2043. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2044. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2045. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2046. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2047. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2048. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2049. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2050. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2051. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2052. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2053. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2054. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2055. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2056. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2057. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2058. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2059. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2060. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2061. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2062. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2063. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2064. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2065. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2066. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2067. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2068. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2069. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2070. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2071. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2072. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2073. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2074. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2075. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2076. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2077. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2078. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2079. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2080. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2081. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2082. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2083. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2084. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2085. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2086. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2087. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2088. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2089. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2090. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2091. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2092. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2093. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2094. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2095. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2096. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2097. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2098. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2099. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2100. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2101. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2102. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2103. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2104. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2105. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2106. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2107. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2108. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2109. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2110. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2111. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2112. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2113. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2114. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2115. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2116. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2117. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2118. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2119. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2120. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2121. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2122. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2123. 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'];
  2124. 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'];
  2125. //清楚桌面图标
  2126. el.innerHTML = "";
  2127. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2128. _teacherDesktopIconInfo.push(
  2129. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2130. { "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)" } },
  2131. )
  2132. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2133. }
  2134. 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 == 'eaee75a4-ff2e-11ef-b508-005056924926' || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2135. _teacherDesktopIconInfo.push(
  2136. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2137. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2138. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2139. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2140. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2141. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2142. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2143. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2144. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2145. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2146. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2147. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2148. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2149. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2150. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2151. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2152. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2153. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2154. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2155. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2156. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2157. )
  2158. }
  2159. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2160. _teacherDesktopIconInfo.push(
  2161. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2162. )
  2163. }
  2164. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2165. _nsfxTeacherDeskIconInfo.push(
  2166. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2167. )
  2168. }
  2169. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2170. // _teacherDesktopIconInfo.push(
  2171. // )
  2172. // }
  2173. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2174. _teacherDesktopIconInfo.push(
  2175. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2176. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2177. )
  2178. }
  2179. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2180. _teacherDesktopIconInfo.push(
  2181. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2182. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2183. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2184. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2185. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2186. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2187. )
  2188. _studentDesktopIconInfo.push(
  2189. )
  2190. }
  2191. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2192. _teacherDesktopIconInfo.push(
  2193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2194. )
  2195. _studentDesktopIconInfo.push(
  2196. )
  2197. }
  2198. //010606 组织
  2199. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2200. _teacherDesktopIconInfo.push(
  2201. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2202. )
  2203. _studentDesktopIconInfo.push(
  2204. )
  2205. }
  2206. //麒麟二中 和 民新小学
  2207. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2208. _teacherDesktopIconInfo.push(
  2209. )
  2210. }
  2211. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2212. _teacherDesktopIconInfo.push(
  2213. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2214. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2215. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2216. )
  2217. }
  2218. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2219. _hkTeacherDeskIconInfo.push(
  2220. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2221. )
  2222. }
  2223. //北师大附中(010601)
  2224. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2225. // _teacherDesktopIconInfo.push(
  2226. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2227. // )
  2228. // _studentDesktopIconInfo.push(
  2229. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2230. // )
  2231. // }
  2232. //樂善堂余近卿中學
  2233. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2234. _teacherDesktopIconInfo.push(
  2235. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2236. )
  2237. }
  2238. // Education Artificial Intelligence
  2239. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2240. _teacherDesktopIconInfo.push(
  2241. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2242. )
  2243. }
  2244. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2245. _teacherDesktopIconInfo.push(
  2246. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2247. )
  2248. }
  2249. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2250. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2251. _teacherDesktopIconInfo.push(
  2252. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2253. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2254. )
  2255. }
  2256. //麒麟二中
  2257. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2258. _studentDesktopIconInfo.push(
  2259. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2260. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2261. )
  2262. }
  2263. //万科双语
  2264. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2265. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2266. if (el.Name == '项目管理') {
  2267. el.Name = 'PBL项目'
  2268. }
  2269. return el
  2270. })
  2271. _studentDesktopIconInfo3.push(
  2272. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2273. )
  2274. }
  2275. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2276. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2277. return el.Name != '魔盒识字' && el.Name != '24点'
  2278. })
  2279. }
  2280. 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) {
  2281. _studentDesktopIconInfo.push(
  2282. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2283. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2284. )
  2285. }
  2286. //循环创建桌面图标
  2287. if (type == 1) {
  2288. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2289. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2290. _content = $$("div", {
  2291. className: "U_MD_D_KO",
  2292. "onmousedown": U.UF.C.closure(function (obj) {
  2293. //防止拖动图标即打开了桌面应用
  2294. U.MD.D.click(this, obj);
  2295. }, [_studentDesktopIconInfo[i]]),
  2296. "onclick": U.UF.C.closure(function (obj) {
  2297. //防止拖动图标即打开了桌面应用
  2298. U.MD.D.click(this, obj);
  2299. }, [_studentDesktopIconInfo[i]])
  2300. }, _frag); //
  2301. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2302. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2303. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2304. }
  2305. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2306. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2307. _content = $$("div", {
  2308. className: "U_MD_D_KO",
  2309. "onmousedown": U.UF.C.closure(function (obj) {
  2310. //防止拖动图标即打开了桌面应用
  2311. U.MD.D.click(this, obj);
  2312. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2313. "onclick": U.UF.C.closure(function (obj) {
  2314. //防止拖动图标即打开了桌面应用
  2315. U.MD.D.click(this, obj);
  2316. }, [_hkZJLSStudentDeskIconInfo[i]])
  2317. }, _frag); //
  2318. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2319. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2320. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2321. } //
  2322. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2323. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2324. _content = $$("div", {
  2325. className: "U_MD_D_KO",
  2326. "onmousedown": U.UF.C.closure(function (obj) {
  2327. //防止拖动图标即打开了桌面应用
  2328. U.MD.D.click(this, obj);
  2329. }, [_ytyStudentDeskIconInfo[i]]),
  2330. "onclick": U.UF.C.closure(function (obj) {
  2331. //防止拖动图标即打开了桌面应用
  2332. U.MD.D.click(this, obj);
  2333. }, [_ytyStudentDeskIconInfo[i]])
  2334. }, _frag); //
  2335. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2336. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2337. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2338. } //
  2339. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2340. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2341. _content = $$("div", {
  2342. className: "U_MD_D_KO",
  2343. "onmousedown": U.UF.C.closure(function (obj) {
  2344. //防止拖动图标即打开了桌面应用
  2345. U.MD.D.click(this, obj);
  2346. }, [_jccssylStudentDeskIconInfo[i]]),
  2347. "onclick": U.UF.C.closure(function (obj) {
  2348. //防止拖动图标即打开了桌面应用
  2349. U.MD.D.click(this, obj);
  2350. }, [_jccssylStudentDeskIconInfo[i]])
  2351. }, _frag); //
  2352. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2353. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2354. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2355. }
  2356. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2357. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2358. _content = $$("div", {
  2359. className: "U_MD_D_KO",
  2360. "onmousedown": U.UF.C.closure(function (obj) {
  2361. //防止拖动图标即打开了桌面应用
  2362. U.MD.D.click(this, obj);
  2363. }, [_scnuaiStudentDeskIconInfo[i]]),
  2364. "onclick": U.UF.C.closure(function (obj) {
  2365. //防止拖动图标即打开了桌面应用
  2366. U.MD.D.click(this, obj);
  2367. }, [_scnuaiStudentDeskIconInfo[i]])
  2368. }, _frag); //
  2369. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2370. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2371. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2372. }
  2373. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2374. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2375. _content = $$("div", {
  2376. className: "U_MD_D_KO",
  2377. "onmousedown": U.UF.C.closure(function (obj) {
  2378. //防止拖动图标即打开了桌面应用
  2379. U.MD.D.click(this, obj);
  2380. }, [_caleStudentDeskIconInfo[i]]),
  2381. "onclick": U.UF.C.closure(function (obj) {
  2382. //防止拖动图标即打开了桌面应用
  2383. U.MD.D.click(this, obj);
  2384. }, [_caleStudentDeskIconInfo[i]])
  2385. }, _frag); //
  2386. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2387. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2388. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2389. }
  2390. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2391. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2392. _content = $$("div", {
  2393. className: "U_MD_D_KO",
  2394. "onmousedown": U.UF.C.closure(function (obj) {
  2395. //防止拖动图标即打开了桌面应用
  2396. U.MD.D.click(this, obj);
  2397. }, [_thuioeStudentDeskIconInfo[i]]),
  2398. "onclick": U.UF.C.closure(function (obj) {
  2399. //防止拖动图标即打开了桌面应用
  2400. U.MD.D.click(this, obj);
  2401. }, [_thuioeStudentDeskIconInfo[i]])
  2402. }, _frag); //
  2403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2406. }
  2407. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2408. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2409. _content = $$("div", {
  2410. className: "U_MD_D_KO",
  2411. "onmousedown": U.UF.C.closure(function (obj) {
  2412. //防止拖动图标即打开了桌面应用
  2413. U.MD.D.click(this, obj);
  2414. }, [_tpcStudentDeskIconInfo[i]]),
  2415. "onclick": U.UF.C.closure(function (obj) {
  2416. //防止拖动图标即打开了桌面应用
  2417. U.MD.D.click(this, obj);
  2418. }, [_tpcStudentDeskIconInfo[i]])
  2419. }, _frag); //
  2420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2423. } //
  2424. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2425. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2426. _content = $$("div", {
  2427. className: "U_MD_D_KO",
  2428. "onmousedown": U.UF.C.closure(function (obj) {
  2429. //防止拖动图标即打开了桌面应用
  2430. U.MD.D.click(this, obj);
  2431. }, [_chjyjStudentDeskIconInfo[i]]),
  2432. "onclick": U.UF.C.closure(function (obj) {
  2433. //防止拖动图标即打开了桌面应用
  2434. U.MD.D.click(this, obj);
  2435. }, [_chjyjStudentDeskIconInfo[i]])
  2436. }, _frag); //
  2437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2440. }
  2441. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2442. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2443. _content = $$("div", {
  2444. className: "U_MD_D_KO",
  2445. "onmousedown": U.UF.C.closure(function (obj) {
  2446. //防止拖动图标即打开了桌面应用
  2447. U.MD.D.click(this, obj);
  2448. }, [_szjkyStudentDeskIconInfo[i]]),
  2449. "onclick": U.UF.C.closure(function (obj) {
  2450. //防止拖动图标即打开了桌面应用
  2451. U.MD.D.click(this, obj);
  2452. }, [_szjkyStudentDeskIconInfo[i]])
  2453. }, _frag); //
  2454. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2455. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2456. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2457. }
  2458. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2459. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2460. _content = $$("div", {
  2461. className: "U_MD_D_KO",
  2462. "onmousedown": U.UF.C.closure(function (obj) {
  2463. //防止拖动图标即打开了桌面应用
  2464. U.MD.D.click(this, obj);
  2465. }, [_x020201StudentDeskIconInfo[i]]),
  2466. "onclick": U.UF.C.closure(function (obj) {
  2467. //防止拖动图标即打开了桌面应用
  2468. U.MD.D.click(this, obj);
  2469. }, [_x020201StudentDeskIconInfo[i]])
  2470. }, _frag); //
  2471. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2472. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2473. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2474. }
  2475. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2476. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2477. _content = $$("div", {
  2478. className: "U_MD_D_KO",
  2479. "onmousedown": U.UF.C.closure(function (obj) {
  2480. //防止拖动图标即打开了桌面应用
  2481. U.MD.D.click(this, obj);
  2482. }, [_SCNUETStudentDeskIconInfo[i]]),
  2483. "onclick": U.UF.C.closure(function (obj) {
  2484. //防止拖动图标即打开了桌面应用
  2485. U.MD.D.click(this, obj);
  2486. }, [_SCNUETStudentDeskIconInfo[i]])
  2487. }, _frag); //
  2488. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2489. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2490. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2491. }
  2492. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2493. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2494. _content = $$("div", {
  2495. className: "U_MD_D_KO",
  2496. "onmousedown": U.UF.C.closure(function (obj) {
  2497. //防止拖动图标即打开了桌面应用
  2498. U.MD.D.click(this, obj);
  2499. }, [_dseiStudentDeskIconInfo[i]]),
  2500. "onclick": U.UF.C.closure(function (obj) {
  2501. //防止拖动图标即打开了桌面应用
  2502. U.MD.D.click(this, obj);
  2503. }, [_dseiStudentDeskIconInfo[i]])
  2504. }, _frag); //
  2505. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2506. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2507. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2508. }
  2509. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2510. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2511. _content = $$("div", {
  2512. className: "U_MD_D_KO",
  2513. "onmousedown": U.UF.C.closure(function (obj) {
  2514. //防止拖动图标即打开了桌面应用
  2515. U.MD.D.click(this, obj);
  2516. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2517. "onclick": U.UF.C.closure(function (obj) {
  2518. //防止拖动图标即打开了桌面应用
  2519. U.MD.D.click(this, obj);
  2520. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2521. }, _frag); //
  2522. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2523. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2524. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2525. }
  2526. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2527. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2528. _content = $$("div", {
  2529. className: "U_MD_D_KO",
  2530. "onmousedown": U.UF.C.closure(function (obj) {
  2531. //防止拖动图标即打开了桌面应用
  2532. U.MD.D.click(this, obj);
  2533. }, [_nsfxStudentDeskIconInfo[i]]),
  2534. "onclick": U.UF.C.closure(function (obj) {
  2535. //防止拖动图标即打开了桌面应用
  2536. U.MD.D.click(this, obj);
  2537. }, [_nsfxStudentDeskIconInfo[i]])
  2538. }, _frag); //
  2539. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2540. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2541. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2542. }
  2543. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2544. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2545. _content = $$("div", {
  2546. className: "U_MD_D_KO",
  2547. "onmousedown": U.UF.C.closure(function (obj) {
  2548. //防止拖动图标即打开了桌面应用
  2549. U.MD.D.click(this, obj);
  2550. }, [_stiaStudentDeskIconInfo[i]]),
  2551. "onclick": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_stiaStudentDeskIconInfo[i]])
  2555. }, _frag); //
  2556. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2557. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2558. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2559. }
  2560. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2561. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2562. _content = $$("div", {
  2563. className: "U_MD_D_KO",
  2564. "onmousedown": U.UF.C.closure(function (obj) {
  2565. //防止拖动图标即打开了桌面应用
  2566. U.MD.D.click(this, obj);
  2567. }, [_szdjgStudentDeskIconInfo[i]]),
  2568. "onclick": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_szdjgStudentDeskIconInfo[i]])
  2572. }, _frag); //
  2573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2576. }
  2577. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2578. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2579. _content = $$("div", {
  2580. className: "U_MD_D_KO",
  2581. "onmousedown": U.UF.C.closure(function (obj) {
  2582. //防止拖动图标即打开了桌面应用
  2583. U.MD.D.click(this, obj);
  2584. }, [_x010607StudentDeskIconInfo[i]]),
  2585. "onclick": U.UF.C.closure(function (obj) {
  2586. //防止拖动图标即打开了桌面应用
  2587. U.MD.D.click(this, obj);
  2588. }, [_x010607StudentDeskIconInfo[i]])
  2589. }, _frag); //
  2590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2593. }
  2594. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2595. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2596. _content = $$("div", {
  2597. className: "U_MD_D_KO",
  2598. "onmousedown": U.UF.C.closure(function (obj) {
  2599. //防止拖动图标即打开了桌面应用
  2600. U.MD.D.click(this, obj);
  2601. }, [_xhlyStudentDeskIconInfo[i]]),
  2602. "onclick": U.UF.C.closure(function (obj) {
  2603. //防止拖动图标即打开了桌面应用
  2604. U.MD.D.click(this, obj);
  2605. }, [_xhlyStudentDeskIconInfo[i]])
  2606. }, _frag); //
  2607. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2608. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2609. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2610. }
  2611. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2612. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2613. _content = $$("div", {
  2614. className: "U_MD_D_KO",
  2615. "onmousedown": U.UF.C.closure(function (obj) {
  2616. //防止拖动图标即打开了桌面应用
  2617. U.MD.D.click(this, obj);
  2618. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2619. "onclick": U.UF.C.closure(function (obj) {
  2620. //防止拖动图标即打开了桌面应用
  2621. U.MD.D.click(this, obj);
  2622. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2623. }, _frag); //
  2624. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2625. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2626. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2627. }
  2628. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2629. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2630. _content = $$("div", {
  2631. className: "U_MD_D_KO",
  2632. "onmousedown": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_x010503StudentDeskIconInfo[i]]),
  2636. "onclick": U.UF.C.closure(function (obj) {
  2637. //防止拖动图标即打开了桌面应用
  2638. U.MD.D.click(this, obj);
  2639. }, [_x010503StudentDeskIconInfo[i]])
  2640. }, _frag); //
  2641. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2642. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2643. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2644. }
  2645. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2646. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2647. _content = $$("div", {
  2648. className: "U_MD_D_KO",
  2649. "onmousedown": U.UF.C.closure(function (obj) {
  2650. //防止拖动图标即打开了桌面应用
  2651. U.MD.D.click(this, obj);
  2652. }, [_x010504StudentDeskIconInfo[i]]),
  2653. "onclick": U.UF.C.closure(function (obj) {
  2654. //防止拖动图标即打开了桌面应用
  2655. U.MD.D.click(this, obj);
  2656. }, [_x010504StudentDeskIconInfo[i]])
  2657. }, _frag); //
  2658. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2659. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2660. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2661. }
  2662. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2663. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2664. _content = $$("div", {
  2665. className: "U_MD_D_KO",
  2666. "onmousedown": U.UF.C.closure(function (obj) {
  2667. //防止拖动图标即打开了桌面应用
  2668. U.MD.D.click(this, obj);
  2669. }, [_x010505StudentDeskIconInfo[i]]),
  2670. "onclick": U.UF.C.closure(function (obj) {
  2671. //防止拖动图标即打开了桌面应用
  2672. U.MD.D.click(this, obj);
  2673. }, [_x010505StudentDeskIconInfo[i]])
  2674. }, _frag); //
  2675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2678. }
  2679. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2680. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2681. _content = $$("div", {
  2682. className: "U_MD_D_KO",
  2683. "onmousedown": U.UF.C.closure(function (obj) {
  2684. //防止拖动图标即打开了桌面应用
  2685. U.MD.D.click(this, obj);
  2686. }, [_x010404StudentDeskIconInfo[i]]),
  2687. "onclick": U.UF.C.closure(function (obj) {
  2688. //防止拖动图标即打开了桌面应用
  2689. U.MD.D.click(this, obj);
  2690. }, [_x010404StudentDeskIconInfo[i]])
  2691. }, _frag); //
  2692. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2693. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2694. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2695. }
  2696. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2697. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2698. _content = $$("div", {
  2699. className: "U_MD_D_KO",
  2700. "onmousedown": U.UF.C.closure(function (obj) {
  2701. //防止拖动图标即打开了桌面应用
  2702. U.MD.D.click(this, obj);
  2703. }, [_x010204StudentDeskIconInfo[i]]),
  2704. "onclick": U.UF.C.closure(function (obj) {
  2705. //防止拖动图标即打开了桌面应用
  2706. U.MD.D.click(this, obj);
  2707. }, [_x010204StudentDeskIconInfo[i]])
  2708. }, _frag); //
  2709. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2710. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2711. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2712. }
  2713. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2714. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2715. _content = $$("div", {
  2716. className: "U_MD_D_KO",
  2717. "onmousedown": U.UF.C.closure(function (obj) {
  2718. //防止拖动图标即打开了桌面应用
  2719. U.MD.D.click(this, obj);
  2720. }, [_x320101StudentDeskIconInfo[i]]),
  2721. "onclick": U.UF.C.closure(function (obj) {
  2722. //防止拖动图标即打开了桌面应用
  2723. U.MD.D.click(this, obj);
  2724. }, [_x320101StudentDeskIconInfo[i]])
  2725. }, _frag); //
  2726. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2727. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2728. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2729. }
  2730. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2731. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2732. _content = $$("div", {
  2733. className: "U_MD_D_KO",
  2734. "onmousedown": U.UF.C.closure(function (obj) {
  2735. //防止拖动图标即打开了桌面应用
  2736. U.MD.D.click(this, obj);
  2737. }, [_trailStudentDeskIconInfo[i]]),
  2738. "onclick": U.UF.C.closure(function (obj) {
  2739. //防止拖动图标即打开了桌面应用
  2740. U.MD.D.click(this, obj);
  2741. }, [_trailStudentDeskIconInfo[i]])
  2742. }, _frag); //
  2743. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2744. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2745. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2746. }
  2747. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2748. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2749. _content = $$("div", {
  2750. className: "U_MD_D_KO",
  2751. "onmousedown": U.UF.C.closure(function (obj) {
  2752. //防止拖动图标即打开了桌面应用
  2753. U.MD.D.click(this, obj);
  2754. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2755. "onclick": U.UF.C.closure(function (obj) {
  2756. //防止拖动图标即打开了桌面应用
  2757. U.MD.D.click(this, obj);
  2758. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2759. }, _frag); //
  2760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2763. }
  2764. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2765. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_szsyStudentDeskIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_szsyStudentDeskIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2780. }
  2781. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2782. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2783. _content = $$("div", {
  2784. className: "U_MD_D_KO",
  2785. "onmousedown": U.UF.C.closure(function (obj) {
  2786. //防止拖动图标即打开了桌面应用
  2787. U.MD.D.click(this, obj);
  2788. }, [_x010608StudentDeskIconInfo[i]]),
  2789. "onclick": U.UF.C.closure(function (obj) {
  2790. //防止拖动图标即打开了桌面应用
  2791. U.MD.D.click(this, obj);
  2792. }, [_x010608StudentDeskIconInfo[i]])
  2793. }, _frag); //
  2794. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2795. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2796. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2797. }
  2798. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2799. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2800. _content = $$("div", {
  2801. className: "U_MD_D_KO",
  2802. "onmousedown": U.UF.C.closure(function (obj) {
  2803. //防止拖动图标即打开了桌面应用
  2804. U.MD.D.click(this, obj);
  2805. }, [_x010611StudentDeskIconInfo[i]]),
  2806. "onclick": U.UF.C.closure(function (obj) {
  2807. //防止拖动图标即打开了桌面应用
  2808. U.MD.D.click(this, obj);
  2809. }, [_x010611StudentDeskIconInfo[i]])
  2810. }, _frag); //
  2811. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2812. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2813. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2814. }
  2815. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  2816. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_x010612StudentDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_x010612StudentDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2833. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2834. _content = $$("div", {
  2835. className: "U_MD_D_KO",
  2836. "onmousedown": U.UF.C.closure(function (obj) {
  2837. //防止拖动图标即打开了桌面应用
  2838. U.MD.D.click(this, obj);
  2839. }, [_tianyuantudentDeskIconInfo[i]]),
  2840. "onclick": U.UF.C.closure(function (obj) {
  2841. //防止拖动图标即打开了桌面应用
  2842. U.MD.D.click(this, obj);
  2843. }, [_tianyuantudentDeskIconInfo[i]])
  2844. }, _frag); //
  2845. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2846. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2847. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2848. }
  2849. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2850. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2851. _content = $$("div", {
  2852. className: "U_MD_D_KO",
  2853. "onmousedown": U.UF.C.closure(function (obj) {
  2854. //防止拖动图标即打开了桌面应用
  2855. U.MD.D.click(this, obj);
  2856. }, [_siesStudentDeskIconInfo[i]]),
  2857. "onclick": U.UF.C.closure(function (obj) {
  2858. //防止拖动图标即打开了桌面应用
  2859. U.MD.D.click(this, obj);
  2860. }, [_siesStudentDeskIconInfo[i]])
  2861. }, _frag); //
  2862. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2863. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2864. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2865. }
  2866. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2867. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2868. _content = $$("div", {
  2869. className: "U_MD_D_KO",
  2870. "onmousedown": U.UF.C.closure(function (obj) {
  2871. //防止拖动图标即打开了桌面应用
  2872. U.MD.D.click(this, obj);
  2873. }, [_guzmsStudentDeskIconInfo[i]]),
  2874. "onclick": U.UF.C.closure(function (obj) {
  2875. //防止拖动图标即打开了桌面应用
  2876. U.MD.D.click(this, obj);
  2877. }, [_guzmsStudentDeskIconInfo[i]])
  2878. }, _frag); //
  2879. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2880. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2881. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2882. }
  2883. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2884. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2885. _content = $$("div", {
  2886. className: "U_MD_D_KO",
  2887. "onmousedown": U.UF.C.closure(function (obj) {
  2888. //防止拖动图标即打开了桌面应用
  2889. U.MD.D.click(this, obj);
  2890. }, [_hkStudentDeskIconInfo[i]]),
  2891. "onclick": U.UF.C.closure(function (obj) {
  2892. //防止拖动图标即打开了桌面应用
  2893. U.MD.D.click(this, obj);
  2894. }, [_hkStudentDeskIconInfo[i]])
  2895. }, _frag); //
  2896. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2897. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2898. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2899. }
  2900. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2901. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2902. _content = $$("div", {
  2903. className: "U_MD_D_KO",
  2904. "onmousedown": U.UF.C.closure(function (obj) {
  2905. //防止拖动图标即打开了桌面应用
  2906. U.MD.D.click(this, obj);
  2907. }, [_hkaceStudentDeskIconInfo[i]]),
  2908. "onclick": U.UF.C.closure(function (obj) {
  2909. //防止拖动图标即打开了桌面应用
  2910. U.MD.D.click(this, obj);
  2911. }, [_hkaceStudentDeskIconInfo[i]])
  2912. }, _frag); //
  2913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2916. }
  2917. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2918. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2919. _content = $$("div", {
  2920. className: "U_MD_D_KO",
  2921. "onmousedown": U.UF.C.closure(function (obj) {
  2922. //防止拖动图标即打开了桌面应用
  2923. U.MD.D.click(this, obj);
  2924. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2925. "onclick": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_BSDNSstudentDesktopIconInfo[i]])
  2929. }, _frag); //
  2930. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2931. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2932. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2933. }
  2934. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2935. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2936. _content = $$("div", {
  2937. className: "U_MD_D_KO",
  2938. "onmousedown": U.UF.C.closure(function (obj) {
  2939. //防止拖动图标即打开了桌面应用
  2940. U.MD.D.click(this, obj);
  2941. }, [_cocobizStudentDeskIconInfo[i]]),
  2942. "onclick": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_cocobizStudentDeskIconInfo[i]])
  2946. }, _frag); //
  2947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2950. }
  2951. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2952. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2953. _content = $$("div", {
  2954. className: "U_MD_D_KO",
  2955. "onmousedown": U.UF.C.closure(function (obj) {
  2956. //防止拖动图标即打开了桌面应用
  2957. U.MD.D.click(this, obj);
  2958. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2959. "onclick": U.UF.C.closure(function (obj) {
  2960. //防止拖动图标即打开了桌面应用
  2961. U.MD.D.click(this, obj);
  2962. }, [_xxzjkyStudentDeskIconInfo[i]])
  2963. }, _frag); //
  2964. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2965. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2966. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2967. }
  2968. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2969. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2970. _content = $$("div", {
  2971. className: "U_MD_D_KO",
  2972. "onmousedown": U.UF.C.closure(function (obj) {
  2973. //防止拖动图标即打开了桌面应用
  2974. U.MD.D.click(this, obj);
  2975. }, [_studentDesktopIconInfo[i]]),
  2976. "onclick": U.UF.C.closure(function (obj) {
  2977. //防止拖动图标即打开了桌面应用
  2978. U.MD.D.click(this, obj);
  2979. }, [_studentDesktopIconInfo[i]])
  2980. }, _frag); //
  2981. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2982. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2983. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2984. }
  2985. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2986. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2987. _content = $$("div", {
  2988. className: "U_MD_D_KO",
  2989. "onmousedown": U.UF.C.closure(function (obj) {
  2990. //防止拖动图标即打开了桌面应用
  2991. U.MD.D.click(this, obj);
  2992. }, [_tcStudentDeskIconInfo[i]]),
  2993. "onclick": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_tcStudentDeskIconInfo[i]])
  2997. }, _frag); //
  2998. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2999. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3000. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3001. }
  3002. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3003. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3004. _content = $$("div", {
  3005. className: "U_MD_D_KO",
  3006. "onmousedown": U.UF.C.closure(function (obj) {
  3007. //防止拖动图标即打开了桌面应用
  3008. U.MD.D.click(this, obj);
  3009. }, [_szscStudentDeskIconInfo[i]]),
  3010. "onclick": U.UF.C.closure(function (obj) {
  3011. //防止拖动图标即打开了桌面应用
  3012. U.MD.D.click(this, obj);
  3013. }, [_szscStudentDeskIconInfo[i]])
  3014. }, _frag); //
  3015. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3016. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3017. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3018. }
  3019. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3020. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3021. _content = $$("div", {
  3022. className: "U_MD_D_KO",
  3023. "onmousedown": U.UF.C.closure(function (obj) {
  3024. //防止拖动图标即打开了桌面应用
  3025. U.MD.D.click(this, obj);
  3026. }, [_studentDesktopIconInfo3[i]]),
  3027. "onclick": U.UF.C.closure(function (obj) {
  3028. //防止拖动图标即打开了桌面应用
  3029. U.MD.D.click(this, obj);
  3030. }, [_studentDesktopIconInfo3[i]])
  3031. }, _frag); //
  3032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3035. }
  3036. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  3037. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3038. _content = $$("div", {
  3039. className: "U_MD_D_KO",
  3040. "onmousedown": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_studentDesktopIconInfo2[i]]),
  3044. "onclick": U.UF.C.closure(function (obj) {
  3045. //防止拖动图标即打开了桌面应用
  3046. U.MD.D.click(this, obj);
  3047. }, [_studentDesktopIconInfo2[i]])
  3048. }, _frag); //
  3049. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3050. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3051. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3052. }
  3053. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3054. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3055. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  3056. continue
  3057. }
  3058. _content = $$("div", {
  3059. className: "U_MD_D_KO",
  3060. "onmousedown": U.UF.C.closure(function (obj) {
  3061. //防止拖动图标即打开了桌面应用
  3062. U.MD.D.click(this, obj);
  3063. }, [_wanketeacherDesktopIconInfo[i]]),
  3064. "onclick": U.UF.C.closure(function (obj) {
  3065. //防止拖动图标即打开了桌面应用
  3066. U.MD.D.click(this, obj);
  3067. }, [_wanketeacherDesktopIconInfo[i]])
  3068. }, _frag); //
  3069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3072. }
  3073. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3074. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3075. _content = $$("div", {
  3076. className: "U_MD_D_KO",
  3077. "onmousedown": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_wankeAdminDesktopIconInfo[i]]),
  3081. "onclick": U.UF.C.closure(function (obj) {
  3082. //防止拖动图标即打开了桌面应用
  3083. U.MD.D.click(this, obj);
  3084. }, [_wankeAdminDesktopIconInfo[i]])
  3085. }, _frag); //
  3086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3089. }
  3090. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3091. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3092. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3093. continue
  3094. }
  3095. _content = $$("div", {
  3096. className: "U_MD_D_KO",
  3097. "onmousedown": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3101. "onclick": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_scnuaiTeacherDeskIconInfo[i]])
  3105. }, _frag); //
  3106. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3107. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3108. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3109. }
  3110. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3111. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3112. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3113. continue
  3114. }
  3115. _content = $$("div", {
  3116. className: "U_MD_D_KO",
  3117. "onmousedown": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3121. "onclick": U.UF.C.closure(function (obj) {
  3122. //防止拖动图标即打开了桌面应用
  3123. U.MD.D.click(this, obj);
  3124. }, [_BSDNSteacherDesktopIconInfo[i]])
  3125. }, _frag); //
  3126. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3127. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3128. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3129. }
  3130. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3131. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3132. _content = $$("div", {
  3133. className: "U_MD_D_KO",
  3134. "onmousedown": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_scnuaiAdminDeskIconInfo[i]]),
  3138. "onclick": U.UF.C.closure(function (obj) {
  3139. //防止拖动图标即打开了桌面应用
  3140. U.MD.D.click(this, obj);
  3141. }, [_scnuaiAdminDeskIconInfo[i]])
  3142. }, _frag); //
  3143. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3144. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3145. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3146. }
  3147. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3148. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3149. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3150. continue
  3151. }
  3152. _content = $$("div", {
  3153. className: "U_MD_D_KO",
  3154. "onmousedown": U.UF.C.closure(function (obj) {
  3155. //防止拖动图标即打开了桌面应用
  3156. U.MD.D.click(this, obj);
  3157. }, [_jccssylTeacherDeskIconInfo[i]]),
  3158. "onclick": U.UF.C.closure(function (obj) {
  3159. //防止拖动图标即打开了桌面应用
  3160. U.MD.D.click(this, obj);
  3161. }, [_jccssylTeacherDeskIconInfo[i]])
  3162. }, _frag); //
  3163. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3164. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3165. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3166. }
  3167. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3168. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3169. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3170. continue
  3171. }
  3172. _content = $$("div", {
  3173. className: "U_MD_D_KO",
  3174. "onmousedown": U.UF.C.closure(function (obj) {
  3175. //防止拖动图标即打开了桌面应用
  3176. U.MD.D.click(this, obj);
  3177. }, [_caleTeacherDeskIconInfo[i]]),
  3178. "onclick": U.UF.C.closure(function (obj) {
  3179. //防止拖动图标即打开了桌面应用
  3180. U.MD.D.click(this, obj);
  3181. }, [_caleTeacherDeskIconInfo[i]])
  3182. }, _frag); //
  3183. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3184. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3185. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3186. }
  3187. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3188. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3189. _content = $$("div", {
  3190. className: "U_MD_D_KO",
  3191. "onmousedown": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_tpcOrganizerDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_tpcOrganizerDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3205. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3207. continue
  3208. }
  3209. _content = $$("div", {
  3210. className: "U_MD_D_KO",
  3211. "onmousedown": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_tpcTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_tpcTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3225. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3226. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3227. continue
  3228. }
  3229. _content = $$("div", {
  3230. className: "U_MD_D_KO",
  3231. "onmousedown": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_teacherDesktopIconInfo2[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_teacherDesktopIconInfo2[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3245. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3247. continue
  3248. }
  3249. _content = $$("div", {
  3250. className: "U_MD_D_KO",
  3251. "onmousedown": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_thuioeTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_thuioeTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3265. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3267. continue
  3268. }
  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. }, [_lotechTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_lotechTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }//
  3284. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3285. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. }
  3304. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3305. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  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. }, [_siesTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_siesTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3325. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3327. continue
  3328. }
  3329. _content = $$("div", {
  3330. className: "U_MD_D_KO",
  3331. "onmousedown": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_guzmsTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_guzmsTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3345. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3347. continue
  3348. }
  3349. _content = $$("div", {
  3350. className: "U_MD_D_KO",
  3351. "onmousedown": U.UF.C.closure(function (obj) {
  3352. //防止拖动图标即打开了桌面应用
  3353. U.MD.D.click(this, obj);
  3354. }, [_longhuaTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_longhuaTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3365. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3367. continue
  3368. }
  3369. _content = $$("div", {
  3370. className: "U_MD_D_KO",
  3371. "onmousedown": U.UF.C.closure(function (obj) {
  3372. //防止拖动图标即打开了桌面应用
  3373. U.MD.D.click(this, obj);
  3374. }, [_ytyTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_ytyTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3385. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3387. continue
  3388. }
  3389. _content = $$("div", {
  3390. className: "U_MD_D_KO",
  3391. "onmousedown": U.UF.C.closure(function (obj) {
  3392. //防止拖动图标即打开了桌面应用
  3393. U.MD.D.click(this, obj);
  3394. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_yunhaiTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. } //_hkStudentDeskIconInfo
  3404. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3405. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3406. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3407. continue
  3408. }
  3409. _content = $$("div", {
  3410. className: "U_MD_D_KO",
  3411. "onmousedown": U.UF.C.closure(function (obj) {
  3412. //防止拖动图标即打开了桌面应用
  3413. U.MD.D.click(this, obj);
  3414. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3415. "onclick": U.UF.C.closure(function (obj) {
  3416. //防止拖动图标即打开了桌面应用
  3417. U.MD.D.click(this, obj);
  3418. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3419. }, _frag); //
  3420. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3421. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3422. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3423. }
  3424. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3425. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3426. if(_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3427. continue
  3428. }
  3429. _content = $$("div", {
  3430. className: "U_MD_D_KO",
  3431. "onmousedown": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_ricohTeacherDeskIconInfo[i]]),
  3435. "onclick": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_ricohTeacherDeskIconInfo[i]])
  3439. }, _frag); //
  3440. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3441. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3442. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3443. }
  3444. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3445. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3446. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3447. continue
  3448. }
  3449. _content = $$("div", {
  3450. className: "U_MD_D_KO",
  3451. "onmousedown": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_hkTeacherDeskIconInfo[i]]),
  3455. "onclick": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_hkTeacherDeskIconInfo[i]])
  3459. }, _frag); //
  3460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3463. }
  3464. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3465. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3466. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3467. continue
  3468. }
  3469. _content = $$("div", {
  3470. className: "U_MD_D_KO",
  3471. "onmousedown": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_hkaceTeacherDeskIconInfo[i]]),
  3475. "onclick": U.UF.C.closure(function (obj) {
  3476. //防止拖动图标即打开了桌面应用
  3477. U.MD.D.click(this, obj);
  3478. }, [_hkaceTeacherDeskIconInfo[i]])
  3479. }, _frag); //
  3480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3483. }
  3484. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3485. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3486. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3487. continue
  3488. }
  3489. _content = $$("div", {
  3490. className: "U_MD_D_KO",
  3491. "onmousedown": U.UF.C.closure(function (obj) {
  3492. //防止拖动图标即打开了桌面应用
  3493. U.MD.D.click(this, obj);
  3494. }, [_cocobizTeacherDeskIconInfo[i]]),
  3495. "onclick": U.UF.C.closure(function (obj) {
  3496. //防止拖动图标即打开了桌面应用
  3497. U.MD.D.click(this, obj);
  3498. }, [_cocobizTeacherDeskIconInfo[i]])
  3499. }, _frag); //
  3500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3503. }
  3504. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3505. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3506. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3507. continue
  3508. }
  3509. _content = $$("div", {
  3510. className: "U_MD_D_KO",
  3511. "onmousedown": U.UF.C.closure(function (obj) {
  3512. //防止拖动图标即打开了桌面应用
  3513. U.MD.D.click(this, obj);
  3514. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3515. "onclick": U.UF.C.closure(function (obj) {
  3516. //防止拖动图标即打开了桌面应用
  3517. U.MD.D.click(this, obj);
  3518. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3519. }, _frag); //
  3520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3523. }
  3524. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3525. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3526. _content = $$("div", {
  3527. className: "U_MD_D_KO",
  3528. "onmousedown": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_gdjgAdminDeskIconInfo[i]]),
  3532. "onclick": U.UF.C.closure(function (obj) {
  3533. //防止拖动图标即打开了桌面应用
  3534. U.MD.D.click(this, obj);
  3535. }, [_gdjgAdminDeskIconInfo[i]])
  3536. }, _frag); //
  3537. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3538. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3539. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3540. }
  3541. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3542. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3543. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3544. continue
  3545. }
  3546. _content = $$("div", {
  3547. className: "U_MD_D_KO",
  3548. "onmousedown": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_gdjgTeacherDeskIconInfo[i]]),
  3552. "onclick": U.UF.C.closure(function (obj) {
  3553. //防止拖动图标即打开了桌面应用
  3554. U.MD.D.click(this, obj);
  3555. }, [_gdjgTeacherDeskIconInfo[i]])
  3556. }, _frag); //
  3557. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3558. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3559. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3560. }
  3561. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3562. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3563. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3564. continue
  3565. }
  3566. _content = $$("div", {
  3567. className: "U_MD_D_KO",
  3568. "onmousedown": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_szherTeacherDeskIconInfo[i]]),
  3572. "onclick": U.UF.C.closure(function (obj) {
  3573. //防止拖动图标即打开了桌面应用
  3574. U.MD.D.click(this, obj);
  3575. }, [_szherTeacherDeskIconInfo[i]])
  3576. }, _frag); //
  3577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3580. }
  3581. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3582. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3589. "onclick": U.UF.C.closure(function (obj) {
  3590. //防止拖动图标即打开了桌面应用
  3591. U.MD.D.click(this, obj);
  3592. }, [_heyuannAdminDeskIconInfo[i]])
  3593. }, _frag); //
  3594. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3595. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3596. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3597. }
  3598. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3599. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3600. if(_role === 0 && _heyuanTeacherDeskIconInfo[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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3609. "onclick": U.UF.C.closure(function (obj) {
  3610. //防止拖动图标即打开了桌面应用
  3611. U.MD.D.click(this, obj);
  3612. }, [_heyuanTeacherDeskIconInfo[i]])
  3613. }, _frag); //
  3614. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3615. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3616. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3617. } //
  3618. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3619. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3620. _content = $$("div", {
  3621. className: "U_MD_D_KO",
  3622. "onmousedown": U.UF.C.closure(function (obj) {
  3623. //防止拖动图标即打开了桌面应用
  3624. U.MD.D.click(this, obj);
  3625. }, [_dseiAdminDeskIconInfo[i]]),
  3626. "onclick": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_dseiAdminDeskIconInfo[i]])
  3630. }, _frag); //
  3631. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3632. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3633. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3634. }
  3635. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3636. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3637. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3638. continue
  3639. }
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. "onmousedown": U.UF.C.closure(function (obj) {
  3643. //防止拖动图标即打开了桌面应用
  3644. U.MD.D.click(this, obj);
  3645. }, [_dseiTeacherDeskIconInfo[i]]),
  3646. "onclick": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_dseiTeacherDeskIconInfo[i]])
  3650. }, _frag); //
  3651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3654. } //
  3655. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3656. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3657. _content = $$("div", {
  3658. className: "U_MD_D_KO",
  3659. "onmousedown": U.UF.C.closure(function (obj) {
  3660. //防止拖动图标即打开了桌面应用
  3661. U.MD.D.click(this, obj);
  3662. }, [_chjyjAdminDeskIconInfo[i]]),
  3663. "onclick": U.UF.C.closure(function (obj) {
  3664. //防止拖动图标即打开了桌面应用
  3665. U.MD.D.click(this, obj);
  3666. }, [_chjyjAdminDeskIconInfo[i]])
  3667. }, _frag); //
  3668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3671. }//
  3672. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3673. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3674. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3675. continue
  3676. }
  3677. _content = $$("div", {
  3678. className: "U_MD_D_KO",
  3679. "onmousedown": U.UF.C.closure(function (obj) {
  3680. //防止拖动图标即打开了桌面应用
  3681. U.MD.D.click(this, obj);
  3682. }, [_chjyjTeacherDeskIconInfo[i]]),
  3683. "onclick": U.UF.C.closure(function (obj) {
  3684. //防止拖动图标即打开了桌面应用
  3685. U.MD.D.click(this, obj);
  3686. }, [_chjyjTeacherDeskIconInfo[i]])
  3687. }, _frag); //
  3688. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3689. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3690. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3691. }
  3692. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3693. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3694. _content = $$("div", {
  3695. className: "U_MD_D_KO",
  3696. "onmousedown": U.UF.C.closure(function (obj) {
  3697. //防止拖动图标即打开了桌面应用
  3698. U.MD.D.click(this, obj);
  3699. }, [_szjkyAdminDeskIconInfo[i]]),
  3700. "onclick": U.UF.C.closure(function (obj) {
  3701. //防止拖动图标即打开了桌面应用
  3702. U.MD.D.click(this, obj);
  3703. }, [_szjkyAdminDeskIconInfo[i]])
  3704. }, _frag); //
  3705. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3706. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3707. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3708. }//
  3709. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3710. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3711. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3712. continue
  3713. }
  3714. _content = $$("div", {
  3715. className: "U_MD_D_KO",
  3716. "onmousedown": U.UF.C.closure(function (obj) {
  3717. //防止拖动图标即打开了桌面应用
  3718. U.MD.D.click(this, obj);
  3719. }, [_szjkyTeacherDeskIconInfo[i]]),
  3720. "onclick": U.UF.C.closure(function (obj) {
  3721. //防止拖动图标即打开了桌面应用
  3722. U.MD.D.click(this, obj);
  3723. }, [_szjkyTeacherDeskIconInfo[i]])
  3724. }, _frag); //
  3725. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3726. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3727. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3728. }
  3729. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3730. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3731. _content = $$("div", {
  3732. className: "U_MD_D_KO",
  3733. "onmousedown": U.UF.C.closure(function (obj) {
  3734. //防止拖动图标即打开了桌面应用
  3735. U.MD.D.click(this, obj);
  3736. }, [_x020201AdminDeskIconInfo[i]]),
  3737. "onclick": U.UF.C.closure(function (obj) {
  3738. //防止拖动图标即打开了桌面应用
  3739. U.MD.D.click(this, obj);
  3740. }, [_x020201AdminDeskIconInfo[i]])
  3741. }, _frag); //
  3742. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3743. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3744. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3745. }//
  3746. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3747. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3748. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3749. continue
  3750. }
  3751. _content = $$("div", {
  3752. className: "U_MD_D_KO",
  3753. "onmousedown": U.UF.C.closure(function (obj) {
  3754. //防止拖动图标即打开了桌面应用
  3755. U.MD.D.click(this, obj);
  3756. }, [_x020201TeacherDeskIconInfo[i]]),
  3757. "onclick": U.UF.C.closure(function (obj) {
  3758. //防止拖动图标即打开了桌面应用
  3759. U.MD.D.click(this, obj);
  3760. }, [_x020201TeacherDeskIconInfo[i]])
  3761. }, _frag); //
  3762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3765. }
  3766. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3767. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3768. _content = $$("div", {
  3769. className: "U_MD_D_KO",
  3770. "onmousedown": U.UF.C.closure(function (obj) {
  3771. //防止拖动图标即打开了桌面应用
  3772. U.MD.D.click(this, obj);
  3773. }, [_SCNUETAdminDeskIconInfo[i]]),
  3774. "onclick": U.UF.C.closure(function (obj) {
  3775. //防止拖动图标即打开了桌面应用
  3776. U.MD.D.click(this, obj);
  3777. }, [_SCNUETAdminDeskIconInfo[i]])
  3778. }, _frag); //
  3779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3782. }//
  3783. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3784. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3785. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3786. continue
  3787. }
  3788. _content = $$("div", {
  3789. className: "U_MD_D_KO",
  3790. "onmousedown": U.UF.C.closure(function (obj) {
  3791. //防止拖动图标即打开了桌面应用
  3792. U.MD.D.click(this, obj);
  3793. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3794. "onclick": U.UF.C.closure(function (obj) {
  3795. //防止拖动图标即打开了桌面应用
  3796. U.MD.D.click(this, obj);
  3797. }, [_SCNUETTeacherDeskIconInfo[i]])
  3798. }, _frag); //
  3799. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3800. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3801. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3802. }
  3803. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3804. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3805. _content = $$("div", {
  3806. className: "U_MD_D_KO",
  3807. "onmousedown": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_futianAdminDeskIconInfo[i]]),
  3811. "onclick": U.UF.C.closure(function (obj) {
  3812. //防止拖动图标即打开了桌面应用
  3813. U.MD.D.click(this, obj);
  3814. }, [_futianAdminDeskIconInfo[i]])
  3815. }, _frag); //
  3816. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3817. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3818. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3819. }
  3820. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3821. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3822. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3823. continue
  3824. }
  3825. _content = $$("div", {
  3826. className: "U_MD_D_KO",
  3827. "onmousedown": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_futianTeacherDeskIconInfo[i]]),
  3831. "onclick": U.UF.C.closure(function (obj) {
  3832. //防止拖动图标即打开了桌面应用
  3833. U.MD.D.click(this, obj);
  3834. }, [_futianTeacherDeskIconInfo[i]])
  3835. }, _frag); //
  3836. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3837. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3838. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3839. }
  3840. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3841. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3842. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3843. continue
  3844. }
  3845. _content = $$("div", {
  3846. className: "U_MD_D_KO",
  3847. "onmousedown": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_MingdeTeacherDeskIcon[i]]),
  3851. "onclick": U.UF.C.closure(function (obj) {
  3852. //防止拖动图标即打开了桌面应用
  3853. U.MD.D.click(this, obj);
  3854. }, [_MingdeTeacherDeskIcon[i]])
  3855. }, _frag); //
  3856. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3857. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3858. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3859. }
  3860. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3861. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3862. _content = $$("div", {
  3863. className: "U_MD_D_KO",
  3864. "onmousedown": U.UF.C.closure(function (obj) {
  3865. //防止拖动图标即打开了桌面应用
  3866. U.MD.D.click(this, obj);
  3867. }, [_lhsAdminDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_lhsAdminDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3878. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3880. continue
  3881. }
  3882. _content = $$("div", {
  3883. className: "U_MD_D_KO",
  3884. "onmousedown": U.UF.C.closure(function (obj) {
  3885. //防止拖动图标即打开了桌面应用
  3886. U.MD.D.click(this, obj);
  3887. }, [_lhsteacherDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_lhsteacherDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3898. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3899. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3900. continue
  3901. }
  3902. _content = $$("div", {
  3903. className: "U_MD_D_KO",
  3904. "onmousedown": U.UF.C.closure(function (obj) {
  3905. //防止拖动图标即打开了桌面应用
  3906. U.MD.D.click(this, obj);
  3907. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_zhoujiateacherDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3918. for (i = 0; i < _hanDeskIcon.length; i++) {
  3919. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3920. continue
  3921. }
  3922. _content = $$("div", {
  3923. className: "U_MD_D_KO",
  3924. "onmousedown": U.UF.C.closure(function (obj) {
  3925. //防止拖动图标即打开了桌面应用
  3926. U.MD.D.click(this, obj);
  3927. }, [_hanDeskIcon[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_hanDeskIcon[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3936. }
  3937. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3938. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3939. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3940. continue
  3941. }
  3942. _content = $$("div", {
  3943. className: "U_MD_D_KO",
  3944. "onmousedown": U.UF.C.closure(function (obj) {
  3945. //防止拖动图标即打开了桌面应用
  3946. U.MD.D.click(this, obj);
  3947. }, [_orgStemDeskIcon[i]]),
  3948. "onclick": U.UF.C.closure(function (obj) {
  3949. //防止拖动图标即打开了桌面应用
  3950. U.MD.D.click(this, obj);
  3951. }, [_orgStemDeskIcon[i]])
  3952. }, _frag); //
  3953. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3954. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3955. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3956. }
  3957. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3958. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3959. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3960. continue
  3961. }
  3962. _content = $$("div", {
  3963. className: "U_MD_D_KO",
  3964. "onmousedown": U.UF.C.closure(function (obj) {
  3965. //防止拖动图标即打开了桌面应用
  3966. U.MD.D.click(this, obj);
  3967. }, [_szulsDeskIcon[i]]),
  3968. "onclick": U.UF.C.closure(function (obj) {
  3969. //防止拖动图标即打开了桌面应用
  3970. U.MD.D.click(this, obj);
  3971. }, [_szulsDeskIcon[i]])
  3972. }, _frag); //
  3973. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3974. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3975. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3976. }
  3977. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3978. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3979. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3980. continue
  3981. }
  3982. _content = $$("div", {
  3983. className: "U_MD_D_KO",
  3984. "onmousedown": U.UF.C.closure(function (obj) {
  3985. //防止拖动图标即打开了桌面应用
  3986. U.MD.D.click(this, obj);
  3987. }, [_orgDesktopIconInfo[i]]),
  3988. "onclick": U.UF.C.closure(function (obj) {
  3989. //防止拖动图标即打开了桌面应用
  3990. U.MD.D.click(this, obj);
  3991. }, [_orgDesktopIconInfo[i]])
  3992. }, _frag); //
  3993. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3994. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3995. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3996. }
  3997. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3998. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3999. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  4000. continue
  4001. }
  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. }, [_schoolDesktopIconInfo[i]]),
  4008. "onclick": U.UF.C.closure(function (obj) {
  4009. //防止拖动图标即打开了桌面应用
  4010. U.MD.D.click(this, obj);
  4011. }, [_schoolDesktopIconInfo[i]])
  4012. }, _frag); //
  4013. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4014. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4015. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4016. }
  4017. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4018. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4019. if(_role === 0 && _GMteacherDesktopIconInfo[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. }, [_GMteacherDesktopIconInfo[i]]),
  4028. "onclick": U.UF.C.closure(function (obj) {
  4029. //防止拖动图标即打开了桌面应用
  4030. U.MD.D.click(this, obj);
  4031. }, [_GMteacherDesktopIconInfo[i]])
  4032. }, _frag); //
  4033. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4034. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4035. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4036. }
  4037. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4038. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4039. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  4040. continue
  4041. }
  4042. _content = $$("div", {
  4043. className: "U_MD_D_KO",
  4044. "onmousedown": U.UF.C.closure(function (obj) {
  4045. //防止拖动图标即打开了桌面应用
  4046. U.MD.D.click(this, obj);
  4047. }, [_SONGteacherDesktopIconInfo[i]]),
  4048. "onclick": U.UF.C.closure(function (obj) {
  4049. //防止拖动图标即打开了桌面应用
  4050. U.MD.D.click(this, obj);
  4051. }, [_SONGteacherDesktopIconInfo[i]])
  4052. }, _frag); //
  4053. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4054. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4055. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4056. }
  4057. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4058. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  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. }, [_GMstudentDesktopIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_GMstudentDesktopIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4075. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _tcTeacherDeskIconInfo[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. }, [_tcTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_tcTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4095. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4097. continue
  4098. }
  4099. _content = $$("div", {
  4100. className: "U_MD_D_KO",
  4101. "onmousedown": U.UF.C.closure(function (obj) {
  4102. //防止拖动图标即打开了桌面应用
  4103. U.MD.D.click(this, obj);
  4104. }, [_tcOrganizerDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_tcOrganizerDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4115. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4117. continue
  4118. }
  4119. _content = $$("div", {
  4120. className: "U_MD_D_KO",
  4121. "onmousedown": U.UF.C.closure(function (obj) {
  4122. //防止拖动图标即打开了桌面应用
  4123. U.MD.D.click(this, obj);
  4124. }, [_szscTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_szscTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4135. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4137. continue
  4138. }
  4139. _content = $$("div", {
  4140. className: "U_MD_D_KO",
  4141. "onmousedown": U.UF.C.closure(function (obj) {
  4142. //防止拖动图标即打开了桌面应用
  4143. U.MD.D.click(this, obj);
  4144. }, [_szscOrganizerDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_szscOrganizerDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4155. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4157. continue
  4158. }
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. "onmousedown": U.UF.C.closure(function (obj) {
  4162. //防止拖动图标即打开了桌面应用
  4163. U.MD.D.click(this, obj);
  4164. }, [_nsfxTeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_nsfxTeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4175. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4177. continue
  4178. }
  4179. _content = $$("div", {
  4180. className: "U_MD_D_KO",
  4181. "onmousedown": U.UF.C.closure(function (obj) {
  4182. //防止拖动图标即打开了桌面应用
  4183. U.MD.D.click(this, obj);
  4184. }, [_stiaTeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_stiaTeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4195. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4197. continue
  4198. }
  4199. _content = $$("div", {
  4200. className: "U_MD_D_KO",
  4201. "onmousedown": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_szdjgTeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_szdjgTeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4215. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4217. continue
  4218. }
  4219. _content = $$("div", {
  4220. className: "U_MD_D_KO",
  4221. "onmousedown": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_x010607TeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_x010607TeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4235. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4237. continue
  4238. }
  4239. _content = $$("div", {
  4240. className: "U_MD_D_KO",
  4241. "onmousedown": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_xhlyTeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_xhlyTeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4255. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4257. continue
  4258. }
  4259. _content = $$("div", {
  4260. className: "U_MD_D_KO",
  4261. "onmousedown": U.UF.C.closure(function (obj) {
  4262. //防止拖动图标即打开了桌面应用
  4263. U.MD.D.click(this, obj);
  4264. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4275. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4277. continue
  4278. }
  4279. _content = $$("div", {
  4280. className: "U_MD_D_KO",
  4281. "onmousedown": U.UF.C.closure(function (obj) {
  4282. //防止拖动图标即打开了桌面应用
  4283. U.MD.D.click(this, obj);
  4284. }, [_x010503TeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_x010503TeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4295. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4297. continue
  4298. }
  4299. _content = $$("div", {
  4300. className: "U_MD_D_KO",
  4301. "onmousedown": U.UF.C.closure(function (obj) {
  4302. //防止拖动图标即打开了桌面应用
  4303. U.MD.D.click(this, obj);
  4304. }, [_x010504TeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_x010504TeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4315. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4317. continue
  4318. }
  4319. _content = $$("div", {
  4320. className: "U_MD_D_KO",
  4321. "onmousedown": U.UF.C.closure(function (obj) {
  4322. //防止拖动图标即打开了桌面应用
  4323. U.MD.D.click(this, obj);
  4324. }, [_x010505TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010505TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4335. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4337. continue
  4338. }
  4339. _content = $$("div", {
  4340. className: "U_MD_D_KO",
  4341. "onmousedown": U.UF.C.closure(function (obj) {
  4342. //防止拖动图标即打开了桌面应用
  4343. U.MD.D.click(this, obj);
  4344. }, [_x010404TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010404TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4355. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4357. continue
  4358. }
  4359. _content = $$("div", {
  4360. className: "U_MD_D_KO",
  4361. "onmousedown": U.UF.C.closure(function (obj) {
  4362. //防止拖动图标即打开了桌面应用
  4363. U.MD.D.click(this, obj);
  4364. }, [_x010204TeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_x010204TeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4375. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4376. if(_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4377. continue
  4378. }
  4379. _content = $$("div", {
  4380. className: "U_MD_D_KO",
  4381. "onmousedown": U.UF.C.closure(function (obj) {
  4382. //防止拖动图标即打开了桌面应用
  4383. U.MD.D.click(this, obj);
  4384. }, [_x320101TeacherDeskIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_x320101TeacherDeskIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4395. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4396. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4397. continue
  4398. }
  4399. _content = $$("div", {
  4400. className: "U_MD_D_KO",
  4401. "onmousedown": U.UF.C.closure(function (obj) {
  4402. //防止拖动图标即打开了桌面应用
  4403. U.MD.D.click(this, obj);
  4404. }, [_trailTeacherDeskIconInfo[i]]),
  4405. "onclick": U.UF.C.closure(function (obj) {
  4406. //防止拖动图标即打开了桌面应用
  4407. U.MD.D.click(this, obj);
  4408. }, [_trailTeacherDeskIconInfo[i]])
  4409. }, _frag); //
  4410. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4411. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4412. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4413. }
  4414. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4415. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4416. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4417. continue
  4418. }
  4419. _content = $$("div", {
  4420. className: "U_MD_D_KO",
  4421. "onmousedown": U.UF.C.closure(function (obj) {
  4422. //防止拖动图标即打开了桌面应用
  4423. U.MD.D.click(this, obj);
  4424. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4425. "onclick": U.UF.C.closure(function (obj) {
  4426. //防止拖动图标即打开了桌面应用
  4427. U.MD.D.click(this, obj);
  4428. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4429. }, _frag); //
  4430. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4431. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4432. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4433. }
  4434. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4435. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4436. if(_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4437. continue
  4438. }
  4439. _content = $$("div", {
  4440. className: "U_MD_D_KO",
  4441. "onmousedown": U.UF.C.closure(function (obj) {
  4442. //防止拖动图标即打开了桌面应用
  4443. U.MD.D.click(this, obj);
  4444. }, [_szsyTeacherDeskIconInfo[i]]),
  4445. "onclick": U.UF.C.closure(function (obj) {
  4446. //防止拖动图标即打开了桌面应用
  4447. U.MD.D.click(this, obj);
  4448. }, [_szsyTeacherDeskIconInfo[i]])
  4449. }, _frag); //
  4450. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4451. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4452. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4453. }
  4454. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4455. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4456. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4457. continue
  4458. }
  4459. _content = $$("div", {
  4460. className: "U_MD_D_KO",
  4461. "onmousedown": U.UF.C.closure(function (obj) {
  4462. //防止拖动图标即打开了桌面应用
  4463. U.MD.D.click(this, obj);
  4464. }, [_x010608TeacherDeskIconInfo[i]]),
  4465. "onclick": U.UF.C.closure(function (obj) {
  4466. //防止拖动图标即打开了桌面应用
  4467. U.MD.D.click(this, obj);
  4468. }, [_x010608TeacherDeskIconInfo[i]])
  4469. }, _frag); //
  4470. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4471. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4472. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4473. }
  4474. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4475. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4476. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4477. continue
  4478. }
  4479. _content = $$("div", {
  4480. className: "U_MD_D_KO",
  4481. "onmousedown": U.UF.C.closure(function (obj) {
  4482. //防止拖动图标即打开了桌面应用
  4483. U.MD.D.click(this, obj);
  4484. }, [_x010611TeacherDeskIconInfo[i]]),
  4485. "onclick": U.UF.C.closure(function (obj) {
  4486. //防止拖动图标即打开了桌面应用
  4487. U.MD.D.click(this, obj);
  4488. }, [_x010611TeacherDeskIconInfo[i]])
  4489. }, _frag); //
  4490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4493. }
  4494. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  4495. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  4496. if(_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4497. continue
  4498. }
  4499. _content = $$("div", {
  4500. className: "U_MD_D_KO",
  4501. "onmousedown": U.UF.C.closure(function (obj) {
  4502. //防止拖动图标即打开了桌面应用
  4503. U.MD.D.click(this, obj);
  4504. }, [_x010612TeacherDeskIconInfo[i]]),
  4505. "onclick": U.UF.C.closure(function (obj) {
  4506. //防止拖动图标即打开了桌面应用
  4507. U.MD.D.click(this, obj);
  4508. }, [_x010612TeacherDeskIconInfo[i]])
  4509. }, _frag); //
  4510. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4511. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  4512. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  4513. }
  4514. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4515. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4516. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4517. continue
  4518. }
  4519. _content = $$("div", {
  4520. className: "U_MD_D_KO",
  4521. "onmousedown": U.UF.C.closure(function (obj) {
  4522. //防止拖动图标即打开了桌面应用
  4523. U.MD.D.click(this, obj);
  4524. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4525. "onclick": U.UF.C.closure(function (obj) {
  4526. //防止拖动图标即打开了桌面应用
  4527. U.MD.D.click(this, obj);
  4528. }, [_tianyuanTeacherDeskIconInfo[i]])
  4529. }, _frag); //
  4530. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4531. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4532. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4533. }
  4534. } else {
  4535. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4536. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4537. continue
  4538. }
  4539. _content = $$("div", {
  4540. className: "U_MD_D_KO",
  4541. "onmousedown": U.UF.C.closure(function (obj) {
  4542. //防止拖动图标即打开了桌面应用
  4543. U.MD.D.click(this, obj);
  4544. }, [_teacherDesktopIconInfo[i]]),
  4545. "onclick": U.UF.C.closure(function (obj) {
  4546. //防止拖动图标即打开了桌面应用
  4547. U.MD.D.click(this, obj);
  4548. }, [_teacherDesktopIconInfo[i]])
  4549. }, _frag); //
  4550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4553. }
  4554. }
  4555. } else {
  4556. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4557. _content = $$("div", {
  4558. className: "U_MD_D_KO",
  4559. style: { 'width': '124px', 'height': '145px' },
  4560. "onmousedown": U.UF.C.closure(function (obj) {
  4561. //防止拖动图标即打开了桌面应用
  4562. U.MD.D.click(this, obj);
  4563. }, [_easyDesktopIconInfo[i]]),
  4564. "onclick": U.UF.C.closure(function (obj) {
  4565. //防止拖动图标即打开了桌面应用
  4566. U.MD.D.click(this, obj);
  4567. }, [_easyDesktopIconInfo[i]])
  4568. }, _frag); //
  4569. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4570. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4571. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4572. }
  4573. }
  4574. if (type == 1) {
  4575. //加载好后给图标定位
  4576. U.MD.D.iconPostion($(_frag).Child());
  4577. } else {
  4578. //加载好后给图标定位
  4579. U.MD.D.iconPostion2($(_frag).Child());
  4580. }
  4581. //把图标加载到页面
  4582. el.appendChild(_frag);
  4583. }
  4584. /**
  4585. * 显示任务栏
  4586. *
  4587. * @param {element} 桌面元素
  4588. */
  4589. U.MD.D.I.displayTaskbar = function (el) {
  4590. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4591. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4592. //任务栏位置变化
  4593. U.selectEl(el).css({ "bottom": "0px" });
  4594. //桌面位置变话
  4595. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4596. }
  4597. }
  4598. //#region 桌面图标拖动逻辑
  4599. /**
  4600. * 桌面排列图标
  4601. *
  4602. * @param {element} 桌面元素
  4603. * @param {object} 上下相距的距离
  4604. * @param {object} 左右相距的距离
  4605. * @return {object} 命名空间
  4606. */
  4607. U.MD.D.iconPostion = function (childs, top, left) {
  4608. var i; //用于循环处理
  4609. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4610. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4611. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4612. for (i = 0; i < childs.length; i++) {
  4613. //如果竖排top超过了范围处理
  4614. if (top + 95 > US.height - 10) {
  4615. //left超过了页面范围处理,则向上重叠打印处理
  4616. if ((left + 180) > US.width) {
  4617. top -= 110;
  4618. left -= 90;
  4619. }
  4620. //没有超过范围,那么left+90添加到下一个竖排打印
  4621. else {
  4622. left += 90;
  4623. top = 15;
  4624. };
  4625. }
  4626. //给图标的位置赋值
  4627. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4628. if (i < childs.length - 1) {
  4629. //页面图标每次向下加95
  4630. top += 95;
  4631. }
  4632. }
  4633. //返回最后调用的图标的位置
  4634. return [top, left];
  4635. }
  4636. /**
  4637. * 桌面排列图标
  4638. *
  4639. * @param {element} 桌面元素
  4640. * @param {object} 上下相距的距离
  4641. * @param {object} 左右相距的距离
  4642. * @return {object} 命名空间
  4643. */
  4644. U.MD.D.iconPostion2 = function (childs, top, left) {
  4645. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4646. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4647. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4648. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4649. for (i = 0; i < childs.length; i++) {
  4650. //如果竖排top超过了范围处理
  4651. if (left + 150 > US.width - 10) {
  4652. //left超过了页面范围处理,则向上重叠打印处理
  4653. if ((top + 180) > US.Height) {
  4654. top -= 150;
  4655. left -= 150;
  4656. }
  4657. //没有超过范围,那么left+90添加到下一个竖排打印
  4658. else {
  4659. top += 150;
  4660. left = ol;
  4661. };
  4662. }
  4663. //给图标的位置赋值
  4664. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4665. if (i < childs.length - 1) {
  4666. //页面图标每次向下加95
  4667. left += 150;
  4668. }
  4669. }
  4670. //返回最后调用的图标的位置
  4671. return [top, left];
  4672. }
  4673. /**
  4674. * 桌面点击事件逻辑
  4675. *
  4676. * @param {element} 桌面元素
  4677. * @param {object} 上下相距的距离
  4678. * @param {object} 左右相距的距离
  4679. * @return {object} 命名空间
  4680. */
  4681. U.MD.D.click = function (el, obj) {
  4682. var _buttonnumber = event.button; //点击的按钮的事件值
  4683. var _userinfo = US.userInfo;
  4684. U.UF.EV.stopBubble(); //阻止向上冒泡
  4685. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4686. if (_buttonnumber < 2) {
  4687. //如果是click事件的处理
  4688. if (event.type == "click") {
  4689. //如果元素在mousemove事件中没有移动则出发click事件
  4690. if (!U.MD.D.I.IsDrag) {
  4691. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4692. U.alert("请先登录您的账号!");
  4693. setTimeout(() => {
  4694. U.MD.U.L.login();
  4695. }, 2000);
  4696. } else {
  4697. //打开应用处理
  4698. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4699. }
  4700. }
  4701. }
  4702. //如果是mouse事件的处理
  4703. else {
  4704. if (US.Config.type == '1') {
  4705. //拖动处理,添加拖动和拖动结束事件
  4706. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4707. }
  4708. }
  4709. U.MD.D.I.IsDrag = false;
  4710. }
  4711. }
  4712. /**
  4713. * 拖动的处理
  4714. *
  4715. */
  4716. U.MD.D.iconMove = function () {
  4717. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4718. U.MD.D.I.IsDrag = true;
  4719. }
  4720. /**
  4721. * 拖动结束后,这里是定位处理,以网状的形式定位
  4722. *
  4723. * @param {element} 拖动的元素
  4724. * @return {object} 命名空间
  4725. */
  4726. U.MD.D.iconUp = function (el) {
  4727. var _top = 15,
  4728. _left = 20,
  4729. _margin,
  4730. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4731. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4732. if (_positioninfo["OT"] > 15) {
  4733. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4734. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4735. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4736. }
  4737. if (_positioninfo["OL"] > 20) {
  4738. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4739. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4740. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4741. }
  4742. //while循环判断么一个重叠的元素
  4743. do {
  4744. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4745. _top = _positioninfo[0] + 95; //得到定位后的top
  4746. _left = _positioninfo[1]; //得到定位后的left
  4747. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4748. }
  4749. /**
  4750. * 判断拖动后图标是否重叠
  4751. *
  4752. * @param {element} 拖动的元素
  4753. * @param {element} 桌面所有的元素
  4754. * @param {array} 拖动元素的位置
  4755. ----------[0] 上 top
  4756. ----------[1] 左 left
  4757. * @return {object} 命名空间
  4758. */
  4759. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4760. //循环所有的图标
  4761. for (var i = 0; i < childs.length; i++) {
  4762. //判断有没有和该图标诶子重叠的元素
  4763. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4764. return childs[i]; //如果有返回
  4765. }
  4766. }
  4767. }
  4768. //#endregion
  4769. //#endregion
  4770. //#region 桌面应用
  4771. /**
  4772. * 打开应用
  4773. *
  4774. * @param {string} 类型
  4775. -----------------Disk 网盘系统
  4776. -----------------PDisk 学习系统网盘
  4777. -----------------Poto 图片
  4778. -----------------Video 视频
  4779. -----------------Music 音乐
  4780. -----------------Word word
  4781. -----------------Excel excel
  4782. -----------------Txt 记事本
  4783. -----------------PB 学习系统
  4784. -----------------Blog 朋友圈系统
  4785. -----------------FTP ftp系统
  4786. -----------------Group 好友群
  4787. -----------------SY 首页系统
  4788. -----------------Set 个人设置
  4789. -----------------XSet 系统设置
  4790. -----------------App 我们所有的app
  4791. -----------------BC c.1473.cn 平台
  4792. -----------------CWeb d.1473.cn 变成平台
  4793. -----------------其他的外联系统 我们统一用iframe打开
  4794. * @param {array} 类型
  4795. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4796. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4797. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4798. 如果第一个参数为其他,则无第二个参数
  4799. * @returns {array}
  4800. */
  4801. window.addEventListener('message', function (e) { // 监听 message 事件
  4802. // alert(e.data.type);
  4803. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4804. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4805. //3是展示全部阶段 2学生 1老师 4专家
  4806. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4807. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4808. //3是展示全部阶段 2学生 1老师 4专家
  4809. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4810. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4811. //3是展示全部阶段 2学生 1老师 4专家
  4812. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4813. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4814. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4815. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4816. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4817. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4818. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4819. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4820. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4821. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4822. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4823. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4824. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4825. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4826. //3是展示全部阶段 2学生 1老师 4专家
  4827. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4828. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4829. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4830. U.MD.D.I.selectUser();
  4831. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4832. var _formel = document.getElementById("study");
  4833. U.UF.F.windowZooming(_formel);
  4834. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4835. var _formel = document.getElementById("studyDetail");
  4836. U.UF.F.windowZooming(_formel);
  4837. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4838. var _formel = document.getElementById("studyDetail");
  4839. U.UF.F.windowZooming(_formel);
  4840. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4841. var _formel = document.getElementById("studentStudy");
  4842. U.UF.F.windowZooming(_formel);
  4843. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4844. // var _formel = document.getElementById("study");
  4845. //如果最大化了,那么就把他缩小
  4846. // if (_formel.ismaximize) {
  4847. // return;
  4848. // }
  4849. // U.UF.F.windowZooming(_formel);
  4850. // U.UF.F.topWindow(_formel);
  4851. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4852. // var _formel = document.getElementById("studyDetail");
  4853. //如果最大化了,那么就把他缩小
  4854. // if (_formel.ismaximize) {
  4855. // return;
  4856. // }
  4857. // U.UF.F.windowZooming(_formel);
  4858. // U.UF.F.topWindow(_formel);
  4859. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4860. // var _formel = document.getElementById("studentStudy");
  4861. // if (_formel.ismaximize) {
  4862. // return;
  4863. // }
  4864. // U.UF.F.windowZooming(_formel);
  4865. // U.UF.F.topWindow(_formel);
  4866. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4867. var _formel = document.getElementById("study");
  4868. // if (_formel.ismaximize) {
  4869. // return;
  4870. // }
  4871. // U.UF.F.windowZooming(_formel);
  4872. U.UF.F.topWindow(_formel);
  4873. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4874. var _formel = document.getElementById("studentIndex");
  4875. U.UF.F.windowZooming(_formel);
  4876. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4877. var _formel = document.getElementById("studyDetailS");
  4878. U.UF.F.windowZooming(_formel);
  4879. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4880. var _formel = document.getElementById("studioIndex");
  4881. U.UF.F.windowZooming(_formel);
  4882. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4883. var _formel = document.getElementById("studyDetailStudio");
  4884. U.UF.F.windowZooming(_formel);
  4885. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4886. var _formel = document.getElementById("studyDetailStudio");
  4887. U.UF.F.windowZooming(_formel);
  4888. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4889. var _formel = document.getElementById("studyDetailNT");
  4890. U.UF.F.windowZooming(_formel);
  4891. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4892. var _formel = document.getElementById("studyDetailS");
  4893. U.UF.F.windowZooming(_formel);
  4894. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4895. var _formel = document.getElementById("studyDetailS");
  4896. U.UF.F.topWindow(_formel);
  4897. } else if (e.data.tools && e.data.tools == "1") {
  4898. // U.MD.D.I.openApplication("whiteboard")
  4899. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4900. } else if (e.data.tools && e.data.tools == "2") {
  4901. U.MD.D.I.openApplication("note")
  4902. } else if (e.data.tools && e.data.tools == "3") {
  4903. // U.MD.D.I.openApplication("mind")
  4904. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4905. } else if (e.data.tools && e.data.tools == "4") {
  4906. U.MD.D.I.openApplication("investigation")
  4907. } else if (e.data.tools && e.data.tools == "6") {
  4908. // U.MD.D.I.openApplication("doc")
  4909. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4910. } else if (e.data.tools && e.data.tools == "7") {
  4911. // U.MD.D.I.openApplication("mindNetwork")
  4912. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4913. } else if (e.data.tools && e.data.tools == "8") {
  4914. U.MD.D.I.openApplication("library")
  4915. } else if (e.data.tools && e.data.tools == "17") {
  4916. U.MD.D.I.openApplication("stuLibrary")
  4917. } else if (e.data.tools && e.data.tools == "18") {
  4918. U.MD.D.I.openApplication("train")
  4919. } else if (e.data.tools && e.data.tools == "21") {
  4920. U.MD.D.I.openApplication("program")
  4921. } else if (e.data.tools && e.data.tools == "22") {
  4922. U.MD.D.I.openApplication("AIprogram2")
  4923. } else if (e.data.tools && e.data.tools == "23") {
  4924. U.MD.D.I.openApplication("Pythonprogram")
  4925. } else if (e.data.tools && e.data.tools == "24") {
  4926. U.MD.D.I.openApplication("AIprogram")
  4927. } else if (e.data.tools && e.data.tools == "25") {
  4928. U.MD.D.I.openApplication("sys")
  4929. } else if (e.data.tools && e.data.tools == "26") {
  4930. // U.MD.D.I.openApplication("courseDesign")
  4931. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4932. } else if (e.data.tools && e.data.tools == "31") {
  4933. U.MD.D.I.openApplication("netWorkPanel")
  4934. } else if (e.data.tools && e.data.tools == "32") {
  4935. U.MD.D.I.openApplication("codeEdit")
  4936. } else if (e.data.tools && e.data.tools == "57") {
  4937. U.MD.D.I.openApplication("CocoPi")
  4938. } else if (e.data.tools && e.data.tools == "63") {
  4939. U.MD.D.I.openApplication("Wood")
  4940. } else if (e.data.tools && e.data.tools == "58") {
  4941. U.MD.D.I.openApplication("car")
  4942. } else if (e.data.tools && e.data.tools == "59") {
  4943. U.MD.D.I.openApplication("lineSearch")
  4944. } else if (e.data.tools && e.data.tools == "60") {
  4945. U.MD.D.I.openApplication("deepLearning")
  4946. } else if (e.data.tools && e.data.tools == "61") {
  4947. U.MD.D.I.openApplication("allHistory")
  4948. } else if (e.data.tools && e.data.tools == "28") {
  4949. U.MD.D.I.openApplication("translation")
  4950. } else if (e.data.tools && e.data.tools == "37") {
  4951. U.MD.D.I.openApplication("mohe")
  4952. } else if (e.data.tools && e.data.tools == "38") {
  4953. U.MD.D.I.openApplication("24game")
  4954. } else if (e.data.tools && e.data.tools == "39") {
  4955. U.MD.D.I.openApplication("GeoGebra")
  4956. } else if (e.data.tools && e.data.tools == "43") {
  4957. U.MD.D.I.openApplication("studentEvaluate")
  4958. } else if (e.data.tools && e.data.tools == "44") {
  4959. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4960. } else if (e.data.tools && e.data.tools == "46") {
  4961. U.MD.D.I.openApplication("project")
  4962. } else if (e.data.tools && e.data.tools == "71") {
  4963. U.MD.D.I.openApplication("aigptCourse")
  4964. } else if (e.data.tools && e.data.tools == "72") {
  4965. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  4966. } else if (e.data.tools && e.data.tools == "1s") {
  4967. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4968. } else if (e.data.tools && e.data.tools == "3s") {
  4969. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4970. } else if (e.data.tools && e.data.tools == "6s") {
  4971. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4972. } else if (e.data.tools && e.data.tools == "1studio") {
  4973. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4974. } else if (e.data.tools && e.data.tools == "3studio") {
  4975. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4976. } else if (e.data.tools && e.data.tools == "6studio") {
  4977. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4978. } else if (e.data.tools && e.data.tools == "3y") {
  4979. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4980. } else if (e.data.tools && e.data.tools == "1y") {
  4981. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4982. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4983. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4984. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4985. U.MD.D.I.openApplication("AIAnalyse")
  4986. } else if (e.data.tools && e.data.tools == "1teacher") {
  4987. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4988. } else if (e.data.tools && e.data.tools == "3teacher") {
  4989. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4990. } else if (e.data.tools && e.data.tools == "7teacher") {
  4991. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4992. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4993. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4994. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4995. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4996. } else if (e.data.tools && e.data.tools == "1E") {
  4997. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4998. } else if (e.data.tools && e.data.tools == "3E") {
  4999. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5000. } else if (e.data.tools && e.data.tools == "57y") {
  5001. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5002. } else if (e.data.tools && e.data.tools == "57u") {
  5003. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5004. } else if (e.data.tools && e.data.tools == "57teacher") {
  5005. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5006. } else if (e.data.tools && e.data.tools == "64") {
  5007. U.MD.D.I.openApplication("AIChat")
  5008. } else if (e.data.tools && e.data.tools == "66") {
  5009. U.MD.D.I.openApplication("formulaEdi")
  5010. } else if (e.data.tools && e.data.tools == "67") {
  5011. U.MD.D.I.openApplication("molStr")
  5012. } else if (e.data.tools && e.data.tools == "68") {
  5013. U.MD.D.I.openApplication("timeAxis")
  5014. } else if (e.data.tools && e.data.tools == "openCourse") {
  5015. let _data = {
  5016. typea: e.data.typea || '',
  5017. typeb: e.data.typeb || '',
  5018. typed: e.data.typed || '',
  5019. }
  5020. U.MD.D.I.openInApplication("index", _data)
  5021. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5022. let _data = {
  5023. classid: e.data.classid || '',
  5024. }
  5025. U.MD.D.I.openInApplication("dataClass", _data)
  5026. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5027. let _data = {
  5028. cid: e.data.cid || '',
  5029. gid: e.data.gid || '',
  5030. }
  5031. U.MD.D.I.openInApplication("opencCscl", _data)
  5032. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5033. U.MD.D.I.openApplication("dataBoardTest")
  5034. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5035. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5036. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5037. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5038. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5039. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5040. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5041. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5042. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5043. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5044. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5045. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5046. }else if (e.data.tools && e.data.tools == "loginSz") {
  5047. U.MD.D.I.openInApplication("loginSz")
  5048. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  5049. if($('#classroom_observation_board')[0]){
  5050. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5051. }
  5052. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5053. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  5054. if($('#classroom_observation_ob_comment')[0]){
  5055. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5056. }
  5057. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5058. }else if (e.data.tools && e.data.tools == "logout"){
  5059. U.MD.U.LO.logoutSystem()
  5060. }else if (e.data.tools && e.data.tools == "getLogin"){
  5061. let _iframe = $('#UI_Login')[0];
  5062. if (_iframe) {
  5063. var userInfo = US.userInfo;
  5064. var type = 2
  5065. if(userInfo && userInfo.userid){
  5066. type = 1
  5067. }
  5068. _contentWindow = _iframe.contentWindow;
  5069. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  5070. }
  5071. }
  5072. });
  5073. U.MD.D.I.selectUser = function () {
  5074. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5075. if (res.value[0].length > 0) {
  5076. US.userInfo = res.value[0][0];
  5077. $(".userName")[0].innerHTML = US.userInfo.username;
  5078. }
  5079. }, [], { "type": "GET", "withCredentials": true });
  5080. }
  5081. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5082. var _userinfo = US.userInfo, //登录用户信息
  5083. _userid = US.userInfo.userid, //登录用户id
  5084. _oid = _userinfo.organizeid,
  5085. _type = US.userInfo.type,
  5086. _org = US.userInfo.org,
  5087. _role = US.userInfo.role,
  5088. _classId = US.userInfo.classid;
  5089. if (_type == 4) {
  5090. tType = 4
  5091. }
  5092. switch (str) {
  5093. case "studyDetailNT": //无终端模式
  5094. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5095. setTimeout(() => {
  5096. U.MD.U.L.login();
  5097. }, 2000);
  5098. } else {
  5099. _formdiv = new U.UF.UI.form(
  5100. "课程详情",
  5101. $$("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 }), {
  5102. "id": "studyDetailNT",
  5103. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5104. "onresize": function () { }
  5105. }, {
  5106. closecallback: function () { }
  5107. }, { "style": { "height": "36px" } }).form; //创建窗体
  5108. _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); } }
  5109. break;
  5110. }
  5111. case "studyDetail":
  5112. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5113. setTimeout(() => {
  5114. U.MD.U.L.login();
  5115. }, 2000);
  5116. } else {
  5117. _formdiv = new U.UF.UI.form(
  5118. "课程详情",
  5119. $$("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 }), {
  5120. "id": "studyDetail",
  5121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5127. break;
  5128. }
  5129. case "studyDetailTrain":
  5130. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5131. setTimeout(() => {
  5132. U.MD.U.L.login();
  5133. }, 2000);
  5134. } else {
  5135. _formdiv = new U.UF.UI.form(
  5136. "培训详情",
  5137. $$("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 }), {
  5138. "id": "studyDetailTrain",
  5139. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. _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); } }
  5145. break;
  5146. }
  5147. case "studyDetailS":
  5148. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5149. setTimeout(() => {
  5150. U.MD.U.L.login();
  5151. }, 2000);
  5152. } else {
  5153. _formdiv = new U.UF.UI.form(
  5154. "项目详情",
  5155. $$("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 }), {
  5156. "id": "studyDetailS",
  5157. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5158. "onresize": function () { }
  5159. }, {
  5160. closecallback: function () { }
  5161. }, { "style": { "height": "36px" } }).form; //创建窗体
  5162. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5163. break;
  5164. }
  5165. case "studyDetailStudio":
  5166. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5167. setTimeout(() => {
  5168. U.MD.U.L.login();
  5169. }, 2000);
  5170. } else {
  5171. _formdiv = new U.UF.UI.form(
  5172. "工作详情",
  5173. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  5174. "id": "studyDetailStudio",
  5175. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5176. "onresize": function () { }
  5177. }, {
  5178. closecallback: function () { }
  5179. }, { "style": { "height": "36px" } }).form; //创建窗体
  5180. _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); } }
  5181. break;
  5182. }
  5183. case "studyDetailS5":
  5184. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5185. setTimeout(() => {
  5186. U.MD.U.L.login();
  5187. }, 2000);
  5188. } else {
  5189. _formdiv = new U.UF.UI.form(
  5190. "项目详情",
  5191. $$("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 }), {
  5192. "id": "studyDetailS",
  5193. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5194. "onresize": function () { }
  5195. }, {
  5196. closecallback: function () { }
  5197. }, { "style": { "height": "36px" } }).form; //创建窗体
  5198. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5199. break;
  5200. }
  5201. case "studyDetailGM":
  5202. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5203. setTimeout(() => {
  5204. U.MD.U.L.login();
  5205. }, 2000);
  5206. } else {
  5207. _formdiv = new U.UF.UI.form(
  5208. "课程详情",
  5209. $$("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 }), {
  5210. "id": "studyDetail",
  5211. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5212. "onresize": function () { }
  5213. }, {
  5214. closecallback: function () { }
  5215. }, { "style": { "height": "36px" } }).form; //创建窗体
  5216. _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); } }
  5217. break;
  5218. }
  5219. case "hanUrl":
  5220. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5221. setTimeout(() => {
  5222. U.MD.U.L.login();
  5223. }, 2000);
  5224. } else {
  5225. _formdiv = new U.UF.UI.form(
  5226. "汉字宫",
  5227. $$("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" }), {
  5228. "id": "hanUrl",
  5229. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5230. "onresize": function () { }
  5231. }, {
  5232. closecallback: function () { }
  5233. }, { "style": { "height": "36px" } }).form; //创建窗体
  5234. _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); } }
  5235. break;
  5236. }
  5237. case "index":
  5238. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5239. setTimeout(() => {
  5240. U.MD.U.L.login();
  5241. }, 2000);
  5242. } else {
  5243. _formdiv = new U.UF.UI.form(
  5244. "课程中心",
  5245. $$("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 }), {
  5246. "id": "study",
  5247. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. _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); } }
  5253. break;
  5254. }
  5255. case "dataClass":
  5256. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5257. setTimeout(() => {
  5258. U.MD.U.L.login();
  5259. }, 2000);
  5260. } else {
  5261. _formdiv = new U.UF.UI.form(
  5262. "数据报告",
  5263. $$("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 }), {
  5264. "id": "dataClass",
  5265. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5266. "onresize": function () { }
  5267. }, {
  5268. closecallback: function () { }
  5269. }, { "style": { "height": "36px" } }).form; //创建窗体
  5270. _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); } }
  5271. break;
  5272. }
  5273. case "opencCscl":
  5274. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5275. setTimeout(() => {
  5276. U.MD.U.L.login();
  5277. }, 2000);
  5278. } else {
  5279. _formdiv = new U.UF.UI.form(
  5280. "协同建构",
  5281. $$("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 }), {
  5282. "id": "futureClass",
  5283. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5284. "onresize": function () { }
  5285. }, {
  5286. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5287. }, { "style": { "height": "36px" } }).form; //创建窗体
  5288. _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); } }
  5289. break;
  5290. }
  5291. case "openCourseUpdate":
  5292. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5293. setTimeout(() => {
  5294. U.MD.U.L.login();
  5295. }, 2000);
  5296. } else {
  5297. _formdiv = new U.UF.UI.form(
  5298. "课程管理",
  5299. $$("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 }), {
  5300. "id": "openCourseUpdate",
  5301. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5302. "onresize": function () { }
  5303. }, {
  5304. closecallback: function () { }
  5305. }, { "style": { "height": "36px" } }).form; //创建窗体
  5306. break;
  5307. }
  5308. case "openNewCourseUpdate":
  5309. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5310. setTimeout(() => {
  5311. U.MD.U.L.login();
  5312. }, 2000);
  5313. } else {
  5314. _formdiv = new U.UF.UI.form(
  5315. "课程管理",
  5316. $$("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 }), {
  5317. "id": "openCourseUpdate",
  5318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5319. "onresize": function () { }
  5320. }, {
  5321. closecallback: function () { }
  5322. }, { "style": { "height": "36px" } }).form; //创建窗体
  5323. break;
  5324. }
  5325. case "openCourseEUpdate":
  5326. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5327. setTimeout(() => {
  5328. U.MD.U.L.login();
  5329. }, 2000);
  5330. } else {
  5331. _formdiv = new U.UF.UI.form(
  5332. "课程管理",
  5333. $$("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 }), {
  5334. "id": "openCourseUpdate",
  5335. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5336. "onresize": function () { }
  5337. }, {
  5338. closecallback: function () { }
  5339. }, { "style": { "height": "36px" } }).form; //创建窗体
  5340. break;
  5341. }
  5342. case "openCourseAiUpdate":
  5343. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5344. setTimeout(() => {
  5345. U.MD.U.L.login();
  5346. }, 2000);
  5347. } else {
  5348. _formdiv = new U.UF.UI.form(
  5349. "课程管理",
  5350. $$("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 }), {
  5351. "id": "openCourseUpdate",
  5352. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5353. "onresize": function () { }
  5354. }, {
  5355. closecallback: function () { }
  5356. }, { "style": { "height": "36px" } }).form; //创建窗体
  5357. break;
  5358. }
  5359. case "openCourseAiUpdate2":
  5360. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5361. setTimeout(() => {
  5362. U.MD.U.L.login();
  5363. }, 2000);
  5364. } else {
  5365. _formdiv = new U.UF.UI.form(
  5366. "课程管理",
  5367. $$("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 }), {
  5368. "id": "openCourseUpdate",
  5369. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5370. "onresize": function () { }
  5371. }, {
  5372. closecallback: function () { }
  5373. }, { "style": { "height": "36px" } }).form; //创建窗体
  5374. break;
  5375. }
  5376. case "openCourseNewUpdate":
  5377. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5378. setTimeout(() => {
  5379. U.MD.U.L.login();
  5380. }, 2000);
  5381. } else {
  5382. _formdiv = new U.UF.UI.form(
  5383. "课程管理",
  5384. $$("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 }), {
  5385. "id": "openCourseUpdate",
  5386. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5387. "onresize": function () { }
  5388. }, {
  5389. closecallback: function () { }
  5390. }, { "style": { "height": "36px" } }).form; //创建窗体
  5391. break;
  5392. }
  5393. case "inviteLoginSz":
  5394. _formdiv = new U.UF.UI.form(
  5395. "随机码登录",
  5396. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5397. "id": "loginSz",
  5398. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5399. "onresize": function () { }
  5400. }, {
  5401. closecallback: function () { }
  5402. }, { "style": { "height": "36px" } }).form; //创建窗体
  5403. break;
  5404. case "loginSz":
  5405. _formdiv = new U.UF.UI.form(
  5406. "教师登录",
  5407. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5408. "id": "loginSz",
  5409. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5410. "onresize": function () { }
  5411. }, {
  5412. closecallback: function () { }
  5413. }, { "style": { "height": "36px" } }).form; //创建窗体
  5414. break;
  5415. case "teacher":
  5416. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5417. setTimeout(() => {
  5418. U.MD.U.L.login();
  5419. }, 2000);
  5420. } else {
  5421. _formdiv = new U.UF.UI.form(
  5422. "教师管理",
  5423. $$("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 }), {
  5424. "id": "teacher",
  5425. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5426. "onresize": function () { }
  5427. }, {
  5428. closecallback: function () { }
  5429. }, { "style": { "height": "36px" } }).form; //创建窗体
  5430. break;
  5431. }
  5432. case "dataBoardSZArea":
  5433. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5434. setTimeout(() => {
  5435. U.MD.U.L.login();
  5436. }, 2000);
  5437. } else {
  5438. _formdiv = new U.UF.UI.form(
  5439. "综合数据看板",
  5440. $$("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 }), {
  5441. "id": "dataBoardSZArea",
  5442. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5443. "onresize": function () { }
  5444. }, {
  5445. closecallback: function () { }
  5446. }, { "style": { "height": "36px" } }).form; //创建窗体
  5447. break;
  5448. }
  5449. case "dataBoardSZCity":
  5450. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5451. setTimeout(() => {
  5452. U.MD.U.L.login();
  5453. }, 2000);
  5454. } else {
  5455. _formdiv = new U.UF.UI.form(
  5456. "综合数据看板",
  5457. $$("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 }), {
  5458. "id": "dataBoardSZCity",
  5459. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. break;
  5465. }
  5466. case "classroom_observation_board":
  5467. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5468. setTimeout(() => {
  5469. U.MD.U.L.login();
  5470. }, 2000);
  5471. } else {
  5472. _formdiv = new U.UF.UI.form(
  5473. "课堂观察",
  5474. $$("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 }), {
  5475. "id": "classroom_observation_board",
  5476. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. break;
  5482. }
  5483. case "classroom_observation_ob_comment":
  5484. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5485. setTimeout(() => {
  5486. U.MD.U.L.login();
  5487. }, 2000);
  5488. } else {
  5489. _formdiv = new U.UF.UI.form(
  5490. "课堂审核",
  5491. $$("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 }), {
  5492. "id": "classroom_observation_ob_comment",
  5493. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5494. "onresize": function () { }
  5495. }, {
  5496. closecallback: function () { }
  5497. }, { "style": { "height": "36px" } }).form; //创建窗体
  5498. break;
  5499. }
  5500. case "gptConfig":
  5501. _formdiv = new U.UF.UI.form(
  5502. data.name ? data.name : "应用中心",
  5503. $$("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 }), {
  5504. "id": "gptConfig" + data.id,
  5505. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5506. "onresize": function () { }
  5507. }, {
  5508. closecallback: function () { }
  5509. }, { "style": { "height": "36px" } }).form; //创建窗体
  5510. break;
  5511. }
  5512. }
  5513. U.MD.D.I.openApplication = function (str, obj, info) {
  5514. obj = obj || {};
  5515. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5516. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5517. _userinfo = US.userInfo, //登录用户信息
  5518. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5519. _oid = obj.organizeid || _userinfo.organizeid,
  5520. _type = US.userInfo.type,
  5521. _org = US.userInfo.org,
  5522. _role = US.userInfo.role,
  5523. _classId = US.userInfo.classid,
  5524. _TscreenType = 1
  5525. _screenType = 2,
  5526. _SscreenType = 3;
  5527. let iframeBool = true
  5528. if(U.UF.UI.form.allForm[str]){
  5529. iframeBool = false
  5530. }
  5531. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5532. return;
  5533. }
  5534. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5535. switch (str) {
  5536. case "studnetProject": //好友打开
  5537. _formdiv = new U.UF.UI.form(
  5538. "我的项目",
  5539. $$("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 }), {
  5540. "id": "studnetProject",
  5541. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5542. "onresize": function () { }
  5543. }, {
  5544. closecallback: function () { }
  5545. }, { "style": { "height": "36px" } }).form; //创建窗体
  5546. _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); } }
  5547. break;
  5548. case "studentEvaluate": //好友打开
  5549. _formdiv = new U.UF.UI.form(
  5550. "我的评价",
  5551. $$("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 }), {
  5552. "id": "studentEvaluate",
  5553. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5554. "onresize": function () { }
  5555. }, {
  5556. closecallback: function () { }
  5557. }, { "style": { "height": "36px" } }).form; //创建窗体
  5558. _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); } }
  5559. break;
  5560. case "my":
  5561. _formdiv = new U.UF.UI.form(
  5562. "我的资料",
  5563. $$("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 }), {
  5564. "id": "my",
  5565. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5566. "onresize": function () { }
  5567. }, {
  5568. closecallback: function () { }
  5569. }, { "style": { "height": "36px" } }).form; //创建窗体
  5570. _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); } }
  5571. break;
  5572. case "program":
  5573. _formdiv = new U.UF.UI.form(
  5574. "编程平台",
  5575. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5576. "id": "program",
  5577. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5578. "onresize": function () { }
  5579. }, {
  5580. closecallback: function () { }
  5581. }, { "style": { "height": "36px" } }).form; //创建窗体
  5582. _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); } }
  5583. break;
  5584. case "library":
  5585. _formdiv = new U.UF.UI.form(
  5586. "素材库",
  5587. $$("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 }), {
  5588. "id": "library",
  5589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5590. "onresize": function () { }
  5591. }, {
  5592. closecallback: function () { }
  5593. }, { "style": { "height": "36px" } }).form; //创建窗体
  5594. _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); } }
  5595. break;
  5596. case "whiteboard":
  5597. _formdiv = new U.UF.UI.form(
  5598. "电子白板",
  5599. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5600. "id": "whiteboard",
  5601. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5602. "onresize": function () { }
  5603. }, {
  5604. closecallback: function () { }
  5605. }, { "style": { "height": "36px" } }).form; //创建窗体
  5606. _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); } }
  5607. break;
  5608. case "investigation":
  5609. _formdiv = new U.UF.UI.form(
  5610. "问卷调查",
  5611. $$("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 }), {
  5612. "id": "investigation",
  5613. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5614. "onresize": function () { }
  5615. }, {
  5616. closecallback: function () { }
  5617. }, { "style": { "height": "36px" } }).form; //创建窗体
  5618. _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); } }
  5619. break;
  5620. case "note":
  5621. _formdiv = new U.UF.UI.form(
  5622. "便签分类",
  5623. $$("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 }), {
  5624. "id": "note",
  5625. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5626. "onresize": function () { }
  5627. }, {
  5628. closecallback: function () { }
  5629. }, { "style": { "height": "36px" } }).form; //创建窗体
  5630. _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); } }
  5631. break;
  5632. // case "score":
  5633. // _formdiv = new U.UF.UI.form(
  5634. // "量规评分",
  5635. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5636. // "id": "score",
  5637. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5638. // "onresize": function() {}
  5639. // }, {
  5640. // closecallback: function() {}
  5641. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5642. // _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); } }
  5643. // break;
  5644. case "mind":
  5645. _formdiv = new U.UF.UI.form(
  5646. "思维导图",
  5647. $$("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"
  5648. "id": "mind",
  5649. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5650. "onresize": function () { }
  5651. }, {
  5652. closecallback: function () { }
  5653. }, { "style": { "height": "36px" } }).form; //创建窗体
  5654. _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); } }
  5655. break;
  5656. case "doc":
  5657. // U.MD.D.I.isRoom();
  5658. _formdiv = new U.UF.UI.form(
  5659. "协同文档",
  5660. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5661. "id": "doc",
  5662. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5668. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5669. // })
  5670. _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); } }
  5671. break;
  5672. case "studentStudy":
  5673. _formdiv = new U.UF.UI.form(
  5674. "课程中心",
  5675. $$("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
  5676. "id": "studentStudy",
  5677. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5678. "onresize": function () { }
  5679. }, {
  5680. closecallback: function () { }
  5681. }, { "style": { "height": "36px" } }).form; //创建窗体
  5682. _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); } }
  5683. break;
  5684. case "train": //好友打开
  5685. _formdiv = new U.UF.UI.form(
  5686. "训练平台",
  5687. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5688. "id": "train",
  5689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5690. "onresize": function () { }
  5691. }, {
  5692. closecallback: function () { }
  5693. }, { "style": { "height": "36px" } }).form; //创建窗体
  5694. _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); } }
  5695. break;
  5696. case "mindNetwork": //好友打开
  5697. _formdiv = new U.UF.UI.form(
  5698. "思维网格",
  5699. $$("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 }), {
  5700. "id": "mindNetwork",
  5701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5702. "onresize": function () { }
  5703. }, {
  5704. closecallback: function () { }
  5705. }, { "style": { "height": "36px" } }).form; //创建窗体
  5706. _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); } }
  5707. break;
  5708. case "studentClassRoom": //好友打开
  5709. _formdiv = new U.UF.UI.form(
  5710. "实时课堂",
  5711. $$("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 }), {
  5712. "id": "studentClassRoom",
  5713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5714. "onresize": function () { }
  5715. }, {
  5716. closecallback: function () { }
  5717. }, { "style": { "height": "36px" } }).form; //创建窗体
  5718. _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); } }
  5719. setTimeout(() => {
  5720. U.UF.F.windowZooming(_formdiv)
  5721. }, 0);
  5722. break;
  5723. }
  5724. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5725. switch (str) {
  5726. case "studnetProject": //好友打开
  5727. _formdiv = new U.UF.UI.form(
  5728. "我的项目",
  5729. $$("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 }), {
  5730. "id": "studnetProject",
  5731. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _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); } }
  5737. break;
  5738. case "studentEvaluate": //好友打开
  5739. _formdiv = new U.UF.UI.form(
  5740. "我的评价",
  5741. $$("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 }), {
  5742. "id": "studentEvaluate",
  5743. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5744. "onresize": function () { }
  5745. }, {
  5746. closecallback: function () { }
  5747. }, { "style": { "height": "36px" } }).form; //创建窗体
  5748. _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); } }
  5749. break;
  5750. case "my":
  5751. _formdiv = new U.UF.UI.form(
  5752. "我的资料",
  5753. $$("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 }), {
  5754. "id": "my",
  5755. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5756. "onresize": function () { }
  5757. }, {
  5758. closecallback: function () { }
  5759. }, { "style": { "height": "36px" } }).form; //创建窗体
  5760. _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); } }
  5761. break;
  5762. case "program":
  5763. _formdiv = new U.UF.UI.form(
  5764. "编程平台",
  5765. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5766. "id": "program",
  5767. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5768. "onresize": function () { }
  5769. }, {
  5770. closecallback: function () { }
  5771. }, { "style": { "height": "36px" } }).form; //创建窗体
  5772. _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); } }
  5773. break;
  5774. case "library":
  5775. _formdiv = new U.UF.UI.form(
  5776. "素材库",
  5777. $$("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 }), {
  5778. "id": "library",
  5779. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5780. "onresize": function () { }
  5781. }, {
  5782. closecallback: function () { }
  5783. }, { "style": { "height": "36px" } }).form; //创建窗体
  5784. _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); } }
  5785. break;
  5786. case "whiteboard":
  5787. _formdiv = new U.UF.UI.form(
  5788. "电子白板",
  5789. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5790. "id": "whiteboard",
  5791. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5792. "onresize": function () { }
  5793. }, {
  5794. closecallback: function () { }
  5795. }, { "style": { "height": "36px" } }).form; //创建窗体
  5796. _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); } }
  5797. break;
  5798. case "investigation":
  5799. _formdiv = new U.UF.UI.form(
  5800. "问卷调查",
  5801. $$("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 }), {
  5802. "id": "investigation",
  5803. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5804. "onresize": function () { }
  5805. }, {
  5806. closecallback: function () { }
  5807. }, { "style": { "height": "36px" } }).form; //创建窗体
  5808. _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); } }
  5809. break;
  5810. case "note":
  5811. _formdiv = new U.UF.UI.form(
  5812. "便签分类",
  5813. $$("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 }), {
  5814. "id": "note",
  5815. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5816. "onresize": function () { }
  5817. }, {
  5818. closecallback: function () { }
  5819. }, { "style": { "height": "36px" } }).form; //创建窗体
  5820. _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); } }
  5821. break;
  5822. // case "score":
  5823. // _formdiv = new U.UF.UI.form(
  5824. // "量规评分",
  5825. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5826. // "id": "score",
  5827. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5828. // "onresize": function() {}
  5829. // }, {
  5830. // closecallback: function() {}
  5831. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5832. // _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); } }
  5833. // break;
  5834. case "mind":
  5835. _formdiv = new U.UF.UI.form(
  5836. "思维导图",
  5837. $$("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"
  5838. "id": "mind",
  5839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5840. "onresize": function () { }
  5841. }, {
  5842. closecallback: function () { }
  5843. }, { "style": { "height": "36px" } }).form; //创建窗体
  5844. _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); } }
  5845. break;
  5846. case "doc":
  5847. // U.MD.D.I.isRoom();
  5848. _formdiv = new U.UF.UI.form(
  5849. "协同文档",
  5850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5851. "id": "doc",
  5852. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5853. "onresize": function () { }
  5854. }, {
  5855. closecallback: function () { }
  5856. }, { "style": { "height": "36px" } }).form; //创建窗体
  5857. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5858. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5859. })
  5860. _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); } }
  5861. break;
  5862. case "train": //好友打开
  5863. _formdiv = new U.UF.UI.form(
  5864. "训练平台",
  5865. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5866. "id": "train",
  5867. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5868. "onresize": function () { }
  5869. }, {
  5870. closecallback: function () { }
  5871. }, { "style": { "height": "36px" } }).form; //创建窗体
  5872. _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); } }
  5873. break;
  5874. case "studentStudy":
  5875. _formdiv = new U.UF.UI.form(
  5876. "课程中心",
  5877. $$("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
  5878. "id": "studentStudy",
  5879. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5880. "onresize": function () { }
  5881. }, {
  5882. closecallback: function () { }
  5883. }, { "style": { "height": "36px" } }).form; //创建窗体
  5884. _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); } }
  5885. break;
  5886. case "mindNetwork": //好友打开
  5887. _formdiv = new U.UF.UI.form(
  5888. "思维网格",
  5889. $$("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 }), {
  5890. "id": "mindNetwork",
  5891. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5892. "onresize": function () { }
  5893. }, {
  5894. closecallback: function () { }
  5895. }, { "style": { "height": "36px" } }).form; //创建窗体
  5896. _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); } }
  5897. break;
  5898. case "studentClassRoom": //好友打开
  5899. _formdiv = new U.UF.UI.form(
  5900. "实时课堂",
  5901. $$("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 }), {
  5902. "id": "studentClassRoom",
  5903. "style": { "width": "90%", "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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5909. setTimeout(() => {
  5910. U.UF.F.windowZooming(_formdiv)
  5911. }, 0);
  5912. break;
  5913. }
  5914. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5915. //选择应用处理
  5916. switch (str) {
  5917. case "project": //好友打开
  5918. _formdiv = new U.UF.UI.form(
  5919. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5920. $$("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 }), {
  5921. "id": "project",
  5922. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5923. "onresize": function () { }
  5924. }, {
  5925. closecallback: function () { }
  5926. }, { "style": { "height": "36px" } }).form; //创建窗体
  5927. _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); } }
  5928. break;
  5929. case "student":
  5930. _formdiv = new U.UF.UI.form(
  5931. "学生管理",
  5932. $$("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 }), {
  5933. "id": "student",
  5934. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5935. "onresize": function () { }
  5936. }, {
  5937. closecallback: function () { }
  5938. }, { "style": { "height": "36px" } }).form; //创建窗体
  5939. _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); } }
  5940. break;
  5941. case "evaluate":
  5942. _formdiv = new U.UF.UI.form(
  5943. "学生评价",
  5944. $$("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 }), {
  5945. "id": "evaluate",
  5946. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5947. "onresize": function () { }
  5948. }, {
  5949. closecallback: function () { }
  5950. }, { "style": { "height": "36px" } }).form; //创建窗体
  5951. _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); } }
  5952. break;
  5953. case "sys":
  5954. _formdiv = new U.UF.UI.form(
  5955. "目标管理",
  5956. $$("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 }), {
  5957. "id": "sys",
  5958. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5959. "onresize": function () { }
  5960. }, {
  5961. closecallback: function () { }
  5962. }, { "style": { "height": "36px" } }).form; //创建窗体
  5963. _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); } }
  5964. break;
  5965. case "courseDesign":
  5966. _formdiv = new U.UF.UI.form(
  5967. "项目设计",
  5968. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5969. "id": "courseDesign",
  5970. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5971. "onresize": function () { }
  5972. }, {
  5973. closecallback: function () { }
  5974. }, { "style": { "height": "36px" } }).form; //创建窗体
  5975. _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); } }
  5976. break;
  5977. case "program":
  5978. _formdiv = new U.UF.UI.form(
  5979. "编程平台",
  5980. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5981. "id": "program",
  5982. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5983. "onresize": function () { }
  5984. }, {
  5985. closecallback: function () { }
  5986. }, { "style": { "height": "36px" } }).form; //创建窗体
  5987. _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); } }
  5988. break;
  5989. case "class":
  5990. _formdiv = new U.UF.UI.form(
  5991. "班级管理",
  5992. $$("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 }), {
  5993. "id": "class",
  5994. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5995. "onresize": function () { }
  5996. }, {
  5997. closecallback: function () { }
  5998. }, { "style": { "height": "36px" } }).form; //创建窗体
  5999. _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); } }
  6000. break;
  6001. case "Grade":
  6002. _formdiv = new U.UF.UI.form(
  6003. "年级管理",
  6004. $$("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 }), {
  6005. "id": "Grade",
  6006. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6007. "onresize": function () { }
  6008. }, {
  6009. closecallback: function () { }
  6010. }, { "style": { "height": "36px" } }).form; //创建窗体
  6011. _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); } }
  6012. break;
  6013. case "teacherOffice":
  6014. _formdiv = new U.UF.UI.form(
  6015. "教研室",
  6016. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacherOffice?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6017. "id": "teacherOffice",
  6018. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacherOffice.png)" }, "name": "教研室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6024. break;
  6025. case "my":
  6026. _formdiv = new U.UF.UI.form(
  6027. "我的资料",
  6028. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6029. "id": "my",
  6030. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6031. "onresize": function () { }
  6032. }, {
  6033. closecallback: function () { }
  6034. }, { "style": { "height": "36px" } }).form; //创建窗体
  6035. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6036. break;
  6037. case "notice":
  6038. _formdiv = new U.UF.UI.form(
  6039. "通知公告",
  6040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  6041. "id": "notice",
  6042. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6043. "onresize": function () { }
  6044. }, {
  6045. closecallback: function () { }
  6046. }, { "style": { "height": "36px" } }).form; //创建窗体
  6047. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6048. break;
  6049. case "library":
  6050. _formdiv = new U.UF.UI.form(
  6051. "素材库",
  6052. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  6053. "id": "library",
  6054. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6055. "onresize": function () { }
  6056. }, {
  6057. closecallback: function () { }
  6058. }, { "style": { "height": "36px" } }).form; //创建窗体
  6059. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6060. break;
  6061. case "whiteboard":
  6062. _formdiv = new U.UF.UI.form(
  6063. "电子白板",
  6064. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6065. "id": "whiteboard",
  6066. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6067. "onresize": function () { }
  6068. }, {
  6069. closecallback: function () { }
  6070. }, { "style": { "height": "36px" } }).form; //创建窗体
  6071. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6072. break;
  6073. case "investigation":
  6074. _formdiv = new U.UF.UI.form(
  6075. "问卷调查",
  6076. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  6077. "id": "investigation",
  6078. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6079. "onresize": function () { }
  6080. }, {
  6081. closecallback: function () { }
  6082. }, { "style": { "height": "36px" } }).form; //创建窗体
  6083. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6084. break;
  6085. case "note":
  6086. _formdiv = new U.UF.UI.form(
  6087. "便签分类",
  6088. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  6089. "id": "note",
  6090. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6091. "onresize": function () { }
  6092. }, {
  6093. closecallback: function () { }
  6094. }, { "style": { "height": "36px" } }).form; //创建窗体
  6095. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6096. break;
  6097. // case "score":
  6098. // _formdiv = new U.UF.UI.form(
  6099. // "量规评分",
  6100. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6101. // "id": "score",
  6102. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6103. // "onresize": function() {}
  6104. // }, {
  6105. // closecallback: function() {}
  6106. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6107. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6108. // break;
  6109. case "mind":
  6110. _formdiv = new U.UF.UI.form(
  6111. "思维导图",
  6112. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6113. "id": "mind",
  6114. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6115. "onresize": function () { }
  6116. }, {
  6117. closecallback: function () { }
  6118. }, { "style": { "height": "36px" } }).form; //创建窗体
  6119. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6120. break;
  6121. case "doc":
  6122. // U.MD.D.I.isRoom();
  6123. _formdiv = new U.UF.UI.form(
  6124. "协同文档",
  6125. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6126. "id": "doc",
  6127. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6128. "onresize": function () { }
  6129. }, {
  6130. closecallback: function () { }
  6131. }, { "style": { "height": "36px" } }).form; //创建窗体
  6132. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6133. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6134. })
  6135. _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); } }
  6136. break;
  6137. case "study":
  6138. _formdiv = new U.UF.UI.form(
  6139. "课程中心",
  6140. $$("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
  6141. "id": "study",
  6142. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6143. "onresize": function () { }
  6144. }, {
  6145. closecallback: function () { }
  6146. }, { "style": { "height": "36px" } }).form; //创建窗体
  6147. _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); } }
  6148. break;
  6149. case "mindNetwork": //好友打开
  6150. _formdiv = new U.UF.UI.form(
  6151. "思维网格",
  6152. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid + "&org=" + _org }), {
  6153. "id": "mindNetwork",
  6154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6155. "onresize": function () { }
  6156. }, {
  6157. closecallback: function () { }
  6158. }, { "style": { "height": "36px" } }).form; //创建窗体
  6159. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6160. break;
  6161. case "train": //好友打开
  6162. _formdiv = new U.UF.UI.form(
  6163. "训练平台",
  6164. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6165. "id": "mindNetwork",
  6166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6167. "onresize": function () { }
  6168. }, {
  6169. closecallback: function () { }
  6170. }, { "style": { "height": "36px" } }).form; //创建窗体
  6171. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6172. break;
  6173. case "teacherClassRoom": //好友打开
  6174. _formdiv = new U.UF.UI.form(
  6175. "实时课堂",
  6176. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classRoom?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6177. "id": "teacherClassRoom",
  6178. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6179. "onresize": function () { }
  6180. }, {
  6181. closecallback: function () { }
  6182. }, { "style": { "height": "36px" } }).form; //创建窗体
  6183. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6184. setTimeout(() => {
  6185. U.UF.F.windowZooming(_formdiv)
  6186. }, 0);
  6187. break;
  6188. }
  6189. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6190. switch (str) {
  6191. case "project": //好友打开
  6192. _formdiv = new U.UF.UI.form(
  6193. "课程管理",
  6194. $$("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 }), {
  6195. "id": "project",
  6196. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6197. "onresize": function () { }
  6198. }, {
  6199. closecallback: function () { }
  6200. }, { "style": { "height": "36px" } }).form; //创建窗体
  6201. _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); } }
  6202. break;
  6203. case "evaluate":
  6204. _formdiv = new U.UF.UI.form(
  6205. "学生评价",
  6206. $$("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 }), {
  6207. "id": "evaluate",
  6208. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6209. "onresize": function () { }
  6210. }, {
  6211. closecallback: function () { }
  6212. }, { "style": { "height": "36px" } }).form; //创建窗体
  6213. _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); } }
  6214. break;
  6215. case "notice":
  6216. _formdiv = new U.UF.UI.form(
  6217. "通知公告",
  6218. $$("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 }), {
  6219. "id": "notice",
  6220. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6221. "onresize": function () { }
  6222. }, {
  6223. closecallback: function () { }
  6224. }, { "style": { "height": "36px" } }).form; //创建窗体
  6225. _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); } }
  6226. break;
  6227. case "stuLibrary":
  6228. _formdiv = new U.UF.UI.form(
  6229. "学习资料",
  6230. $$("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 }), {
  6231. "id": "stuLibrary",
  6232. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6233. "onresize": function () { }
  6234. }, {
  6235. closecallback: function () { }
  6236. }, { "style": { "height": "36px" } }).form; //创建窗体
  6237. _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); } }
  6238. break;
  6239. case "program":
  6240. _formdiv = new U.UF.UI.form(
  6241. "编程平台",
  6242. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6243. "id": "program",
  6244. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6245. "onresize": function () { }
  6246. }, {
  6247. closecallback: function () { }
  6248. }, { "style": { "height": "36px" } }).form; //创建窗体
  6249. _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); } }
  6250. break;
  6251. case "whiteboard":
  6252. _formdiv = new U.UF.UI.form(
  6253. "电子白板",
  6254. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6255. "id": "whiteboard",
  6256. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6257. "onresize": function () { }
  6258. }, {
  6259. closecallback: function () { }
  6260. }, { "style": { "height": "36px" } }).form; //创建窗体
  6261. _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); } }
  6262. break;
  6263. case "investigation":
  6264. _formdiv = new U.UF.UI.form(
  6265. "问卷调查",
  6266. $$("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 }), {
  6267. "id": "investigation",
  6268. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6269. "onresize": function () { }
  6270. }, {
  6271. closecallback: function () { }
  6272. }, { "style": { "height": "36px" } }).form; //创建窗体
  6273. _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); } }
  6274. break;
  6275. case "mind":
  6276. _formdiv = new U.UF.UI.form(
  6277. "思维导图",
  6278. $$("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"
  6279. "id": "mind",
  6280. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6281. "onresize": function () { }
  6282. }, {
  6283. closecallback: function () { }
  6284. }, { "style": { "height": "36px" } }).form; //创建窗体
  6285. _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); } }
  6286. break;
  6287. case "doc":
  6288. // U.MD.D.I.isRoom();
  6289. _formdiv = new U.UF.UI.form(
  6290. "协同文档",
  6291. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6292. "id": "doc",
  6293. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6294. "onresize": function () { }
  6295. }, {
  6296. closecallback: function () { }
  6297. }, { "style": { "height": "36px" } }).form; //创建窗体
  6298. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6299. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6300. })
  6301. _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); } }
  6302. break;
  6303. case "study":
  6304. _formdiv = new U.UF.UI.form(
  6305. "课程中心",
  6306. $$("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
  6307. "id": "study",
  6308. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6314. break;
  6315. case "mindNetwork": //好友打开
  6316. _formdiv = new U.UF.UI.form(
  6317. "思维网格",
  6318. $$("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 }), {
  6319. "id": "mindNetwork",
  6320. "style": { "width": "90%", "height": "90%", "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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6326. break;
  6327. case "train": //好友打开
  6328. _formdiv = new U.UF.UI.form(
  6329. "训练平台",
  6330. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6331. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6338. break;
  6339. case "sys":
  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": US.Config.bpbl + "/pbl-teacher-table/dist/#/evaluation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6343. "id": "sys",
  6344. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6350. break;
  6351. case "courseDesign":
  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": "/course-design-vue" }), {
  6355. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6362. break;
  6363. }
  6364. } else if (!_type) {
  6365. switch (str) {
  6366. case "my":
  6367. _formdiv = new U.UF.UI.form(
  6368. "我的资料",
  6369. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6370. "id": "my",
  6371. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6372. "onresize": function () { }
  6373. }, {
  6374. closecallback: function () { }
  6375. }, { "style": { "height": "36px" } }).form; //创建窗体
  6376. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6377. break;
  6378. }
  6379. }
  6380. switch (str) {
  6381. // AIprogram2 AI体验 aihub.cocorobo.cn
  6382. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6383. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6384. case "formulaEdi": //公式编辑
  6385. _formdiv = new U.UF.UI.form(
  6386. "公式编辑",
  6387. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6388. "id": "formulaEdi",
  6389. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6390. "onresize": function () { }
  6391. }, {
  6392. closecallback: function () { }
  6393. }, { "style": { "height": "36px" } }).form; //创建窗体
  6394. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/formulaEdi.png)" }, "name": "公式编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6395. break;
  6396. case "molStr": //分子结构
  6397. _formdiv = new U.UF.UI.form(
  6398. "分子结构",
  6399. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6400. "id": "molStr",
  6401. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6402. "onresize": function () { }
  6403. }, {
  6404. closecallback: function () { }
  6405. }, { "style": { "height": "36px" } }).form; //创建窗体
  6406. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/molStr.png)" }, "name": "分子结构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6407. break;
  6408. case "timeAxis": //时间轴
  6409. _formdiv = new U.UF.UI.form(
  6410. "时间轴",
  6411. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6412. "id": "timeAxis",
  6413. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6414. "onresize": function () { }
  6415. }, {
  6416. closecallback: function () { }
  6417. }, { "style": { "height": "36px" } }).form; //创建窗体
  6418. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/timeAxis.png)" }, "name": "时间轴", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6419. break;
  6420. case "AIprogram2": //AI体验
  6421. _formdiv = new U.UF.UI.form(
  6422. "AI体验",
  6423. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6424. "id": "AIprogram2",
  6425. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6426. "onresize": function () { }
  6427. }, {
  6428. closecallback: function () { }
  6429. }, { "style": { "height": "36px" } }).form; //创建窗体
  6430. _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); } }
  6431. break;
  6432. case "Pythonprogram": //python编程
  6433. _formdiv = new U.UF.UI.form(
  6434. "Python编程",
  6435. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6436. "id": "Pythonprogram",
  6437. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6438. "onresize": function () { }
  6439. }, {
  6440. closecallback: function () { }
  6441. }, { "style": { "height": "36px" } }).form; //创建窗体
  6442. _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); } }
  6443. break;
  6444. case "AIprogram": //ai编程
  6445. _formdiv = new U.UF.UI.form(
  6446. "AI编程平台",
  6447. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6448. "id": "AIprogram",
  6449. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6450. "onresize": function () { }
  6451. }, {
  6452. closecallback: function () { }
  6453. }, { "style": { "height": "36px" } }).form; //创建窗体
  6454. _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); } }
  6455. break;
  6456. case "CocoPi": //CocoPi
  6457. _formdiv = new U.UF.UI.form(
  6458. "CocoPi",
  6459. $$("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" }), {
  6460. "id": "CocoPi",
  6461. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6462. "onresize": function () { }
  6463. }, {
  6464. closecallback: function () { }
  6465. }, { "style": { "height": "36px" } }).form; //创建窗体
  6466. _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); } }
  6467. break;
  6468. case "Wood": //Wood
  6469. _formdiv = new U.UF.UI.form(
  6470. "海龟编程",
  6471. $$("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/" }), {
  6472. "id": "Wood",
  6473. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6474. "onresize": function () { }
  6475. }, {
  6476. closecallback: function () { }
  6477. }, { "style": { "height": "36px" } }).form; //创建窗体
  6478. _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); } }
  6479. break;
  6480. case "car": //模拟驾驶
  6481. _formdiv = new U.UF.UI.form(
  6482. "模拟驾驶",
  6483. $$("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/" }), {
  6484. "id": "car",
  6485. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6486. "onresize": function () { }
  6487. }, {
  6488. closecallback: function () { }
  6489. }, { "style": { "height": "36px" } }).form; //创建窗体
  6490. _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); } }
  6491. break;
  6492. case "lineSearch": //路径搜索
  6493. _formdiv = new U.UF.UI.form(
  6494. "路径搜索",
  6495. $$("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/" }), {
  6496. "id": "lineSearch",
  6497. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6498. "onresize": function () { }
  6499. }, {
  6500. closecallback: function () { }
  6501. }, { "style": { "height": "36px" } }).form; //创建窗体
  6502. _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); } }
  6503. break;
  6504. case "deepLearning": //深度学习
  6505. _formdiv = new U.UF.UI.form(
  6506. "深度学习",
  6507. $$("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/#" }), {
  6508. "id": "deepLearning",
  6509. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6510. "onresize": function () { }
  6511. }, {
  6512. closecallback: function () { }
  6513. }, { "style": { "height": "36px" } }).form; //创建窗体
  6514. _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); } }
  6515. break;
  6516. case "allHistory": //深度学习
  6517. _formdiv = new U.UF.UI.form(
  6518. "全历史",
  6519. $$("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/" }), {
  6520. "id": "allHistory",
  6521. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6522. "onresize": function () { }
  6523. }, {
  6524. closecallback: function () { }
  6525. }, { "style": { "height": "36px" } }).form; //创建窗体
  6526. _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); } }
  6527. break;
  6528. case "chatPDF": //ai编程
  6529. _formdiv = new U.UF.UI.form(
  6530. "chatPDF",
  6531. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6532. "id": "chatPDF",
  6533. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6534. "onresize": function () { }
  6535. }, {
  6536. closecallback: function () { }
  6537. }, { "style": { "height": "36px" } }).form; //创建窗体
  6538. _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); } }
  6539. break;
  6540. case "resources": //国家教育
  6541. _formdiv = new U.UF.UI.form(
  6542. "国家教育",
  6543. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6544. "id": "resources",
  6545. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6546. "onresize": function () { }
  6547. }, {
  6548. closecallback: function () { }
  6549. }, { "style": { "height": "36px" } }).form; //创建窗体
  6550. _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); } }
  6551. break;
  6552. case "codeEdit": //源码编辑
  6553. _formdiv = new U.UF.UI.form(
  6554. "源码编辑",
  6555. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6556. "id": "codeEdit",
  6557. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6558. "onresize": function () { }
  6559. }, {
  6560. closecallback: function () { }
  6561. }, { "style": { "height": "36px" } }).form; //创建窗体
  6562. _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); } }
  6563. break; //
  6564. case "MindMap": //MindMap
  6565. _formdiv = new U.UF.UI.form(
  6566. "MindMap",
  6567. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6568. "id": "MindMap",
  6569. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6570. "onresize": function () { }
  6571. }, {
  6572. closecallback: function () { }
  6573. }, { "style": { "height": "36px" } }).form; //创建窗体
  6574. _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); } }
  6575. break;
  6576. case "netWorkPanel": //netWorkPanel
  6577. _formdiv = new U.UF.UI.form(
  6578. "netWorkPanel",
  6579. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6580. "id": "netWorkPanel",
  6581. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6582. "onresize": function () { }
  6583. }, {
  6584. closecallback: function () { }
  6585. }, { "style": { "height": "36px" } }).form; //创建窗体
  6586. _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); } }
  6587. break;
  6588. case "GeoGebra": //GeoGebra
  6589. _formdiv = new U.UF.UI.form(
  6590. "GeoGebra",
  6591. $$("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" }), {
  6592. "id": "GeoGebra",
  6593. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6594. "onresize": function () { }
  6595. }, {
  6596. closecallback: function () { }
  6597. }, { "style": { "height": "36px" } }).form; //创建窗体
  6598. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6599. break;
  6600. case "translation": //翻译
  6601. _formdiv = new U.UF.UI.form(
  6602. "翻译",
  6603. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6604. "id": "translation",
  6605. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6606. "onresize": function () { }
  6607. }, {
  6608. closecallback: function () { }
  6609. }, { "style": { "height": "36px" } }).form; //创建窗体
  6610. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6611. break;
  6612. case "mohe": //魔盒
  6613. _formdiv = new U.UF.UI.form(
  6614. "魔盒识字",
  6615. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6616. "id": "mohe",
  6617. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6618. "onresize": function () { }
  6619. }, {
  6620. closecallback: function () { }
  6621. }, { "style": { "height": "36px" } }).form; //创建窗体
  6622. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6623. break;
  6624. case "24game": //24点
  6625. _formdiv = new U.UF.UI.form(
  6626. "24点",
  6627. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6628. "id": "24game",
  6629. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6630. "onresize": function () { }
  6631. }, {
  6632. closecallback: function () { }
  6633. }, { "style": { "height": "36px" } }).form; //创建窗体
  6634. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6635. break;
  6636. case "case":
  6637. _formdiv = new U.UF.UI.form(
  6638. "课程进展",
  6639. $$("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 }), {
  6640. "id": "case",
  6641. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6642. "onresize": function () { }
  6643. }, {
  6644. closecallback: function () { }
  6645. }, { "style": { "height": "36px" } }).form; //创建窗体
  6646. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6647. break;
  6648. case "snf":
  6649. _formdiv = new U.UF.UI.form(
  6650. "赛诺梵",
  6651. $$("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" }), {
  6652. "id": "snf",
  6653. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6654. "onresize": function () { }
  6655. }, {
  6656. closecallback: function () { }
  6657. }, { "style": { "height": "36px" } }).form; //创建窗体
  6658. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6659. break;
  6660. case "hanFamily":
  6661. _formdiv = new U.UF.UI.form(
  6662. "汉字家族",
  6663. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6664. "id": "hanFamily",
  6665. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6666. "onresize": function () { }
  6667. }, {
  6668. closecallback: function () { }
  6669. }, { "style": { "height": "36px" } }).form; //创建窗体
  6670. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6671. break;
  6672. case "hanClassics":
  6673. _formdiv = new U.UF.UI.form(
  6674. "国学经典",
  6675. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6676. "id": "hanClassics",
  6677. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6678. "onresize": function () { }
  6679. }, {
  6680. closecallback: function () { }
  6681. }, { "style": { "height": "36px" } }).form; //创建窗体
  6682. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6683. break;
  6684. case "hanTraining":
  6685. _formdiv = new U.UF.UI.form(
  6686. "笔画训练",
  6687. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6688. "id": "hanTraining",
  6689. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6690. "onresize": function () { }
  6691. }, {
  6692. closecallback: function () { }
  6693. }, { "style": { "height": "36px" } }).form; //创建窗体
  6694. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6695. break;
  6696. case "hanClass":
  6697. _formdiv = new U.UF.UI.form(
  6698. "书法课堂",
  6699. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6700. "id": "hanClass",
  6701. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6702. "onresize": function () { }
  6703. }, {
  6704. closecallback: function () { }
  6705. }, { "style": { "height": "36px" } }).form; //创建窗体
  6706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6707. break;
  6708. case "han":
  6709. _formdiv = new U.UF.UI.form(
  6710. "汉字宫",
  6711. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6712. "id": "han",
  6713. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6714. "onresize": function () { }
  6715. }, {
  6716. closecallback: function () { }
  6717. }, { "style": { "height": "36px" } }).form; //创建窗体
  6718. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6719. break;
  6720. case "projectGM": //课程管理
  6721. _formdiv = new U.UF.UI.form(
  6722. "课程管理",
  6723. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/courseGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6724. "id": "projectGM",
  6725. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6726. "onresize": function () { }
  6727. }, {
  6728. closecallback: function () { }
  6729. }, { "style": { "height": "36px" } }).form; //创建窗体
  6730. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/courseMange.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6731. break;
  6732. case "studyGM": //课程中心
  6733. _formdiv = new U.UF.UI.form(
  6734. "课程中心",
  6735. $$("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
  6736. "id": "study",
  6737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6738. "onresize": function () { }
  6739. }, {
  6740. closecallback: function () { }
  6741. }, { "style": { "height": "36px" } }).form; //创建窗体
  6742. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/learning.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6743. break;
  6744. // studentGM
  6745. case "studentGM": //学生管理
  6746. _formdiv = new U.UF.UI.form(
  6747. "学生管理",
  6748. $$("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 }), {
  6749. "id": "studentGM",
  6750. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6751. "onresize": function () { }
  6752. }, {
  6753. closecallback: function () { }
  6754. }, { "style": { "height": "36px" } }).form; //创建窗体
  6755. _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); } }
  6756. break;
  6757. case "evaluateGM": //学生评价
  6758. _formdiv = new U.UF.UI.form(
  6759. "学生评价",
  6760. $$("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 }), {
  6761. "id": "evaluateGM",
  6762. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6763. "onresize": function () { }
  6764. }, {
  6765. closecallback: function () { }
  6766. }, { "style": { "height": "36px" } }).form; //创建窗体
  6767. _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); } }
  6768. break;
  6769. // classGM
  6770. case "classGM": //班级管理
  6771. _formdiv = new U.UF.UI.form(
  6772. "班级管理",
  6773. $$("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 }), {
  6774. "id": "classGM",
  6775. "style": { "width": "90%", "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/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6781. break;
  6782. // dataGM
  6783. case "dataGM":
  6784. _formdiv = new U.UF.UI.form(
  6785. "我的资料",
  6786. $$("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 }), {
  6787. "id": "dataGM",
  6788. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6789. "onresize": function () { }
  6790. }, {
  6791. closecallback: function () { }
  6792. }, { "style": { "height": "36px" } }).form; //创建窗体
  6793. _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); } }
  6794. break;
  6795. // caseGM
  6796. case "caseGM": //课程进展
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程进展",
  6799. $$("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 }), {
  6800. "id": "caseGM",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _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); } }
  6807. break;
  6808. // meterialGM
  6809. case "meterialGM": //素材库
  6810. _formdiv = new U.UF.UI.form(
  6811. "素材库",
  6812. $$("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 }), {
  6813. "id": "meterialGM",
  6814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6815. "onresize": function () { }
  6816. }, {
  6817. closecallback: function () { }
  6818. }, { "style": { "height": "36px" } }).form; //创建窗体
  6819. _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); } }
  6820. break;
  6821. // evaluateSGM
  6822. case "evaluateSGM": //我的评价
  6823. _formdiv = new U.UF.UI.form(
  6824. "我的评价",
  6825. $$("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 }), {
  6826. "id": "evaluateSGM",
  6827. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //创建窗体
  6832. _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); } }
  6833. break;
  6834. case "jupyter": //jupyter
  6835. _formdiv = new U.UF.UI.form(
  6836. "jupyter",
  6837. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6838. "id": "jupyter",
  6839. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //创建窗体
  6844. _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); } }
  6845. break;
  6846. case "number": //数字实验室
  6847. _formdiv = new U.UF.UI.form(
  6848. "数字实验室",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6850. "id": "number",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _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); } }
  6857. break;
  6858. case "studentCourse": //项目管理 学生
  6859. _formdiv = new U.UF.UI.form(
  6860. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6861. $$("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 }), {
  6862. "id": "studentCourse",
  6863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _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); } }
  6869. break;
  6870. case "studentCourseS": //项目管理 老师
  6871. _formdiv = new U.UF.UI.form(
  6872. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6873. $$("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 }), {
  6874. "id": "studentCourseS",
  6875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _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); } }
  6881. break;
  6882. case "studentIndex": //项目中心
  6883. _formdiv = new U.UF.UI.form(
  6884. "项目中心",
  6885. $$("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 }), {
  6886. "id": "studentIndex",
  6887. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6888. "onresize": function () { }
  6889. }, {
  6890. closecallback: function () { }
  6891. }, { "style": { "height": "36px" } }).form; //创建窗体
  6892. _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); } }
  6893. break;
  6894. case "CaseDesignS":
  6895. _formdiv = new U.UF.UI.form(
  6896. "项目进展",
  6897. $$("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 }), {
  6898. "id": "case",
  6899. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6900. "onresize": function () { }
  6901. }, {
  6902. closecallback: function () { }
  6903. }, { "style": { "height": "36px" } }).form; //创建窗体
  6904. _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); } }
  6905. break;
  6906. case "tcStudent": //腾讯学生管理
  6907. _formdiv = new U.UF.UI.form(
  6908. "学生管理",
  6909. $$("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 }), {
  6910. "id": "tcStudent",
  6911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6912. "onresize": function () { }
  6913. }, {
  6914. closecallback: function () { }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _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); } }
  6917. break;
  6918. case "tcSchool": //腾讯学校管理
  6919. _formdiv = new U.UF.UI.form(
  6920. "学校管理",
  6921. $$("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 }), {
  6922. "id": "tcSchool",
  6923. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6924. "onresize": function () { }
  6925. }, {
  6926. closecallback: function () { }
  6927. }, { "style": { "height": "36px" } }).form; //创建窗体
  6928. _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); } }
  6929. break;
  6930. case "tcTeacher": //腾讯学校管理
  6931. _formdiv = new U.UF.UI.form(
  6932. "教师管理",
  6933. $$("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 }), {
  6934. "id": "tcTeacher",
  6935. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6936. "onresize": function () { }
  6937. }, {
  6938. closecallback: function () { }
  6939. }, { "style": { "height": "36px" } }).form; //创建窗体
  6940. _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); } }
  6941. break;
  6942. case "teacher":
  6943. _formdiv = new U.UF.UI.form(
  6944. "教师管理",
  6945. $$("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 }), {
  6946. "id": "teacher",
  6947. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6948. "onresize": function () { }
  6949. }, {
  6950. closecallback: function () { }
  6951. }, { "style": { "height": "36px" } }).form; //创建窗体
  6952. _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); } }
  6953. break;
  6954. case "tcData": //腾讯我的资料
  6955. _formdiv = new U.UF.UI.form(
  6956. "我的资料",
  6957. $$("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 }), {
  6958. "id": "tcData",
  6959. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6960. "onresize": function () { }
  6961. }, {
  6962. closecallback: function () { }
  6963. }, { "style": { "height": "36px" } }).form; //创建窗体
  6964. _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); } }
  6965. break;
  6966. case "tcNotice": //腾讯消息通知
  6967. _formdiv = new U.UF.UI.form(
  6968. "消息通知",
  6969. $$("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 }), {
  6970. "id": "tcNotice",
  6971. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6972. "onresize": function () { }
  6973. }, {
  6974. closecallback: function () { }
  6975. }, { "style": { "height": "36px" } }).form; //创建窗体
  6976. _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); } }
  6977. break;
  6978. case "myReport": //好友打开
  6979. _formdiv = new U.UF.UI.form(
  6980. "我的评价",
  6981. $$("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 }), {
  6982. "id": "myReport",
  6983. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6984. "onresize": function () { }
  6985. }, {
  6986. closecallback: function () { }
  6987. }, { "style": { "height": "36px" } }).form; //创建窗体
  6988. _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); } }
  6989. break;
  6990. case "learnAna": //好友打开
  6991. _formdiv = new U.UF.UI.form(
  6992. "学习分析",
  6993. $$("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 }), {
  6994. "id": "learnAna",
  6995. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6996. "onresize": function () { }
  6997. }, {
  6998. closecallback: function () { }
  6999. }, { "style": { "height": "36px" } }).form; //创建窗体
  7000. _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); } }
  7001. break;
  7002. case "AIChat": //AI共创
  7003. _formdiv = new U.UF.UI.form(
  7004. "AI共创",
  7005. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7006. "id": "AIChat",
  7007. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. istop: true,
  7011. closecallback: function () { $("#aichat_icon").remove(); },
  7012. narrowcallback: function () {
  7013. if (!$("#aichat_icon")[0]) {
  7014. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7015. }
  7016. },
  7017. }, { "style": { "height": "36px" } }).form; //创建窗体
  7018. _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); } }
  7019. break;
  7020. case "ainew": //AI共创
  7021. _formdiv = new U.UF.UI.form(
  7022. "AI协同",
  7023. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7024. "id": "ainew",
  7025. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7026. "onresize": function () { }
  7027. }, {
  7028. closecallback: function () { }
  7029. }, { "style": { "height": "36px" } }).form; //创建窗体
  7030. _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); } }
  7031. break;
  7032. case "gpt4": //gpt4
  7033. _formdiv = new U.UF.UI.form(
  7034. "AI助手",
  7035. $$("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 }), {
  7036. "id": "gpt4",
  7037. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7038. "onresize": function () { }
  7039. }, {
  7040. closecallback: function () { }
  7041. }, { "style": { "height": "36px" } }).form; //创建窗体
  7042. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7043. break;
  7044. case "aigpt": //gpt4
  7045. _formdiv = new U.UF.UI.form(
  7046. "AI助手+",
  7047. $$("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 }), {
  7048. "id": "aigpt",
  7049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7050. "onresize": function () { }
  7051. }, {
  7052. closecallback: function () {
  7053. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7054. }
  7055. }, { "style": { "height": "36px" } }).form; //创建窗体
  7056. _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); } }
  7057. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7058. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7059. })
  7060. break;
  7061. case "aiKnowledge": //aiKnowledge
  7062. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7063. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  7064. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7065. }
  7066. _formdiv = new U.UF.UI.form(
  7067. "知识建构",
  7068. $$("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 }), {
  7069. "id": "aiKnowledge",
  7070. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7071. "onresize": function () { }
  7072. }, {
  7073. closecallback: function () { }
  7074. }, { "style": { "height": "36px" } }).form; //创建窗体
  7075. _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); } }
  7076. break;
  7077. case "futureClass": //AI共创
  7078. _formdiv = new U.UF.UI.form(
  7079. "协同建构",
  7080. $$("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
  7081. "id": "synergyCourse",
  7082. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7083. "onresize": function () { }
  7084. }, {
  7085. closecallback: function () {
  7086. $("iframe", _formdiv)[0].contentWindow.loginout();
  7087. }
  7088. }, { "style": { "height": "36px" } }).form; //创建窗体
  7089. _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); } }
  7090. break;
  7091. case "aiagent": //ai agent
  7092. _formdiv = new U.UF.UI.form(
  7093. "AI Agent",
  7094. $$("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" }), {
  7095. "id": "AIAgent",
  7096. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7097. "onresize": function () { }
  7098. }, {
  7099. closecallback: function () { }
  7100. }, { "style": { "height": "36px" } }).form; //创建窗体
  7101. _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); } }
  7102. break;
  7103. case "dataBoard": //数据看板
  7104. _formdiv = new U.UF.UI.form(
  7105. "数据看板",
  7106. $$("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 }), {
  7107. "id": "dataBoard",
  7108. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7109. "onresize": function () { }
  7110. }, {
  7111. closecallback: function () { }
  7112. }, { "style": { "height": "36px" } }).form; //创建窗体
  7113. _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); } }
  7114. break;
  7115. case "dataBoardSies": //数据融合
  7116. _formdiv = new U.UF.UI.form(
  7117. "数据融合",
  7118. $$("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 }), {
  7119. "id": "dataBoardSies",
  7120. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7121. "onresize": function () { }
  7122. }, {
  7123. closecallback: function () { }
  7124. }, { "style": { "height": "36px" } }).form; //创建窗体
  7125. _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); } }
  7126. break;
  7127. case "dataBoardNew": //数据看板
  7128. _formdiv = new U.UF.UI.form(
  7129. "综合看板",
  7130. $$("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 }), {
  7131. "id": "dataBoardNew",
  7132. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7133. "onresize": function () { }
  7134. }, {
  7135. closecallback: function () { }
  7136. }, { "style": { "height": "36px" } }).form; //创建窗体
  7137. _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); } }
  7138. break;
  7139. case "dataBoardTest": //数据看板
  7140. _formdiv = new U.UF.UI.form(
  7141. "评测看板",
  7142. $$("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 }), {
  7143. "id": "dataBoardTest",
  7144. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7145. "onresize": function () { }
  7146. }, {
  7147. closecallback: function () { }
  7148. }, { "style": { "height": "36px" } }).form; //创建窗体
  7149. _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); } }
  7150. break;
  7151. case "AIAnalyse": //AI共创
  7152. _formdiv = new U.UF.UI.form(
  7153. "AI分析",
  7154. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7155. "id": "AIAnalyse",
  7156. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7157. "onresize": function () { }
  7158. }, {
  7159. closecallback: function () { }
  7160. }, { "style": { "height": "36px" } }).form; //创建窗体
  7161. _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); } }
  7162. break;
  7163. case "studioCourse": //AI共创
  7164. _formdiv = new U.UF.UI.form(
  7165. "工作管理",
  7166. $$("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 }), {
  7167. "id": "studioCourse",
  7168. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7169. "onresize": function () { }
  7170. }, {
  7171. closecallback: function () { }
  7172. }, { "style": { "height": "36px" } }).form; //创建窗体
  7173. _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); } }
  7174. break;
  7175. case "studioIndex": //AI共创
  7176. _formdiv = new U.UF.UI.form(
  7177. "工作中心",
  7178. $$("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 }), {
  7179. "id": "studioIndex",
  7180. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7181. "onresize": function () { }
  7182. }, {
  7183. closecallback: function () { }
  7184. }, { "style": { "height": "36px" } }).form; //创建窗体
  7185. _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); } }
  7186. break;
  7187. case "source":
  7188. _formdiv = new U.UF.UI.form(
  7189. "教学资源",
  7190. $$("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 }), {
  7191. "id": "source",
  7192. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7193. "onresize": function () { }
  7194. }, {
  7195. closecallback: function () { }
  7196. }, { "style": { "height": "36px" } }).form; //创建窗体
  7197. _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); } }
  7198. break;
  7199. case "testTeacher":
  7200. _formdiv = new U.UF.UI.form(
  7201. "智能表单",
  7202. $$("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 }), {
  7203. "id": "testTeacher",
  7204. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7205. "onresize": function () { }
  7206. }, {
  7207. closecallback: function () { }
  7208. }, { "style": { "height": "36px" } }).form; //创建窗体
  7209. _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); } }
  7210. break;
  7211. case "testStudent":
  7212. _formdiv = new U.UF.UI.form(
  7213. "教师中心",
  7214. $$("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 }), {
  7215. "id": "testStudent",
  7216. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7217. "onresize": function () { }
  7218. }, {
  7219. closecallback: function () { }
  7220. }, { "style": { "height": "36px" } }).form; //创建窗体
  7221. _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); } }
  7222. break;
  7223. case "testTeacherSies":
  7224. _formdiv = new U.UF.UI.form(
  7225. "教师管理",
  7226. $$("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 }), {
  7227. "id": "testTeacherSies",
  7228. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7229. "onresize": function () { }
  7230. }, {
  7231. closecallback: function () { }
  7232. }, { "style": { "height": "36px" } }).form; //创建窗体
  7233. _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); } }
  7234. break;
  7235. case "testStudentSies":
  7236. _formdiv = new U.UF.UI.form(
  7237. "教师中心",
  7238. $$("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 }), {
  7239. "id": "testStudentSies",
  7240. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7241. "onresize": function () { }
  7242. }, {
  7243. closecallback: function () { }
  7244. }, { "style": { "height": "36px" } }).form; //创建窗体
  7245. _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); } }
  7246. break;
  7247. case "ytpbl": //消息通知
  7248. _formdiv = new U.UF.UI.form(
  7249. "案例征集",
  7250. $$("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 }), {
  7251. "id": "ytpbl",
  7252. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7253. "onresize": function () { }
  7254. }, {
  7255. closecallback: function () { }
  7256. }, { "style": { "height": "36px" } }).form; //创建窗体
  7257. _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); } }
  7258. // 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");
  7259. break;
  7260. case "aiCourseResource": //人工智能窗体
  7261. _formdiv = new U.UF.UI.form(
  7262. false,
  7263. $$("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 }), {
  7264. "id": "aiCourseResource",
  7265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7266. "onresize": function () { },
  7267. "isdrag": false,
  7268. }, {
  7269. closecallback: function () { }
  7270. }, { "style": { "height": "36px" } }).form; //创建窗体
  7271. _taskbar = ''
  7272. break;
  7273. case "szdjgCocooroboX": //图形化编程
  7274. _formdiv = new U.UF.UI.form(
  7275. "图形化编程",
  7276. $$("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" }), {
  7277. "id": "szdjgCocooroboX",
  7278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7279. "onresize": function () { }
  7280. }, {
  7281. closecallback: function () { }
  7282. }, { "style": { "height": "36px" } }).form; //创建窗体
  7283. _taskbar = ''
  7284. break;
  7285. case "szdjgPython": //python编程
  7286. _formdiv = new U.UF.UI.form(
  7287. "Python编程",
  7288. $$("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" }), {
  7289. "id": "szdjgPython",
  7290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7291. "onresize": function () { }
  7292. }, {
  7293. closecallback: function () { }
  7294. }, { "style": { "height": "36px" } }).form; //创建窗体
  7295. _taskbar = ''
  7296. break;
  7297. case "Record":
  7298. _formdiv = new U.UF.UI.form(
  7299. "观察记录",
  7300. $$("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 }), {
  7301. "id": "Record",
  7302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7303. "onresize": function () { }
  7304. }, {
  7305. closecallback: function () { }
  7306. }, { "style": { "height": "36px" } }).form; //创建窗体
  7307. _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); } }
  7308. break;
  7309. case "aigptCourse":
  7310. _formdiv = new U.UF.UI.form(
  7311. "AI智能体",
  7312. $$("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' }), {
  7313. "id": "aigptCourse",
  7314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7315. "onresize": function () { }
  7316. }, {
  7317. closecallback: function () { }
  7318. }, { "style": { "height": "36px" } }).form; //创建窗体
  7319. _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); } }
  7320. break;
  7321. case "classroomObservation":
  7322. _formdiv = new U.UF.UI.form(
  7323. "课堂观察",
  7324. $$("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 }), {
  7325. "id": "classroomObservation",
  7326. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7327. "onresize": function () { }
  7328. }, {
  7329. closecallback: function () { }
  7330. }, { "style": { "height": "36px" } }).form; //创建窗体
  7331. _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); } }
  7332. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7333. break;
  7334. case "pblCourse":
  7335. _formdiv = new U.UF.UI.form(
  7336. "学生PBL",
  7337. $$("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 }), {
  7338. "id": "pblCourse",
  7339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7340. "onresize": function () { }
  7341. }, {
  7342. closecallback: function () { }
  7343. }, { "style": { "height": "36px" } }).form; //创建窗体
  7344. _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); } }
  7345. break;
  7346. case "appStore":
  7347. U.MD.D.addOp('','cocoflowOpen','')
  7348. _formdiv = new U.UF.UI.form(
  7349. "CocoFlow",
  7350. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7351. "id": "appStore",
  7352. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7353. "onresize": function () { }
  7354. }, {
  7355. closecallback: function () { }
  7356. }, { "style": { "height": "36px" } }).form; //创建窗体
  7357. _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); } }
  7358. break;
  7359. case "sassPlatform":
  7360. _formdiv = new U.UF.UI.form(
  7361. "Sass通用后台管理",
  7362. $$("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 }), {
  7363. "id": "sassPlatform",
  7364. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7365. "onresize": function () { }
  7366. }, {
  7367. closecallback: function () { }
  7368. }, { "style": { "height": "36px" } }).form; //创建窗体
  7369. _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); } }
  7370. break;
  7371. case "EDU":
  7372. _formdiv = new U.UF.UI.form(
  7373. "EDU",
  7374. $$("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" }), {
  7375. "id": "EDU",
  7376. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7377. "onresize": function () { }
  7378. }, {
  7379. closecallback: function () { }
  7380. }, { "style": { "height": "36px" } }).form; //创建窗体
  7381. _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); } }
  7382. break;
  7383. case "knowledge":
  7384. _formdiv = new U.UF.UI.form(
  7385. "知识库",
  7386. $$("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 }), {
  7387. "id": "knowledge",
  7388. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7389. "onresize": function () { }
  7390. }, {
  7391. closecallback: function () { }
  7392. }, { "style": { "height": "36px" } }).form; //创建窗体
  7393. _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); } }
  7394. break;
  7395. case "userExamine":
  7396. _formdiv = new U.UF.UI.form(
  7397. "账号申请",
  7398. $$("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" }), {
  7399. "id": "userExamine",
  7400. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7401. "onresize": function () { }
  7402. }, {
  7403. closecallback: function () { }
  7404. }, { "style": { "height": "36px" } }).form; //创建窗体
  7405. break;
  7406. case "cocoflowDeskTop": //cocoflowDeskTop
  7407. _formdiv = new U.UF.UI.form(
  7408. false,
  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": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7410. "id": "cocoflowDeskTop",
  7411. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7412. "onresize": function () { },
  7413. "isdrag": false,
  7414. }, {
  7415. closecallback: function () { }
  7416. }, { "style": { "height": "36px" } }).form; //创建窗体
  7417. _taskbar = ''
  7418. break;
  7419. }
  7420. //U.MD.D.I.openClick(str);
  7421. //如果有任务栏信息
  7422. if (_taskbar) {
  7423. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7424. }
  7425. if(iframeBool){
  7426. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7427. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7428. // console.log("iframe进入");
  7429. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7430. // };
  7431. setTimeout(() => {
  7432. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7433. }, 2000);
  7434. }
  7435. }
  7436. U.MD.D.I.openApplicationWai = function (id, url, dom) {
  7437. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  7438. _userinfo = US.userInfo, //登录用户信息
  7439. _userid = _userinfo.userid, //登录用户id
  7440. _oid = _userinfo.organizeid,
  7441. _type = _userinfo.type,
  7442. _org = _userinfo.org,
  7443. _role = _userinfo.role,
  7444. _classId = _userinfo.classid,
  7445. _TscreenType = 1
  7446. _screenType = 2,
  7447. _SscreenType = 3;
  7448. let iframeBool = true
  7449. if(U.UF.UI.form.allForm[id]){
  7450. iframeBool = false
  7451. }
  7452. _formdiv = new U.UF.UI.form(
  7453. false,
  7454. $$("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 }),
  7455. {
  7456. "id": id,
  7457. "style": { "width": "100%", "height": "100%", "overflow": 'hidden',"position": 'unset',"boxShadow": "unset" },
  7458. "onresize": function () { },
  7459. isdrag: false,
  7460. isstretching: false,
  7461. isenlarge: false,
  7462. isnarrow: false
  7463. },
  7464. {
  7465. closecallback: function () { }
  7466. },
  7467. { "style": { "height": "36px" } },
  7468. undefined,
  7469. undefined,
  7470. dom
  7471. ).form
  7472. }
  7473. // U.MD.D.I.openClick = function(str){
  7474. // var click = '';
  7475. // switch(str){
  7476. // case 'friend':
  7477. // click = '我的好友';
  7478. // break;
  7479. // case 'domain':
  7480. // click = '域名管理';
  7481. // break;
  7482. // case 'disk':
  7483. // click = '我的云盘';
  7484. // break;
  7485. // case 'word':
  7486. // click = 'Word';
  7487. // break;
  7488. // case 'excel':
  7489. // click = 'Execl';
  7490. // break;
  7491. // case 'txt':
  7492. // click = '文本文件';
  7493. // break;
  7494. // case 'lookupFriend':
  7495. // click = '查找好友';
  7496. // break;
  7497. // case 'ftp':
  7498. // click = 'FTP';
  7499. // break;
  7500. // case 'group':
  7501. // click = '群组';
  7502. // break;
  7503. // case 'set':
  7504. // click = '我的设置';
  7505. // break;
  7506. // case 'systemSet':
  7507. // click = '系统设置';
  7508. // break;
  7509. // case 'boomYun':
  7510. // click = '互联办公';
  7511. // break;
  7512. // case 'xz':
  7513. // click = '云端下载';
  7514. // break;
  7515. // case 'client':
  7516. // click = '有思浏览器';
  7517. // break;
  7518. // case 'backEndProgramming':
  7519. // click = '在线后台编程';
  7520. // break;
  7521. // case 'frontEndProgramming':
  7522. // click = '在线前端编程';
  7523. // break;
  7524. // default: break;
  7525. // }
  7526. // if(U.MD.D.I.Ip && click){
  7527. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7528. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7529. // })
  7530. // }
  7531. // }
  7532. /**
  7533. *函数作用:ajax简易函数,使用post格式
  7534. *@param url {data} 后台地址
  7535. *@param data {data} 参数json
  7536. *@param fn {data} 回调函数
  7537. *
  7538. */
  7539. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7540. // var xhr = new XMLHttpRequest();
  7541. // xhr.open("GET",url,true);
  7542. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7543. // xhr.onreadystatechange = function(){
  7544. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7545. // fn.call(this,xhr.responseText);
  7546. // }
  7547. // };
  7548. // xhr.send();
  7549. // }
  7550. /*判断是否是内网IP*/
  7551. // U.MD.D.I.isInnerIPFn = function(str){
  7552. // var curPageUrl = str;
  7553. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7554. // curPageUrl =curPageUrl.replace(reg1,'');
  7555. // // console.log('curPageUrl-1 '+curPageUrl);
  7556. // var reg2 = /\:+/g;//替换冒号为一点
  7557. // curPageUrl =curPageUrl.replace(reg2,'.');
  7558. // // console.log('curPageUrl-2 '+curPageUrl);
  7559. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7560. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7561. // if(curPageUrl[2] != '16'){
  7562. // return ipAddress;
  7563. // }else{
  7564. // return false;
  7565. // }
  7566. // }
  7567. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7568. // //compatibility for firefox and chrome
  7569. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7570. // var pc = new myPeerConnection({
  7571. // iceServers: []
  7572. // }),
  7573. // noop = function() {},
  7574. // localIPs = {},
  7575. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7576. // key;
  7577. // function iterateIP(ip) {
  7578. // if (!localIPs[ip]) onNewIP(ip);
  7579. // localIPs[ip] = true;
  7580. // }
  7581. // //create a bogus data channel
  7582. // pc.createDataChannel("");
  7583. // // create offer and set local description
  7584. // pc.createOffer().then(function(sdp) {
  7585. // sdp.sdp.split('\n').forEach(function(line) {
  7586. // if (line.indexOf('candidate') < 0) return;
  7587. // line.match(ipRegex).forEach(iterateIP);
  7588. // });
  7589. // pc.setLocalDescription(sdp, noop, noop);
  7590. // }).catch(function(reason) {
  7591. // // An error occurred, so handle the failure to connect
  7592. // });
  7593. // //sten for candidate events
  7594. // pc.onicecandidate = function(ice) {
  7595. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7596. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7597. // };
  7598. // }
  7599. // U.MD.D.I.getUserIpBool = function(callback){
  7600. // U.MD.D.I.getUserIP(function(ip){
  7601. // alert("Got IP! :" + ip);
  7602. // });
  7603. //}
  7604. //#endregion
  7605. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7606. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7607. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7608. _userinfo = US.userInfo, //登录用户信息
  7609. _userid = US.userInfo.userid //登录用户id
  7610. let _iframe;
  7611. let _cid = cid,
  7612. _stage = stage,
  7613. _task = task,
  7614. _tool = tool;
  7615. var _jie = $$("div", {
  7616. "style": {
  7617. "position": "absolute",
  7618. "bottom": "50px",
  7619. "right": "50px",
  7620. "zIndex": "9999",
  7621. "backgroundColor": "#2268bc",
  7622. "color": "#fff",
  7623. "padding": "12px 20px",
  7624. "cursor": "pointer",
  7625. "borderRadius": "4px",
  7626. },
  7627. "innerHTML": "提交作业"
  7628. })
  7629. let aTool = ''
  7630. let _loading = document.createElement('div')
  7631. _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;"
  7632. // _loading.id = "";
  7633. let _lchild = document.createElement('div')
  7634. let _limg = document.createElement('img')
  7635. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7636. _limg.style = "width: 26px;margin-right: 10px;"
  7637. _lchild.appendChild(_limg)
  7638. let _lspan = document.createElement('span')
  7639. _lspan.innerHTML = "上传中..."
  7640. _lchild.appendChild(_lspan)
  7641. _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%);"
  7642. _loading.appendChild(_lchild)
  7643. var _box = $$('div', {
  7644. "style": {
  7645. "position": "relative",
  7646. "width": "100%",
  7647. "height": "100%",
  7648. },
  7649. })
  7650. _box.appendChild(_loading)
  7651. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7652. switch (str) {
  7653. case "whiteboard":
  7654. aTool = 1;
  7655. _iframe = $$("iframe", {
  7656. "frameborder": "no",
  7657. "border": "0",
  7658. "scrolling ": "no",
  7659. "style": {
  7660. "cssText": "border:0;width:100%;height:100%"
  7661. },
  7662. "src": "https://beta.iwb.cocorobo.cn/"
  7663. })
  7664. _box.appendChild(_iframe);
  7665. _box.appendChild(_jie);
  7666. _formdiv = new U.UF.UI.form(
  7667. "电子白板",
  7668. _box, {
  7669. "id": "whiteboard" + cid + stage + task + tool,
  7670. "style": {
  7671. "width": "90%",
  7672. "height": "90%",
  7673. "overflow": 'hidden'
  7674. },
  7675. "onresize": function () { }
  7676. }, {
  7677. closecallback: function () { }
  7678. }, {
  7679. "style": {
  7680. "height": "36px"
  7681. }
  7682. }).form; //创建窗体
  7683. _taskbar = {
  7684. "id": str + _formdiv.id,
  7685. "style": {
  7686. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7687. },
  7688. "name": "电子白板",
  7689. "forms": _formdiv,
  7690. "click": function () {
  7691. U.MD.D.I.openApplication(str, obj, info);
  7692. }
  7693. }
  7694. break;
  7695. case "mind":
  7696. aTool = 3;
  7697. _iframe = $$("iframe", {
  7698. "frameborder": "no",
  7699. "border": "0",
  7700. "scrolling ": "no",
  7701. "style": {
  7702. "cssText": "border:0;width:100%;height:100%"
  7703. },
  7704. "src": "/kityminder-editor/dist/index.html"
  7705. })
  7706. _box.appendChild(_iframe);
  7707. _box.appendChild(_jie);
  7708. _formdiv = new U.UF.UI.form(
  7709. "思维导图",
  7710. _box, { //"/jsmind/example/demo.html"
  7711. "id": "mind" + cid + stage + task + tool,
  7712. "style": {
  7713. "width": "90%",
  7714. "height": "90%",
  7715. "overflow": 'hidden'
  7716. },
  7717. "onresize": function () { }
  7718. }, {
  7719. closecallback: function () { }
  7720. }, {
  7721. "style": {
  7722. "height": "36px"
  7723. }
  7724. }).form; //创建窗体
  7725. _taskbar = {
  7726. "id": str + _formdiv.id,
  7727. "style": {
  7728. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7729. },
  7730. "name": "思维导图",
  7731. "forms": _formdiv,
  7732. "click": function () {
  7733. U.MD.D.I.openApplication(str, obj, info);
  7734. }
  7735. }
  7736. break;
  7737. case "MindMap":
  7738. aTool = 3;
  7739. _iframe = $$("iframe", {
  7740. "frameborder": "no",
  7741. "border": "0",
  7742. "scrolling ": "no",
  7743. "style": {
  7744. "cssText": "border:0;width:100%;height:100%"
  7745. },
  7746. "src": "//cloud.cocorobo.cn/mind/"
  7747. })
  7748. _box.appendChild(_iframe);
  7749. _box.appendChild(_jie);
  7750. _formdiv = new U.UF.UI.form(
  7751. "思维导图",
  7752. _box, { //"/jsmind/example/demo.html"
  7753. "id": "mind" + cid + stage + task + tool,
  7754. "style": {
  7755. "width": "90%",
  7756. "height": "90%",
  7757. "overflow": 'hidden'
  7758. },
  7759. "onresize": function () { }
  7760. }, {
  7761. closecallback: function () { }
  7762. }, {
  7763. "style": {
  7764. "height": "36px"
  7765. }
  7766. }).form; //创建窗体
  7767. _taskbar = {
  7768. "id": str + _formdiv.id,
  7769. "style": {
  7770. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7771. },
  7772. "name": "思维导图",
  7773. "forms": _formdiv,
  7774. "click": function () {
  7775. U.MD.D.I.openApplication(str, obj, info);
  7776. }
  7777. }
  7778. break;
  7779. case "doc":
  7780. aTool = 6;
  7781. _iframe = $$("iframe", {
  7782. "frameborder": "no",
  7783. "border": "0",
  7784. "scrolling ": "no",
  7785. "style": {
  7786. "cssText": "border:0;width:100%;height:100%"
  7787. },
  7788. "src": "/Office/Word/WordEditArea.htm"
  7789. })
  7790. _box.appendChild(_iframe);
  7791. _box.appendChild(_jie);
  7792. _formdiv = new U.UF.UI.form(
  7793. "协同文档",
  7794. _box, {
  7795. "id": "doc" + cid + stage + task + tool,
  7796. "style": {
  7797. "width": "90%",
  7798. "height": "90%",
  7799. "overflow": 'hidden'
  7800. },
  7801. "onresize": function () { }
  7802. }, {
  7803. closecallback: function () { }
  7804. }, {
  7805. "style": {
  7806. "height": "36px"
  7807. }
  7808. }).form; //创建窗体
  7809. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7810. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7811. })
  7812. _taskbar = {
  7813. "id": str + _formdiv.id,
  7814. "style": {
  7815. "backgroundImage": "url(/img/icon/doc.png)"
  7816. },
  7817. "name": "协同文档",
  7818. "forms": _formdiv,
  7819. "click": function () {
  7820. U.MD.D.I.openApplication(str, obj, info);
  7821. }
  7822. }
  7823. break;
  7824. case "mindNetwork": //好友打开
  7825. aTool = 7;
  7826. _iframe = $$("iframe", {
  7827. "webkitallowfullscreen": "",
  7828. "mozallowfullscreen": "",
  7829. "allowfullscreen": "",
  7830. "frameborder": "no",
  7831. "border": "0",
  7832. "scrolling ": "no",
  7833. "style": {
  7834. "cssText": "border:0; width:100%; height:100%;"
  7835. },
  7836. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7837. })
  7838. _box.appendChild(_iframe);
  7839. _box.appendChild(_jie);
  7840. _formdiv = new U.UF.UI.form(
  7841. "思维网格",
  7842. _box, {
  7843. "id": "mindNetwork" + cid + stage + task + tool,
  7844. "style": {
  7845. "width": "90%",
  7846. "height": "90%",
  7847. "overflow": 'hidden'
  7848. },
  7849. "onresize": function () { }
  7850. }, {
  7851. closecallback: function () { }
  7852. }, {
  7853. "style": {
  7854. "height": "36px"
  7855. }
  7856. }).form; //创建窗体
  7857. _taskbar = {
  7858. "id": str + _formdiv.id,
  7859. "style": {
  7860. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7861. },
  7862. "name": "思维网格",
  7863. "forms": _formdiv,
  7864. "click": function () {
  7865. U.MD.D.I.openApplication(str, obj, info);
  7866. }
  7867. }
  7868. break;
  7869. case "courseDesign":
  7870. _iframe = $$("iframe", {
  7871. "webkitallowfullscreen": "",
  7872. "mozallowfullscreen": "",
  7873. "allowfullscreen": "",
  7874. "frameborder": "no",
  7875. "border": "0",
  7876. "scrolling ": "no",
  7877. "style": {
  7878. "cssText": "border:0; width:100%; height:100%;"
  7879. },
  7880. "src": "/course-design-vue"
  7881. })
  7882. _box.appendChild(_iframe);
  7883. _box.appendChild(_jie);
  7884. _formdiv = new U.UF.UI.form(
  7885. "项目设计",
  7886. _box, {
  7887. "id": "courseDesign" + cid + stage + task + tool,
  7888. "style": {
  7889. "width": "90%",
  7890. "height": "90%",
  7891. "overflow": 'hidden'
  7892. },
  7893. "onresize": function () { }
  7894. }, {
  7895. closecallback: function () { }
  7896. }, {
  7897. "style": {
  7898. "height": "36px"
  7899. }
  7900. }).form; //创建窗体
  7901. _taskbar = {
  7902. "id": str + _formdiv.id,
  7903. "style": {
  7904. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7905. },
  7906. "name": "项目设计",
  7907. "forms": _formdiv,
  7908. "click": function () {
  7909. U.MD.D.I.openApplication(str, obj, info);
  7910. }
  7911. }
  7912. break;
  7913. }
  7914. const script1 = document.createElement("script");
  7915. script1.type = "text/javascript";
  7916. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7917. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7918. const script2 = document.createElement("script");
  7919. script2.type = "text/javascript";
  7920. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7921. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7922. const script3 = document.createElement("script");
  7923. script3.type = "text/javascript";
  7924. script3.charset = "UTF-8";
  7925. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7926. const script4 = document.createElement("script");
  7927. script4.type = "text/javascript";
  7928. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7929. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7930. if (_iframe) {
  7931. if (str == 'doc') {
  7932. _iframe = _formdiv.querySelector('iframe')
  7933. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7934. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7935. _iframe.contentWindow.document.body.appendChild(script1);
  7936. _iframe.contentWindow.document.body.appendChild(script2);
  7937. // _iframe.contentWindow.document.body.appendChild(script3);
  7938. _iframe.contentWindow.document.body.appendChild(script4);
  7939. })
  7940. if (onloadListener) {
  7941. _iframe.contentDocument.location.reload()
  7942. } else {
  7943. _iframe.contentDocument.location.reload()
  7944. }
  7945. } else if (str == 'courseDesign') {
  7946. U.UF.DL.iframeLoad(_iframe, function () {
  7947. // _iframe.contentWindow.U.MD.O.W.load();
  7948. // _iframe.contentWindow.document.body.appendChild(script1);
  7949. _iframe.contentWindow.document.body.appendChild(script2);
  7950. _iframe.contentWindow.document.body.appendChild(script4);
  7951. })
  7952. } else if (str == 'mind') {
  7953. _iframe = _formdiv.querySelector('iframe')
  7954. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7955. //
  7956. _iframe.contentWindow.document.body.appendChild(script1);
  7957. _iframe.contentWindow.document.body.appendChild(script2);
  7958. _iframe.contentWindow.document.body.appendChild(script4);
  7959. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7960. })
  7961. if (onloadListener) {
  7962. _iframe.contentDocument.location.reload()
  7963. } else {
  7964. _iframe.contentDocument.location.reload()
  7965. }
  7966. } else if (str == 'whiteboard') {
  7967. _iframe = _formdiv.querySelector('iframe')
  7968. let onloadListener = _iframe.onload = () => {
  7969. _iframe.contentWindow.document.body.appendChild(script1);
  7970. _iframe.contentWindow.document.body.appendChild(script2);
  7971. _iframe.contentWindow.document.body.appendChild(script4);
  7972. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7973. };
  7974. // if (onloadListener) {
  7975. // try {
  7976. // _iframe.src += "?cocorobo="+new Date().getTime()
  7977. // _iframe.contentWindow.document.location.reload()
  7978. // } catch (error) {
  7979. // }
  7980. // } else {
  7981. // _iframe.contentDocument.location.reload()
  7982. // }
  7983. } else {
  7984. _iframe.onload = () => {
  7985. _iframe.contentWindow.document.body.appendChild(script1);
  7986. _iframe.contentWindow.document.body.appendChild(script2);
  7987. // _iframe.contentWindow.document.body.appendChild(script3);
  7988. _iframe.contentWindow.document.body.appendChild(script4);
  7989. };
  7990. }
  7991. _jie.onclick = async () => {
  7992. let text = ''
  7993. if (aTool == 1) {
  7994. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7995. } else if (aTool == 6) {
  7996. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7997. } else if (aTool == 3) {
  7998. text = await U.MD.D.I.getEditorContent(_iframe);
  7999. }
  8000. _loading.style.display = 'flex'
  8001. console.log(_loading);
  8002. var _ajs = _iframe.contentWindow.document.createElement("script");
  8003. _ajs.type = "text/javascript";
  8004. _ajs.innerHTML =
  8005. // 'console.log(' + _loading + ');\n' +
  8006. 'var _js = document.createElement("script");\n' +
  8007. '_js.type="text/javascript";\n' +
  8008. '_js.charset="UTF-8";\n' +
  8009. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8010. "_js.onload = function(){\n" +
  8011. ' var a = document.getElementsByTagName("img")\n' +
  8012. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8013. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8014. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8015. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8016. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8017. "beforeUpload_shishi(file," +
  8018. "'" +
  8019. _userid +
  8020. "'" +
  8021. ", " +
  8022. "'" +
  8023. _cid +
  8024. "'" +
  8025. ", " +
  8026. "'" +
  8027. _stage +
  8028. "'" +
  8029. ", " +
  8030. "'" +
  8031. _task +
  8032. "'" +
  8033. ", " +
  8034. "'" +
  8035. _tool +
  8036. "'" +
  8037. ", " +
  8038. "'" +
  8039. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8040. "'" +
  8041. ", " +
  8042. "'" +
  8043. aTool +
  8044. "'" +
  8045. ", " +
  8046. "`" +
  8047. text +
  8048. "`" +
  8049. ")\n" +
  8050. " });\n" +
  8051. "}\n" +
  8052. "document.head.appendChild(_js);\n";
  8053. _iframe.contentWindow.document.head.appendChild(_ajs);
  8054. }
  8055. }
  8056. //U.MD.D.I.openClick(str);
  8057. //如果有任务栏信息
  8058. // if (_taskbar) {
  8059. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8060. // }
  8061. }
  8062. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8063. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8064. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8065. _userinfo = US.userInfo, //登录用户信息
  8066. _userid = US.userInfo.userid //登录用户id
  8067. let _iframe;
  8068. let _cid = cid,
  8069. _stage = stage,
  8070. _task = task,
  8071. _tool = tool;
  8072. var _jie = $$("div", {
  8073. "style": {
  8074. "position": "absolute",
  8075. "bottom": "50px",
  8076. "right": "50px",
  8077. "zIndex": "9999",
  8078. "backgroundColor": "#2268bc",
  8079. "color": "#fff",
  8080. "padding": "12px 20px",
  8081. "cursor": "pointer",
  8082. "borderRadius": "4px",
  8083. },
  8084. "innerHTML": "提交作业"
  8085. })
  8086. let aTool = ''
  8087. let _loading = document.createElement('div')
  8088. _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;"
  8089. // _loading.id = "";
  8090. let _lchild = document.createElement('div')
  8091. let _limg = document.createElement('img')
  8092. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8093. _limg.style = "width: 26px;margin-right: 10px;"
  8094. _lchild.appendChild(_limg)
  8095. let _lspan = document.createElement('span')
  8096. _lspan.innerHTML = "上传中..."
  8097. _lchild.appendChild(_lspan)
  8098. _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%);"
  8099. _loading.appendChild(_lchild)
  8100. let _box = $$('div', {
  8101. "style": {
  8102. "position": "relative",
  8103. "width": "100%",
  8104. "height": "100%",
  8105. },
  8106. })
  8107. _box.appendChild(_loading)
  8108. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8109. switch (str) {
  8110. case "whiteboard":
  8111. aTool = 1;
  8112. _iframe = $$("iframe", {
  8113. "frameborder": "no",
  8114. "border": "0",
  8115. "scrolling ": "no",
  8116. "style": {
  8117. "cssText": "border:0;width:100%;height:100%"
  8118. },
  8119. "src": "https://beta.iwb.cocorobo.cn/"
  8120. })
  8121. _box.appendChild(_iframe);
  8122. _box.appendChild(_jie);
  8123. _formdiv = new U.UF.UI.form(
  8124. "电子白板",
  8125. _box, {
  8126. "id": "whiteboard" + cid + stage + task + tool,
  8127. "style": {
  8128. "width": "90%",
  8129. "height": "90%",
  8130. "overflow": 'hidden'
  8131. },
  8132. "onresize": function () { }
  8133. }, {
  8134. closecallback: function () { }
  8135. }, {
  8136. "style": {
  8137. "height": "36px"
  8138. }
  8139. }).form; //创建窗体
  8140. _taskbar = {
  8141. "id": str + _formdiv.id,
  8142. "style": {
  8143. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8144. },
  8145. "name": "电子白板",
  8146. "forms": _formdiv,
  8147. "click": function () {
  8148. U.MD.D.I.openApplication(str, obj, info);
  8149. }
  8150. }
  8151. break;
  8152. case "mind":
  8153. aTool = 3;
  8154. _iframe = $$("iframe", {
  8155. "frameborder": "no",
  8156. "border": "0",
  8157. "scrolling ": "no",
  8158. "style": {
  8159. "cssText": "border:0;width:100%;height:100%"
  8160. },
  8161. "src": "/kityminder-editor/dist/index.html"
  8162. })
  8163. _box.appendChild(_iframe);
  8164. _box.appendChild(_jie);
  8165. _formdiv = new U.UF.UI.form(
  8166. "思维导图",
  8167. _box, { //"/jsmind/example/demo.html"
  8168. "id": "mind" + cid + stage + task + tool,
  8169. "style": {
  8170. "width": "90%",
  8171. "height": "90%",
  8172. "overflow": 'hidden'
  8173. },
  8174. "onresize": function () { }
  8175. }, {
  8176. closecallback: function () { }
  8177. }, {
  8178. "style": {
  8179. "height": "36px"
  8180. }
  8181. }).form; //创建窗体
  8182. _taskbar = {
  8183. "id": str + _formdiv.id,
  8184. "style": {
  8185. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8186. },
  8187. "name": "思维导图",
  8188. "forms": _formdiv,
  8189. "click": function () {
  8190. U.MD.D.I.openApplication(str, obj, info);
  8191. }
  8192. }
  8193. break;
  8194. case "MindMap":
  8195. aTool = 3;
  8196. _iframe = $$("iframe", {
  8197. "frameborder": "no",
  8198. "border": "0",
  8199. "scrolling ": "no",
  8200. "style": {
  8201. "cssText": "border:0;width:100%;height:100%"
  8202. },
  8203. "src": "//cloud.cocorobo.cn/mind/"
  8204. })
  8205. _box.appendChild(_iframe);
  8206. _box.appendChild(_jie);
  8207. _formdiv = new U.UF.UI.form(
  8208. "思维导图",
  8209. _box, { //"/jsmind/example/demo.html"
  8210. "id": "mind" + cid + stage + task + tool,
  8211. "style": {
  8212. "width": "90%",
  8213. "height": "90%",
  8214. "overflow": 'hidden'
  8215. },
  8216. "onresize": function () { }
  8217. }, {
  8218. closecallback: function () { }
  8219. }, {
  8220. "style": {
  8221. "height": "36px"
  8222. }
  8223. }).form; //创建窗体
  8224. _taskbar = {
  8225. "id": str + _formdiv.id,
  8226. "style": {
  8227. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8228. },
  8229. "name": "思维导图",
  8230. "forms": _formdiv,
  8231. "click": function () {
  8232. U.MD.D.I.openApplication(str, obj, info);
  8233. }
  8234. }
  8235. break;
  8236. case "doc":
  8237. aTool = 6;
  8238. _iframe = $$("iframe", {
  8239. "frameborder": "no",
  8240. "border": "0",
  8241. "scrolling ": "no",
  8242. "style": {
  8243. "cssText": "border:0;width:100%;height:100%"
  8244. },
  8245. "src": "/Office/Word/WordEditArea.htm"
  8246. })
  8247. _box.appendChild(_iframe);
  8248. _box.appendChild(_jie);
  8249. _formdiv = new U.UF.UI.form(
  8250. "协同文档",
  8251. _box, {
  8252. "id": "doc" + cid + stage + task + tool,
  8253. "style": {
  8254. "width": "90%",
  8255. "height": "90%",
  8256. "overflow": 'hidden'
  8257. },
  8258. "onresize": function () { }
  8259. }, {
  8260. closecallback: function () { }
  8261. }, {
  8262. "style": {
  8263. "height": "36px"
  8264. }
  8265. }).form; //创建窗体
  8266. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8267. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8268. })
  8269. _taskbar = {
  8270. "id": str + _formdiv.id,
  8271. "style": {
  8272. "backgroundImage": "url(/img/icon/doc.png)"
  8273. },
  8274. "name": "协同文档",
  8275. "forms": _formdiv,
  8276. "click": function () {
  8277. U.MD.D.I.openApplication(str, obj, info);
  8278. }
  8279. }
  8280. break;
  8281. case "mindNetwork": //好友打开
  8282. aTool = 7;
  8283. _iframe = $$("iframe", {
  8284. "webkitallowfullscreen": "",
  8285. "mozallowfullscreen": "",
  8286. "allowfullscreen": "",
  8287. "frameborder": "no",
  8288. "border": "0",
  8289. "scrolling ": "no",
  8290. "style": {
  8291. "cssText": "border:0; width:100%; height:100%;"
  8292. },
  8293. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8294. })
  8295. _box.appendChild(_iframe);
  8296. _box.appendChild(_jie);
  8297. _formdiv = new U.UF.UI.form(
  8298. "思维网格",
  8299. _box, {
  8300. "id": "mindNetwork" + cid + stage + task + tool,
  8301. "style": {
  8302. "width": "90%",
  8303. "height": "90%",
  8304. "overflow": 'hidden'
  8305. },
  8306. "onresize": function () { }
  8307. }, {
  8308. closecallback: function () { }
  8309. }, {
  8310. "style": {
  8311. "height": "36px"
  8312. }
  8313. }).form; //创建窗体
  8314. _taskbar = {
  8315. "id": str + _formdiv.id,
  8316. "style": {
  8317. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8318. },
  8319. "name": "思维网格",
  8320. "forms": _formdiv,
  8321. "click": function () {
  8322. U.MD.D.I.openApplication(str, obj, info);
  8323. }
  8324. }
  8325. break;
  8326. case "courseDesign":
  8327. _iframe = $$("iframe", {
  8328. "webkitallowfullscreen": "",
  8329. "mozallowfullscreen": "",
  8330. "allowfullscreen": "",
  8331. "frameborder": "no",
  8332. "border": "0",
  8333. "scrolling ": "no",
  8334. "style": {
  8335. "cssText": "border:0; width:100%; height:100%;"
  8336. },
  8337. "src": "/course-design-vue"
  8338. })
  8339. _box.appendChild(_iframe);
  8340. _box.appendChild(_jie);
  8341. _formdiv = new U.UF.UI.form(
  8342. "项目设计",
  8343. _box, {
  8344. "id": "courseDesign" + cid + stage + task + tool,
  8345. "style": {
  8346. "width": "90%",
  8347. "height": "90%",
  8348. "overflow": 'hidden'
  8349. },
  8350. "onresize": function () { }
  8351. }, {
  8352. closecallback: function () { }
  8353. }, {
  8354. "style": {
  8355. "height": "36px"
  8356. }
  8357. }).form; //创建窗体
  8358. _taskbar = {
  8359. "id": str + _formdiv.id,
  8360. "style": {
  8361. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8362. },
  8363. "name": "项目设计",
  8364. "forms": _formdiv,
  8365. "click": function () {
  8366. U.MD.D.I.openApplication(str, obj, info);
  8367. }
  8368. }
  8369. break;
  8370. }
  8371. const script1 = document.createElement("script");
  8372. script1.type = "text/javascript";
  8373. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8374. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8375. const script2 = document.createElement("script");
  8376. script2.type = "text/javascript";
  8377. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8378. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8379. const script3 = document.createElement("script");
  8380. script3.type = "text/javascript";
  8381. script3.charset = "UTF-8";
  8382. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8383. const script4 = document.createElement("script");
  8384. script4.type = "text/javascript";
  8385. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8386. script4.src = window.origin + "/js/Common/jietu2E.js";
  8387. if (_iframe) {
  8388. if (str == 'doc') {
  8389. _iframe = _formdiv.querySelector('iframe')
  8390. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8391. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8392. _iframe.contentWindow.document.body.appendChild(script1);
  8393. _iframe.contentWindow.document.body.appendChild(script2);
  8394. // _iframe.contentWindow.document.body.appendChild(script3);
  8395. _iframe.contentWindow.document.body.appendChild(script4);
  8396. })
  8397. if (onloadListener) {
  8398. _iframe.contentDocument.location.reload()
  8399. } else {
  8400. _iframe.contentDocument.location.reload()
  8401. }
  8402. } else if (str == 'courseDesign') {
  8403. U.UF.DL.iframeLoad(_iframe, function () {
  8404. // _iframe.contentWindow.U.MD.O.W.load();
  8405. // _iframe.contentWindow.document.body.appendChild(script1);
  8406. _iframe.contentWindow.document.body.appendChild(script2);
  8407. _iframe.contentWindow.document.body.appendChild(script4);
  8408. })
  8409. } else if (str == 'mind') {
  8410. _iframe = _formdiv.querySelector('iframe')
  8411. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8412. //
  8413. _iframe.contentWindow.document.body.appendChild(script1);
  8414. _iframe.contentWindow.document.body.appendChild(script2);
  8415. _iframe.contentWindow.document.body.appendChild(script4);
  8416. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8417. })
  8418. if (onloadListener) {
  8419. _iframe.contentDocument.location.reload()
  8420. } else {
  8421. _iframe.contentDocument.location.reload()
  8422. }
  8423. } else if (str == 'whiteboard') {
  8424. _iframe = _formdiv.querySelector('iframe')
  8425. let onloadListener = _iframe.onload = () => {
  8426. _iframe.contentWindow.document.body.appendChild(script1);
  8427. _iframe.contentWindow.document.body.appendChild(script2);
  8428. _iframe.contentWindow.document.body.appendChild(script4);
  8429. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8430. };
  8431. // if (onloadListener) {
  8432. // try {
  8433. // _iframe.src += "?cocorobo="+new Date().getTime()
  8434. // _iframe.contentWindow.document.location.reload()
  8435. // } catch (error) {
  8436. // }
  8437. // } else {
  8438. // _iframe.contentDocument.location.reload()
  8439. // }
  8440. } else {
  8441. _iframe.onload = () => {
  8442. _iframe.contentWindow.document.body.appendChild(script1);
  8443. _iframe.contentWindow.document.body.appendChild(script2);
  8444. // _iframe.contentWindow.document.body.appendChild(script3);
  8445. _iframe.contentWindow.document.body.appendChild(script4);
  8446. };
  8447. }
  8448. _jie.onclick = async () => {
  8449. let text = ''
  8450. if (aTool == 1) {
  8451. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8452. } else if (aTool == 6) {
  8453. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8454. } else if (aTool == 3) {
  8455. text = await U.MD.D.I.getEditorContent(_iframe);
  8456. }
  8457. _loading.style.display = 'flex'
  8458. console.log(_loading);
  8459. var _ajs = _iframe.contentWindow.document.createElement("script");
  8460. _ajs.type = "text/javascript";
  8461. _ajs.innerHTML =
  8462. // 'console.log(' + _loading + ');\n' +
  8463. 'var _js = document.createElement("script");\n' +
  8464. '_js.type="text/javascript";\n' +
  8465. '_js.charset="UTF-8";\n' +
  8466. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8467. "_js.onload = function(){\n" +
  8468. ' var a = document.getElementsByTagName("img")\n' +
  8469. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8470. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8471. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8472. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8473. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8474. "beforeUpload_shishi(file," +
  8475. "'" +
  8476. _userid +
  8477. "'" +
  8478. ", " +
  8479. "'" +
  8480. _cid +
  8481. "'" +
  8482. ", " +
  8483. "'" +
  8484. _stage +
  8485. "'" +
  8486. ", " +
  8487. "'" +
  8488. _task +
  8489. "'" +
  8490. ", " +
  8491. "'" +
  8492. _tool +
  8493. "'" +
  8494. ", " +
  8495. "'" +
  8496. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8497. "'" +
  8498. ", " +
  8499. "'" +
  8500. aTool +
  8501. "'" +
  8502. ", " +
  8503. "`" +
  8504. text +
  8505. "`" +
  8506. ")\n" +
  8507. " });\n" +
  8508. "}\n" +
  8509. "document.head.appendChild(_js);\n";
  8510. _iframe.contentWindow.document.head.appendChild(_ajs);
  8511. }
  8512. }
  8513. //U.MD.D.I.openClick(str);
  8514. //如果有任务栏信息
  8515. // if (_taskbar) {
  8516. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8517. // }
  8518. }
  8519. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8520. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8521. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8522. _userid = student.userid, //登录用户id
  8523. _username = student.student //用户名字
  8524. let _iframe;
  8525. let _cid = cid,
  8526. _stage = stage,
  8527. _task = task,
  8528. _tool = tool;
  8529. var _jie = $$("div", {
  8530. "style": {
  8531. "position": "absolute",
  8532. "bottom": "50px",
  8533. "right": "50px",
  8534. "zIndex": "9999",
  8535. "backgroundColor": "#2268bc",
  8536. "color": "#fff",
  8537. "padding": "12px 20px",
  8538. "cursor": "pointer",
  8539. "borderRadius": "4px",
  8540. },
  8541. "innerHTML": "提交作业"
  8542. })
  8543. let aTool = ''
  8544. let _loading = document.createElement('div')
  8545. _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;"
  8546. // _loading.id = "";
  8547. let _lchild = document.createElement('div')
  8548. let _limg = document.createElement('img')
  8549. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8550. _limg.style = "width: 26px;margin-right: 10px;"
  8551. _lchild.appendChild(_limg)
  8552. let _lspan = document.createElement('span')
  8553. _lspan.innerHTML = "上传中..."
  8554. _lchild.appendChild(_lspan)
  8555. _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%);"
  8556. _loading.appendChild(_lchild)
  8557. var _box = $$('div', {
  8558. "style": {
  8559. "position": "relative",
  8560. "width": "100%",
  8561. "height": "100%",
  8562. },
  8563. })
  8564. _box.appendChild(_loading)
  8565. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8566. switch (str) {
  8567. case "whiteboard":
  8568. aTool = 1;
  8569. _iframe = $$("iframe", {
  8570. "frameborder": "no",
  8571. "border": "0",
  8572. "scrolling ": "no",
  8573. "style": {
  8574. "cssText": "border:0;width:100%;height:100%"
  8575. },
  8576. "src": "https://beta.iwb.cocorobo.cn/"
  8577. })
  8578. _box.appendChild(_iframe);
  8579. _box.appendChild(_jie);
  8580. _formdiv = new U.UF.UI.form(
  8581. "电子白板-" + _username,
  8582. _box, {
  8583. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8584. "style": {
  8585. "width": "90%",
  8586. "height": "90%",
  8587. "overflow": 'hidden'
  8588. },
  8589. "onresize": function () { }
  8590. }, {
  8591. closecallback: function () { }
  8592. }, {
  8593. "style": {
  8594. "height": "36px"
  8595. }
  8596. }).form; //创建窗体
  8597. _taskbar = {
  8598. "id": str + _formdiv.id,
  8599. "style": {
  8600. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8601. },
  8602. "name": "电子白板",
  8603. "forms": _formdiv,
  8604. "click": function () {
  8605. U.MD.D.I.openApplication(str, obj, info);
  8606. }
  8607. }
  8608. break;
  8609. case "mind":
  8610. aTool = 3;
  8611. _iframe = $$("iframe", {
  8612. "frameborder": "no",
  8613. "border": "0",
  8614. "scrolling ": "no",
  8615. "style": {
  8616. "cssText": "border:0;width:100%;height:100%"
  8617. },
  8618. "src": "/kityminder-editor/dist/index.html"
  8619. })
  8620. _box.appendChild(_iframe);
  8621. _box.appendChild(_jie);
  8622. _formdiv = new U.UF.UI.form(
  8623. "思维导图-" + _username,
  8624. _box, { //"/jsmind/example/demo.html"
  8625. "id": "mind" + cid + stage + task + tool + _userid,
  8626. "style": {
  8627. "width": "90%",
  8628. "height": "90%",
  8629. "overflow": 'hidden'
  8630. },
  8631. "onresize": function () { }
  8632. }, {
  8633. closecallback: function () { }
  8634. }, {
  8635. "style": {
  8636. "height": "36px"
  8637. }
  8638. }).form; //创建窗体
  8639. _taskbar = {
  8640. "id": str + _formdiv.id,
  8641. "style": {
  8642. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8643. },
  8644. "name": "思维导图",
  8645. "forms": _formdiv,
  8646. "click": function () {
  8647. U.MD.D.I.openApplication(str, obj, info);
  8648. }
  8649. }
  8650. break;
  8651. case "MindMap":
  8652. aTool = 3;
  8653. _iframe = $$("iframe", {
  8654. "frameborder": "no",
  8655. "border": "0",
  8656. "scrolling ": "no",
  8657. "style": {
  8658. "cssText": "border:0;width:100%;height:100%"
  8659. },
  8660. "src": "//cloud.cocorobo.cn/mind/"
  8661. })
  8662. _box.appendChild(_iframe);
  8663. _box.appendChild(_jie);
  8664. _formdiv = new U.UF.UI.form(
  8665. "思维导图-" + _username,
  8666. _box, { //"/jsmind/example/demo.html"
  8667. "id": "mind" + cid + stage + task + tool + _userid,
  8668. "style": {
  8669. "width": "90%",
  8670. "height": "90%",
  8671. "overflow": 'hidden'
  8672. },
  8673. "onresize": function () { }
  8674. }, {
  8675. closecallback: function () { }
  8676. }, {
  8677. "style": {
  8678. "height": "36px"
  8679. }
  8680. }).form; //创建窗体
  8681. _taskbar = {
  8682. "id": str + _formdiv.id,
  8683. "style": {
  8684. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8685. },
  8686. "name": "思维导图",
  8687. "forms": _formdiv,
  8688. "click": function () {
  8689. U.MD.D.I.openApplication(str, obj, info);
  8690. }
  8691. }
  8692. break;
  8693. case "doc":
  8694. aTool = 6;
  8695. _iframe = $$("iframe", {
  8696. "frameborder": "no",
  8697. "border": "0",
  8698. "scrolling ": "no",
  8699. "style": {
  8700. "cssText": "border:0;width:100%;height:100%"
  8701. },
  8702. "src": "/Office/Word/WordEditArea.htm"
  8703. })
  8704. _box.appendChild(_iframe);
  8705. _box.appendChild(_jie);
  8706. _formdiv = new U.UF.UI.form(
  8707. "协同文档-" + _username,
  8708. _box, {
  8709. "id": "doc" + cid + stage + task + tool + _userid,
  8710. "style": {
  8711. "width": "90%",
  8712. "height": "90%",
  8713. "overflow": 'hidden'
  8714. },
  8715. "onresize": function () { }
  8716. }, {
  8717. closecallback: function () { }
  8718. }, {
  8719. "style": {
  8720. "height": "36px"
  8721. }
  8722. }).form; //创建窗体
  8723. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8724. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8725. })
  8726. _taskbar = {
  8727. "id": str + _formdiv.id,
  8728. "style": {
  8729. "backgroundImage": "url(/img/icon/doc.png)"
  8730. },
  8731. "name": "协同文档",
  8732. "forms": _formdiv,
  8733. "click": function () {
  8734. U.MD.D.I.openApplication(str, obj, info);
  8735. }
  8736. }
  8737. break;
  8738. case "mindNetwork": //好友打开
  8739. aTool = 7;
  8740. _iframe = $$("iframe", {
  8741. "webkitallowfullscreen": "",
  8742. "mozallowfullscreen": "",
  8743. "allowfullscreen": "",
  8744. "frameborder": "no",
  8745. "border": "0",
  8746. "scrolling ": "no",
  8747. "style": {
  8748. "cssText": "border:0; width:100%; height:100%;"
  8749. },
  8750. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8751. })
  8752. _box.appendChild(_iframe);
  8753. _box.appendChild(_jie);
  8754. _formdiv = new U.UF.UI.form(
  8755. "思维网格-" + _username,
  8756. _box, {
  8757. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8758. "style": {
  8759. "width": "90%",
  8760. "height": "90%",
  8761. "overflow": 'hidden'
  8762. },
  8763. "onresize": function () { }
  8764. }, {
  8765. closecallback: function () { }
  8766. }, {
  8767. "style": {
  8768. "height": "36px"
  8769. }
  8770. }).form; //创建窗体
  8771. _taskbar = {
  8772. "id": str + _formdiv.id,
  8773. "style": {
  8774. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8775. },
  8776. "name": "思维网格",
  8777. "forms": _formdiv,
  8778. "click": function () {
  8779. U.MD.D.I.openApplication(str, obj, info);
  8780. }
  8781. }
  8782. break;
  8783. case "courseDesign":
  8784. _iframe = $$("iframe", {
  8785. "webkitallowfullscreen": "",
  8786. "mozallowfullscreen": "",
  8787. "allowfullscreen": "",
  8788. "frameborder": "no",
  8789. "border": "0",
  8790. "scrolling ": "no",
  8791. "style": {
  8792. "cssText": "border:0; width:100%; height:100%;"
  8793. },
  8794. "src": "/course-design-vue"
  8795. })
  8796. _box.appendChild(_iframe);
  8797. _box.appendChild(_jie);
  8798. _formdiv = new U.UF.UI.form(
  8799. "项目设计-" + _username,
  8800. _box, {
  8801. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8802. "style": {
  8803. "width": "90%",
  8804. "height": "90%",
  8805. "overflow": 'hidden'
  8806. },
  8807. "onresize": function () { }
  8808. }, {
  8809. closecallback: function () { }
  8810. }, {
  8811. "style": {
  8812. "height": "36px"
  8813. }
  8814. }).form; //创建窗体
  8815. _taskbar = {
  8816. "id": str + _formdiv.id,
  8817. "style": {
  8818. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8819. },
  8820. "name": "项目设计",
  8821. "forms": _formdiv,
  8822. "click": function () {
  8823. U.MD.D.I.openApplication(str, obj, info);
  8824. }
  8825. }
  8826. break;
  8827. }
  8828. const script1 = document.createElement("script");
  8829. script1.type = "text/javascript";
  8830. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8831. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8832. const script2 = document.createElement("script");
  8833. script2.type = "text/javascript";
  8834. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8835. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8836. const script3 = document.createElement("script");
  8837. script3.type = "text/javascript";
  8838. script3.charset = "UTF-8";
  8839. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8840. const script4 = document.createElement("script");
  8841. script4.type = "text/javascript";
  8842. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8843. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8844. if (_iframe) {
  8845. if (str == 'doc') {
  8846. _iframe = _formdiv.querySelector('iframe')
  8847. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8848. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8849. _iframe.contentWindow.document.body.appendChild(script1);
  8850. _iframe.contentWindow.document.body.appendChild(script2);
  8851. // _iframe.contentWindow.document.body.appendChild(script3);
  8852. _iframe.contentWindow.document.body.appendChild(script4);
  8853. })
  8854. if (onloadListener) {
  8855. _iframe.contentDocument.location.reload()
  8856. } else {
  8857. _iframe.contentDocument.location.reload()
  8858. }
  8859. } else if (str == 'courseDesign') {
  8860. U.UF.DL.iframeLoad(_iframe, function () {
  8861. // _iframe.contentWindow.U.MD.O.W.load();
  8862. // _iframe.contentWindow.document.body.appendChild(script1);
  8863. _iframe.contentWindow.document.body.appendChild(script2);
  8864. _iframe.contentWindow.document.body.appendChild(script4);
  8865. })
  8866. } else if (str == 'mind') {
  8867. _iframe = _formdiv.querySelector('iframe')
  8868. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8869. //
  8870. _iframe.contentWindow.document.body.appendChild(script1);
  8871. _iframe.contentWindow.document.body.appendChild(script2);
  8872. _iframe.contentWindow.document.body.appendChild(script4);
  8873. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8874. })
  8875. if (onloadListener) {
  8876. _iframe.contentDocument.location.reload()
  8877. } else {
  8878. _iframe.contentDocument.location.reload()
  8879. }
  8880. } else if (str == 'whiteboard') {
  8881. _iframe = _formdiv.querySelector('iframe')
  8882. let onloadListener = _iframe.onload = () => {
  8883. _iframe.contentWindow.document.body.appendChild(script1);
  8884. _iframe.contentWindow.document.body.appendChild(script2);
  8885. _iframe.contentWindow.document.body.appendChild(script4);
  8886. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8887. };
  8888. // if (onloadListener) {
  8889. // try {
  8890. // _iframe.src += "?cocorobo="+new Date().getTime()
  8891. // _iframe.contentWindow.document.location.reload()
  8892. // } catch (error) {
  8893. // }
  8894. // } else {
  8895. // _iframe.contentDocument.location.reload()
  8896. // }
  8897. } else {
  8898. _iframe.onload = () => {
  8899. _iframe.contentWindow.document.body.appendChild(script1);
  8900. _iframe.contentWindow.document.body.appendChild(script2);
  8901. // _iframe.contentWindow.document.body.appendChild(script3);
  8902. _iframe.contentWindow.document.body.appendChild(script4);
  8903. };
  8904. }
  8905. _jie.onclick = async () => {
  8906. let text = ''
  8907. if (aTool == 1) {
  8908. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8909. } else if (aTool == 6) {
  8910. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8911. } else if (aTool == 3) {
  8912. text = await U.MD.D.I.getEditorContent(_iframe);
  8913. }
  8914. _loading.style.display = 'flex'
  8915. console.log(_loading);
  8916. var _ajs = _iframe.contentWindow.document.createElement("script");
  8917. _ajs.type = "text/javascript";
  8918. _ajs.innerHTML =
  8919. // 'console.log(' + _loading + ');\n' +
  8920. 'var _js = document.createElement("script");\n' +
  8921. '_js.type="text/javascript";\n' +
  8922. '_js.charset="UTF-8";\n' +
  8923. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8924. "_js.onload = function(){\n" +
  8925. ' var a = document.getElementsByTagName("img")\n' +
  8926. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8927. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8928. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8929. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8930. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8931. "beforeUpload_shishi(file," +
  8932. "'" +
  8933. _userid +
  8934. "'" +
  8935. ", " +
  8936. "'" +
  8937. _cid +
  8938. "'" +
  8939. ", " +
  8940. "'" +
  8941. _stage +
  8942. "'" +
  8943. ", " +
  8944. "'" +
  8945. _task +
  8946. "'" +
  8947. ", " +
  8948. "'" +
  8949. _tool +
  8950. "'" +
  8951. ", " +
  8952. "'" +
  8953. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8954. "'" +
  8955. ", " +
  8956. "'" +
  8957. aTool +
  8958. "'" +
  8959. ", " +
  8960. "`" +
  8961. text +
  8962. "`" +
  8963. ")\n" +
  8964. " });\n" +
  8965. "}\n" +
  8966. "document.head.appendChild(_js);\n";
  8967. _iframe.contentWindow.document.head.appendChild(_ajs);
  8968. }
  8969. }
  8970. }
  8971. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8972. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8973. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8974. _userid = student.userid, //登录用户id
  8975. _username = student.student //用户名字
  8976. let _iframe;
  8977. let _cid = cid,
  8978. _stage = stage,
  8979. _task = task,
  8980. _tool = tool;
  8981. var _jie = $$("div", {
  8982. "style": {
  8983. "position": "absolute",
  8984. "bottom": "50px",
  8985. "right": "50px",
  8986. "zIndex": "9999",
  8987. "backgroundColor": "#2268bc",
  8988. "color": "#fff",
  8989. "padding": "12px 20px",
  8990. "cursor": "pointer",
  8991. "borderRadius": "4px",
  8992. },
  8993. "innerHTML": "提交作业"
  8994. })
  8995. let aTool = ''
  8996. let _loading = document.createElement('div')
  8997. _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;"
  8998. // _loading.id = "";
  8999. let _lchild = document.createElement('div')
  9000. let _limg = document.createElement('img')
  9001. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9002. _limg.style = "width: 26px;margin-right: 10px;"
  9003. _lchild.appendChild(_limg)
  9004. let _lspan = document.createElement('span')
  9005. _lspan.innerHTML = "上传中..."
  9006. _lchild.appendChild(_lspan)
  9007. _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%);"
  9008. _loading.appendChild(_lchild)
  9009. var _box = $$('div', {
  9010. "style": {
  9011. "position": "relative",
  9012. "width": "100%",
  9013. "height": "100%",
  9014. },
  9015. })
  9016. _box.appendChild(_loading)
  9017. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9018. switch (str) {
  9019. case "whiteboard":
  9020. aTool = 1;
  9021. _iframe = $$("iframe", {
  9022. "frameborder": "no",
  9023. "border": "0",
  9024. "scrolling ": "no",
  9025. "style": {
  9026. "cssText": "border:0;width:100%;height:100%"
  9027. },
  9028. "src": "https://beta.iwb.cocorobo.cn/"
  9029. })
  9030. _box.appendChild(_iframe);
  9031. _box.appendChild(_jie);
  9032. _formdiv = new U.UF.UI.form(
  9033. "电子白板-" + _username,
  9034. _box, {
  9035. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9036. "style": {
  9037. "width": "90%",
  9038. "height": "90%",
  9039. "overflow": 'hidden'
  9040. },
  9041. "onresize": function () { }
  9042. }, {
  9043. closecallback: function () { }
  9044. }, {
  9045. "style": {
  9046. "height": "36px"
  9047. }
  9048. }).form; //创建窗体
  9049. _taskbar = {
  9050. "id": str + _formdiv.id,
  9051. "style": {
  9052. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9053. },
  9054. "name": "电子白板",
  9055. "forms": _formdiv,
  9056. "click": function () {
  9057. U.MD.D.I.openApplication(str, obj, info);
  9058. }
  9059. }
  9060. break;
  9061. case "mind":
  9062. aTool = 3;
  9063. _iframe = $$("iframe", {
  9064. "frameborder": "no",
  9065. "border": "0",
  9066. "scrolling ": "no",
  9067. "style": {
  9068. "cssText": "border:0;width:100%;height:100%"
  9069. },
  9070. "src": "/kityminder-editor/dist/index.html"
  9071. })
  9072. _box.appendChild(_iframe);
  9073. _box.appendChild(_jie);
  9074. _formdiv = new U.UF.UI.form(
  9075. "思维导图-" + _username,
  9076. _box, { //"/jsmind/example/demo.html"
  9077. "id": "mind" + cid + stage + task + tool + _userid,
  9078. "style": {
  9079. "width": "90%",
  9080. "height": "90%",
  9081. "overflow": 'hidden'
  9082. },
  9083. "onresize": function () { }
  9084. }, {
  9085. closecallback: function () { }
  9086. }, {
  9087. "style": {
  9088. "height": "36px"
  9089. }
  9090. }).form; //创建窗体
  9091. _taskbar = {
  9092. "id": str + _formdiv.id,
  9093. "style": {
  9094. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9095. },
  9096. "name": "思维导图",
  9097. "forms": _formdiv,
  9098. "click": function () {
  9099. U.MD.D.I.openApplication(str, obj, info);
  9100. }
  9101. }
  9102. break;
  9103. case "MindMap":
  9104. aTool = 3;
  9105. _iframe = $$("iframe", {
  9106. "frameborder": "no",
  9107. "border": "0",
  9108. "scrolling ": "no",
  9109. "style": {
  9110. "cssText": "border:0;width:100%;height:100%"
  9111. },
  9112. "src": "//cloud.cocorobo.cn/mind/"
  9113. })
  9114. _box.appendChild(_iframe);
  9115. _box.appendChild(_jie);
  9116. _formdiv = new U.UF.UI.form(
  9117. "思维导图-" + _username,
  9118. _box, { //"/jsmind/example/demo.html"
  9119. "id": "mind" + cid + stage + task + tool + _userid,
  9120. "style": {
  9121. "width": "90%",
  9122. "height": "90%",
  9123. "overflow": 'hidden'
  9124. },
  9125. "onresize": function () { }
  9126. }, {
  9127. closecallback: function () { }
  9128. }, {
  9129. "style": {
  9130. "height": "36px"
  9131. }
  9132. }).form; //创建窗体
  9133. _taskbar = {
  9134. "id": str + _formdiv.id,
  9135. "style": {
  9136. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9137. },
  9138. "name": "思维导图",
  9139. "forms": _formdiv,
  9140. "click": function () {
  9141. U.MD.D.I.openApplication(str, obj, info);
  9142. }
  9143. }
  9144. break;
  9145. case "doc":
  9146. aTool = 6;
  9147. _iframe = $$("iframe", {
  9148. "frameborder": "no",
  9149. "border": "0",
  9150. "scrolling ": "no",
  9151. "style": {
  9152. "cssText": "border:0;width:100%;height:100%"
  9153. },
  9154. "src": "/Office/Word/WordEditArea.htm"
  9155. })
  9156. _box.appendChild(_iframe);
  9157. _box.appendChild(_jie);
  9158. _formdiv = new U.UF.UI.form(
  9159. "协同文档-" + _username,
  9160. _box, {
  9161. "id": "doc" + cid + stage + task + tool + _userid,
  9162. "style": {
  9163. "width": "90%",
  9164. "height": "90%",
  9165. "overflow": 'hidden'
  9166. },
  9167. "onresize": function () { }
  9168. }, {
  9169. closecallback: function () { }
  9170. }, {
  9171. "style": {
  9172. "height": "36px"
  9173. }
  9174. }).form; //创建窗体
  9175. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9176. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9177. })
  9178. _taskbar = {
  9179. "id": str + _formdiv.id,
  9180. "style": {
  9181. "backgroundImage": "url(/img/icon/doc.png)"
  9182. },
  9183. "name": "协同文档",
  9184. "forms": _formdiv,
  9185. "click": function () {
  9186. U.MD.D.I.openApplication(str, obj, info);
  9187. }
  9188. }
  9189. break;
  9190. case "mindNetwork": //好友打开
  9191. aTool = 7;
  9192. _iframe = $$("iframe", {
  9193. "webkitallowfullscreen": "",
  9194. "mozallowfullscreen": "",
  9195. "allowfullscreen": "",
  9196. "frameborder": "no",
  9197. "border": "0",
  9198. "scrolling ": "no",
  9199. "style": {
  9200. "cssText": "border:0; width:100%; height:100%;"
  9201. },
  9202. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9203. })
  9204. _box.appendChild(_iframe);
  9205. _box.appendChild(_jie);
  9206. _formdiv = new U.UF.UI.form(
  9207. "思维网格-" + _username,
  9208. _box, {
  9209. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9210. "style": {
  9211. "width": "90%",
  9212. "height": "90%",
  9213. "overflow": 'hidden'
  9214. },
  9215. "onresize": function () { }
  9216. }, {
  9217. closecallback: function () { }
  9218. }, {
  9219. "style": {
  9220. "height": "36px"
  9221. }
  9222. }).form; //创建窗体
  9223. _taskbar = {
  9224. "id": str + _formdiv.id,
  9225. "style": {
  9226. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9227. },
  9228. "name": "思维网格",
  9229. "forms": _formdiv,
  9230. "click": function () {
  9231. U.MD.D.I.openApplication(str, obj, info);
  9232. }
  9233. }
  9234. break;
  9235. case "courseDesign":
  9236. _iframe = $$("iframe", {
  9237. "webkitallowfullscreen": "",
  9238. "mozallowfullscreen": "",
  9239. "allowfullscreen": "",
  9240. "frameborder": "no",
  9241. "border": "0",
  9242. "scrolling ": "no",
  9243. "style": {
  9244. "cssText": "border:0; width:100%; height:100%;"
  9245. },
  9246. "src": "/course-design-vue"
  9247. })
  9248. _box.appendChild(_iframe);
  9249. _box.appendChild(_jie);
  9250. _formdiv = new U.UF.UI.form(
  9251. "项目设计-" + _username,
  9252. _box, {
  9253. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9254. "style": {
  9255. "width": "90%",
  9256. "height": "90%",
  9257. "overflow": 'hidden'
  9258. },
  9259. "onresize": function () { }
  9260. }, {
  9261. closecallback: function () { }
  9262. }, {
  9263. "style": {
  9264. "height": "36px"
  9265. }
  9266. }).form; //创建窗体
  9267. _taskbar = {
  9268. "id": str + _formdiv.id,
  9269. "style": {
  9270. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9271. },
  9272. "name": "项目设计",
  9273. "forms": _formdiv,
  9274. "click": function () {
  9275. U.MD.D.I.openApplication(str, obj, info);
  9276. }
  9277. }
  9278. break;
  9279. }
  9280. const script1 = document.createElement("script");
  9281. script1.type = "text/javascript";
  9282. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9283. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9284. const script2 = document.createElement("script");
  9285. script2.type = "text/javascript";
  9286. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9287. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9288. const script3 = document.createElement("script");
  9289. script3.type = "text/javascript";
  9290. script3.charset = "UTF-8";
  9291. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9292. const script4 = document.createElement("script");
  9293. script4.type = "text/javascript";
  9294. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9295. script4.src = window.origin + "/js/Common/jietu2E.js";
  9296. if (_iframe) {
  9297. if (str == 'doc') {
  9298. _iframe = _formdiv.querySelector('iframe')
  9299. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9300. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9301. _iframe.contentWindow.document.body.appendChild(script1);
  9302. _iframe.contentWindow.document.body.appendChild(script2);
  9303. // _iframe.contentWindow.document.body.appendChild(script3);
  9304. _iframe.contentWindow.document.body.appendChild(script4);
  9305. })
  9306. if (onloadListener) {
  9307. _iframe.contentDocument.location.reload()
  9308. } else {
  9309. _iframe.contentDocument.location.reload()
  9310. }
  9311. } else if (str == 'courseDesign') {
  9312. U.UF.DL.iframeLoad(_iframe, function () {
  9313. // _iframe.contentWindow.U.MD.O.W.load();
  9314. // _iframe.contentWindow.document.body.appendChild(script1);
  9315. _iframe.contentWindow.document.body.appendChild(script2);
  9316. _iframe.contentWindow.document.body.appendChild(script4);
  9317. })
  9318. } else if (str == 'mind') {
  9319. _iframe = _formdiv.querySelector('iframe')
  9320. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9321. //
  9322. _iframe.contentWindow.document.body.appendChild(script1);
  9323. _iframe.contentWindow.document.body.appendChild(script2);
  9324. _iframe.contentWindow.document.body.appendChild(script4);
  9325. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9326. })
  9327. if (onloadListener) {
  9328. _iframe.contentDocument.location.reload()
  9329. } else {
  9330. _iframe.contentDocument.location.reload()
  9331. }
  9332. } else if (str == 'whiteboard') {
  9333. _iframe = _formdiv.querySelector('iframe')
  9334. let onloadListener = _iframe.onload = () => {
  9335. _iframe.contentWindow.document.body.appendChild(script1);
  9336. _iframe.contentWindow.document.body.appendChild(script2);
  9337. _iframe.contentWindow.document.body.appendChild(script4);
  9338. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9339. };
  9340. // if (onloadListener) {
  9341. // try {
  9342. // _iframe.src += "?cocorobo="+new Date().getTime()
  9343. // _iframe.contentWindow.document.location.reload()
  9344. // } catch (error) {
  9345. // }
  9346. // } else {
  9347. // _iframe.contentDocument.location.reload()
  9348. // }
  9349. } else {
  9350. _iframe.onload = () => {
  9351. _iframe.contentWindow.document.body.appendChild(script1);
  9352. _iframe.contentWindow.document.body.appendChild(script2);
  9353. // _iframe.contentWindow.document.body.appendChild(script3);
  9354. _iframe.contentWindow.document.body.appendChild(script4);
  9355. };
  9356. }
  9357. _jie.onclick = async () => {
  9358. let text = ''
  9359. if (aTool == 1) {
  9360. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9361. } else if (aTool == 6) {
  9362. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9363. } else if (aTool == 3) {
  9364. text = await U.MD.D.I.getEditorContent(_iframe);
  9365. }
  9366. _loading.style.display = 'flex'
  9367. console.log(_loading);
  9368. var _ajs = _iframe.contentWindow.document.createElement("script");
  9369. _ajs.type = "text/javascript";
  9370. _ajs.innerHTML =
  9371. // 'console.log(' + _loading + ');\n' +
  9372. 'var _js = document.createElement("script");\n' +
  9373. '_js.type="text/javascript";\n' +
  9374. '_js.charset="UTF-8";\n' +
  9375. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9376. "_js.onload = function(){\n" +
  9377. ' var a = document.getElementsByTagName("img")\n' +
  9378. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9379. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9380. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9381. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9382. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9383. "beforeUpload_shishi(file," +
  9384. "'" +
  9385. _userid +
  9386. "'" +
  9387. ", " +
  9388. "'" +
  9389. _cid +
  9390. "'" +
  9391. ", " +
  9392. "'" +
  9393. _stage +
  9394. "'" +
  9395. ", " +
  9396. "'" +
  9397. _task +
  9398. "'" +
  9399. ", " +
  9400. "'" +
  9401. _tool +
  9402. "'" +
  9403. ", " +
  9404. "'" +
  9405. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9406. "'" +
  9407. ", " +
  9408. "'" +
  9409. aTool +
  9410. "'" +
  9411. ", " +
  9412. "`" +
  9413. text +
  9414. "`" +
  9415. ")\n" +
  9416. " });\n" +
  9417. "}\n" +
  9418. "document.head.appendChild(_js);\n";
  9419. _iframe.contentWindow.document.head.appendChild(_ajs);
  9420. }
  9421. }
  9422. }
  9423. U.MD.D.I.getEditorContent = function (iframe) {
  9424. return new Promise((resolve, reject) => {
  9425. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9426. console.log(content);
  9427. resolve(content)
  9428. });
  9429. });
  9430. }
  9431. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9432. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9433. // if (res.value[0].length > 0) {
  9434. // // resolve(res.value[0][0].text);
  9435. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9436. // $(fileInput).val('');
  9437. // });
  9438. // }
  9439. // }, [], { "type": "GET", "withCredentials": true });
  9440. var xmlhttp;
  9441. var Mac, Sn, DeviceId
  9442. if (window.XMLHttpRequest) {
  9443. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9444. xmlhttp = new XMLHttpRequest();
  9445. } else {
  9446. // IE6, IE5 浏览器执行代码
  9447. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9448. }
  9449. xmlhttp.onreadystatechange = function () {
  9450. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9451. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9452. // resolve(res.value[0][0].text);
  9453. if (type == '2') {
  9454. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9455. } else if (type == '3') {
  9456. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9457. }
  9458. } else {
  9459. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9460. }
  9461. }
  9462. }
  9463. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9464. xmlhttp.send();
  9465. }
  9466. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9467. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9468. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9469. _userinfo = US.userInfo, //登录用户信息
  9470. _userid = US.userInfo.userid //登录用户id
  9471. let _iframe;
  9472. let _cid = cid,
  9473. _stage = stage,
  9474. _task = task,
  9475. _tool = tool;
  9476. var _jie = $$("div", {
  9477. "style": {
  9478. "position": "absolute",
  9479. "bottom": "50px",
  9480. "right": "50px",
  9481. "zIndex": "9999",
  9482. "backgroundColor": "#2268bc",
  9483. "color": "#fff",
  9484. "padding": "12px 20px",
  9485. "cursor": "pointer",
  9486. "borderRadius": "4px",
  9487. },
  9488. "innerHTML": "确认并提交"
  9489. })
  9490. let aTool = ''
  9491. let _loading = document.createElement('div')
  9492. _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;"
  9493. // _loading.id = "";
  9494. let _lchild = document.createElement('div')
  9495. let _limg = document.createElement('img')
  9496. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9497. _limg.style = "width: 26px;margin-right: 10px;"
  9498. _lchild.appendChild(_limg)
  9499. let _lspan = document.createElement('span')
  9500. _lspan.innerHTML = "上传中..."
  9501. _lchild.appendChild(_lspan)
  9502. _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%);"
  9503. _loading.appendChild(_lchild)
  9504. var _box = $$('div', {
  9505. "style": {
  9506. "position": "relative",
  9507. "width": "100%",
  9508. "height": "100%",
  9509. },
  9510. })
  9511. _box.appendChild(_loading)
  9512. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9513. switch (str) {
  9514. case "whiteboard":
  9515. aTool = 1;
  9516. _iframe = $$("iframe", {
  9517. "frameborder": "no",
  9518. "border": "0",
  9519. "scrolling ": "no",
  9520. "style": {
  9521. "cssText": "border:0;width:100%;height:100%"
  9522. },
  9523. "src": "https://beta.iwb.cocorobo.cn/"
  9524. })
  9525. _box.appendChild(_iframe);
  9526. _box.appendChild(_jie);
  9527. _formdiv = new U.UF.UI.form(
  9528. "电子白板",
  9529. _box, {
  9530. "id": "whiteboards" + cid + stage + task + tool,
  9531. "style": {
  9532. "width": "90%",
  9533. "height": "90%",
  9534. "overflow": 'hidden'
  9535. },
  9536. "onresize": function () { }
  9537. }, {
  9538. closecallback: function () { }
  9539. }, {
  9540. "style": {
  9541. "height": "36px"
  9542. }
  9543. }).form; //创建窗体
  9544. _taskbar = {
  9545. "id": str + _formdiv.id,
  9546. "style": {
  9547. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9548. },
  9549. "name": "电子白板",
  9550. "forms": _formdiv,
  9551. "click": function () {
  9552. U.MD.D.I.openApplication(str, obj, info);
  9553. }
  9554. }
  9555. break;
  9556. case "mind":
  9557. aTool = 3;
  9558. _iframe = $$("iframe", {
  9559. "frameborder": "no",
  9560. "border": "0",
  9561. "scrolling ": "no",
  9562. "style": {
  9563. "cssText": "border:0;width:100%;height:100%"
  9564. },
  9565. "src": "/kityminder-editor/dist/index.html"
  9566. });
  9567. _box.appendChild(_iframe);
  9568. _box.appendChild(_jie);
  9569. _formdiv = new U.UF.UI.form(
  9570. "思维导图",
  9571. _box, { //"/jsmind/example/demo.html"
  9572. "id": "minds" + cid + stage + task + tool,
  9573. "style": {
  9574. "width": "90%",
  9575. "height": "90%",
  9576. "overflow": 'hidden'
  9577. },
  9578. "onresize": function () { }
  9579. }, {
  9580. closecallback: function () { }
  9581. }, {
  9582. "style": {
  9583. "height": "36px"
  9584. }
  9585. }).form; //创建窗体
  9586. _taskbar = {
  9587. "id": str + _formdiv.id,
  9588. "style": {
  9589. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9590. },
  9591. "name": "思维导图",
  9592. "forms": _formdiv,
  9593. "click": function () {
  9594. U.MD.D.I.openApplication(str, obj, info);
  9595. }
  9596. }
  9597. break;
  9598. case "doc":
  9599. aTool = 6;
  9600. _iframe = $$("iframe", {
  9601. "frameborder": "no",
  9602. "border": "0",
  9603. "scrolling ": "no",
  9604. "style": {
  9605. "cssText": "border:0;width:100%;height:100%"
  9606. },
  9607. "src": "/Office/Word/WordEditArea.htm"
  9608. })
  9609. _box.appendChild(_iframe);
  9610. _box.appendChild(_jie);
  9611. _formdiv = new U.UF.UI.form(
  9612. "协同文档",
  9613. _box, {
  9614. "id": "docs" + cid + stage + task + tool,
  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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9629. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9630. })
  9631. _taskbar = {
  9632. "id": str + _formdiv.id,
  9633. "style": {
  9634. "backgroundImage": "url(/img/icon/doc.png)"
  9635. },
  9636. "name": "协同文档",
  9637. "forms": _formdiv,
  9638. "click": function () {
  9639. U.MD.D.I.openApplication(str, obj, info);
  9640. }
  9641. }
  9642. break;
  9643. }
  9644. const script1 = document.createElement("script");
  9645. script1.type = "text/javascript";
  9646. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9647. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9648. const script2 = document.createElement("script");
  9649. script2.type = "text/javascript";
  9650. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9651. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9652. const script3 = document.createElement("script");
  9653. script3.type = "text/javascript";
  9654. script3.charset = "UTF-8";
  9655. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9656. const script4 = document.createElement("script");
  9657. script4.type = "text/javascript";
  9658. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9659. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9660. if (_iframe) {
  9661. if (str == 'doc') {
  9662. _iframe = _formdiv.querySelector('iframe')
  9663. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9664. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9665. _iframe.contentWindow.document.body.appendChild(script1);
  9666. _iframe.contentWindow.document.body.appendChild(script2);
  9667. // _iframe.contentWindow.document.body.appendChild(script3);
  9668. _iframe.contentWindow.document.body.appendChild(script4);
  9669. })
  9670. if (onloadListener) {
  9671. _iframe.contentDocument.location.reload()
  9672. } else {
  9673. _iframe.contentDocument.location.reload()
  9674. }
  9675. } else if (str == 'mind') {
  9676. _iframe = _formdiv.querySelector('iframe')
  9677. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9678. _iframe.contentWindow.document.body.appendChild(script1);
  9679. _iframe.contentWindow.document.body.appendChild(script2);
  9680. _iframe.contentWindow.document.body.appendChild(script4);
  9681. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9682. })
  9683. if (onloadListener) {
  9684. _iframe.contentDocument.location.reload()
  9685. } else {
  9686. _iframe.contentDocument.location.reload()
  9687. }
  9688. } else {
  9689. _iframe.onload = () => {
  9690. _iframe.contentWindow.document.body.appendChild(script1);
  9691. _iframe.contentWindow.document.body.appendChild(script2);
  9692. // _iframe.contentWindow.document.body.appendChild(script3);
  9693. _iframe.contentWindow.document.body.appendChild(script4);
  9694. };
  9695. }
  9696. _jie.onclick = async () => {
  9697. let text = ''
  9698. if (aTool == 6) {
  9699. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9700. } else if (aTool == 3) {
  9701. text = await U.MD.D.I.getEditorContent(_iframe);
  9702. }
  9703. _loading.style.display = 'flex'
  9704. console.log(_loading);
  9705. var _ajs = _iframe.contentWindow.document.createElement("script");
  9706. _ajs.type = "text/javascript";
  9707. _ajs.innerHTML =
  9708. // 'console.log(' + _loading + ');\n' +
  9709. 'var _js = document.createElement("script");\n' +
  9710. '_js.type="text/javascript";\n' +
  9711. '_js.charset="UTF-8";\n' +
  9712. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9713. "_js.onload = function(){\n" +
  9714. ' var a = document.getElementsByTagName("img")\n' +
  9715. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9716. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9717. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9718. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9719. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9720. "beforeUpload_shishi(file," +
  9721. "'" +
  9722. _userid +
  9723. "'" +
  9724. ", " +
  9725. "'" +
  9726. _cid +
  9727. "'" +
  9728. ", " +
  9729. "'" +
  9730. _stage +
  9731. "'" +
  9732. ", " +
  9733. "'" +
  9734. _task +
  9735. "'" +
  9736. ", " +
  9737. "'" +
  9738. _tool +
  9739. "'" +
  9740. ", " +
  9741. "'" +
  9742. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9743. "'" +
  9744. ", " +
  9745. "'" +
  9746. aTool +
  9747. "'" +
  9748. ", " +
  9749. "`" +
  9750. text +
  9751. "`" +
  9752. ")\n" +
  9753. " });\n" +
  9754. "}\n" +
  9755. "document.head.appendChild(_js);\n";
  9756. _iframe.contentWindow.document.head.appendChild(_ajs);
  9757. }
  9758. }
  9759. //U.MD.D.I.openClick(str);
  9760. //如果有任务栏信息
  9761. // if (_taskbar) {
  9762. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9763. // }
  9764. }
  9765. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9766. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9767. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9768. _userinfo = US.userInfo, //登录用户信息
  9769. _userid = US.userInfo.userid //登录用户id
  9770. let _iframe;
  9771. let _cid = cid,
  9772. _stage = stage,
  9773. _task = task,
  9774. _tool = tool;
  9775. var _jie = $$("div", {
  9776. "style": {
  9777. "position": "absolute",
  9778. "bottom": "50px",
  9779. "right": "50px",
  9780. "zIndex": "9999",
  9781. "backgroundColor": "#2268bc",
  9782. "color": "#fff",
  9783. "padding": "12px 20px",
  9784. "cursor": "pointer",
  9785. "borderRadius": "4px",
  9786. },
  9787. "innerHTML": "确认并提交"
  9788. })
  9789. let aTool = ''
  9790. let _loading = document.createElement('div')
  9791. _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;"
  9792. // _loading.id = "";
  9793. let _lchild = document.createElement('div')
  9794. let _limg = document.createElement('img')
  9795. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9796. _limg.style = "width: 26px;margin-right: 10px;"
  9797. _lchild.appendChild(_limg)
  9798. let _lspan = document.createElement('span')
  9799. _lspan.innerHTML = "上传中..."
  9800. _lchild.appendChild(_lspan)
  9801. _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%);"
  9802. _loading.appendChild(_lchild)
  9803. var _box = $$('div', {
  9804. "style": {
  9805. "position": "relative",
  9806. "width": "100%",
  9807. "height": "100%",
  9808. },
  9809. })
  9810. _box.appendChild(_loading)
  9811. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9812. switch (str) {
  9813. case "whiteboard":
  9814. aTool = 1;
  9815. _iframe = $$("iframe", {
  9816. "frameborder": "no",
  9817. "border": "0",
  9818. "scrolling ": "no",
  9819. "style": {
  9820. "cssText": "border:0;width:100%;height:100%"
  9821. },
  9822. "src": "https://beta.iwb.cocorobo.cn/"
  9823. })
  9824. _box.appendChild(_iframe);
  9825. _box.appendChild(_jie);
  9826. _formdiv = new U.UF.UI.form(
  9827. "电子白板",
  9828. _box, {
  9829. "id": "whiteboards" + cid + stage + task + tool,
  9830. "style": {
  9831. "width": "90%",
  9832. "height": "90%",
  9833. "overflow": 'hidden'
  9834. },
  9835. "onresize": function () { }
  9836. }, {
  9837. closecallback: function () { }
  9838. }, {
  9839. "style": {
  9840. "height": "36px"
  9841. }
  9842. }).form; //创建窗体
  9843. _taskbar = {
  9844. "id": str + _formdiv.id,
  9845. "style": {
  9846. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9847. },
  9848. "name": "电子白板",
  9849. "forms": _formdiv,
  9850. "click": function () {
  9851. U.MD.D.I.openApplication(str, obj, info);
  9852. }
  9853. }
  9854. break;
  9855. case "mind":
  9856. aTool = 3;
  9857. _iframe = $$("iframe", {
  9858. "frameborder": "no",
  9859. "border": "0",
  9860. "scrolling ": "no",
  9861. "style": {
  9862. "cssText": "border:0;width:100%;height:100%"
  9863. },
  9864. "src": "/kityminder-editor/dist/index.html"
  9865. });
  9866. _box.appendChild(_iframe);
  9867. _box.appendChild(_jie);
  9868. _formdiv = new U.UF.UI.form(
  9869. "思维导图",
  9870. _box, { //"/jsmind/example/demo.html"
  9871. "id": "minds" + cid + stage + task + tool,
  9872. "style": {
  9873. "width": "90%",
  9874. "height": "90%",
  9875. "overflow": 'hidden'
  9876. },
  9877. "onresize": function () { }
  9878. }, {
  9879. closecallback: function () { }
  9880. }, {
  9881. "style": {
  9882. "height": "36px"
  9883. }
  9884. }).form; //创建窗体
  9885. _taskbar = {
  9886. "id": str + _formdiv.id,
  9887. "style": {
  9888. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9889. },
  9890. "name": "思维导图",
  9891. "forms": _formdiv,
  9892. "click": function () {
  9893. U.MD.D.I.openApplication(str, obj, info);
  9894. }
  9895. }
  9896. break;
  9897. case "doc":
  9898. aTool = 6;
  9899. _iframe = $$("iframe", {
  9900. "frameborder": "no",
  9901. "border": "0",
  9902. "scrolling ": "no",
  9903. "style": {
  9904. "cssText": "border:0;width:100%;height:100%"
  9905. },
  9906. "src": "/Office/Word/WordEditArea.htm"
  9907. })
  9908. _box.appendChild(_iframe);
  9909. _box.appendChild(_jie);
  9910. _formdiv = new U.UF.UI.form(
  9911. "协同文档",
  9912. _box, {
  9913. "id": "docs" + cid + stage + task + tool,
  9914. "style": {
  9915. "width": "90%",
  9916. "height": "90%",
  9917. "overflow": 'hidden'
  9918. },
  9919. "onresize": function () { }
  9920. }, {
  9921. closecallback: function () { }
  9922. }, {
  9923. "style": {
  9924. "height": "36px"
  9925. }
  9926. }).form; //创建窗体
  9927. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9928. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9929. })
  9930. _taskbar = {
  9931. "id": str + _formdiv.id,
  9932. "style": {
  9933. "backgroundImage": "url(/img/icon/doc.png)"
  9934. },
  9935. "name": "协同文档",
  9936. "forms": _formdiv,
  9937. "click": function () {
  9938. U.MD.D.I.openApplication(str, obj, info);
  9939. }
  9940. }
  9941. break;
  9942. }
  9943. const script1 = document.createElement("script");
  9944. script1.type = "text/javascript";
  9945. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9946. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9947. const script2 = document.createElement("script");
  9948. script2.type = "text/javascript";
  9949. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9950. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9951. const script3 = document.createElement("script");
  9952. script3.type = "text/javascript";
  9953. script3.charset = "UTF-8";
  9954. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9955. const script4 = document.createElement("script");
  9956. script4.type = "text/javascript";
  9957. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9958. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9959. if (_iframe) {
  9960. if (str == 'doc') {
  9961. _iframe = _formdiv.querySelector('iframe')
  9962. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9963. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9964. _iframe.contentWindow.document.body.appendChild(script1);
  9965. _iframe.contentWindow.document.body.appendChild(script2);
  9966. // _iframe.contentWindow.document.body.appendChild(script3);
  9967. _iframe.contentWindow.document.body.appendChild(script4);
  9968. })
  9969. if (onloadListener) {
  9970. _iframe.contentDocument.location.reload()
  9971. } else {
  9972. _iframe.contentDocument.location.reload()
  9973. }
  9974. } else if (str == 'mind') {
  9975. _iframe = _formdiv.querySelector('iframe')
  9976. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9977. _iframe.contentWindow.document.body.appendChild(script1);
  9978. _iframe.contentWindow.document.body.appendChild(script2);
  9979. _iframe.contentWindow.document.body.appendChild(script4);
  9980. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9981. })
  9982. if (onloadListener) {
  9983. _iframe.contentDocument.location.reload()
  9984. } else {
  9985. _iframe.contentDocument.location.reload()
  9986. }
  9987. } else {
  9988. _iframe.onload = () => {
  9989. _iframe.contentWindow.document.body.appendChild(script1);
  9990. _iframe.contentWindow.document.body.appendChild(script2);
  9991. // _iframe.contentWindow.document.body.appendChild(script3);
  9992. _iframe.contentWindow.document.body.appendChild(script4);
  9993. };
  9994. }
  9995. _jie.onclick = async () => {
  9996. let text = ''
  9997. if (aTool == 6) {
  9998. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9999. } else if (aTool == 3) {
  10000. text = await U.MD.D.I.getEditorContent(_iframe);
  10001. }
  10002. _loading.style.display = 'flex'
  10003. console.log(_loading);
  10004. var _ajs = _iframe.contentWindow.document.createElement("script");
  10005. _ajs.type = "text/javascript";
  10006. _ajs.innerHTML =
  10007. // 'console.log(' + _loading + ');\n' +
  10008. 'var _js = document.createElement("script");\n' +
  10009. '_js.type="text/javascript";\n' +
  10010. '_js.charset="UTF-8";\n' +
  10011. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10012. "_js.onload = function(){\n" +
  10013. ' var a = document.getElementsByTagName("img")\n' +
  10014. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10015. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10016. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10017. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10018. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10019. "beforeUpload_shishi(file," +
  10020. "'" +
  10021. _userid +
  10022. "'" +
  10023. ", " +
  10024. "'" +
  10025. _cid +
  10026. "'" +
  10027. ", " +
  10028. "'" +
  10029. _stage +
  10030. "'" +
  10031. ", " +
  10032. "'" +
  10033. _task +
  10034. "'" +
  10035. ", " +
  10036. "'" +
  10037. _tool +
  10038. "'" +
  10039. ", " +
  10040. "'" +
  10041. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10042. "'" +
  10043. ", " +
  10044. "'" +
  10045. aTool +
  10046. "'" +
  10047. ", " +
  10048. "`" +
  10049. text +
  10050. "`" +
  10051. ")\n" +
  10052. " });\n" +
  10053. "}\n" +
  10054. "document.head.appendChild(_js);\n";
  10055. _iframe.contentWindow.document.head.appendChild(_ajs);
  10056. }
  10057. }
  10058. //U.MD.D.I.openClick(str);
  10059. //如果有任务栏信息
  10060. // if (_taskbar) {
  10061. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10062. // }
  10063. }
  10064. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10065. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10066. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10067. _userinfo = US.userInfo, //登录用户信息
  10068. _userid = US.userInfo.userid //登录用户id
  10069. let _iframe;
  10070. let _cid = cid,
  10071. _stage = stage,
  10072. _task = task,
  10073. _tool = tool;
  10074. var _jie = $$("div", {
  10075. "style": {
  10076. "position": "absolute",
  10077. "bottom": "50px",
  10078. "right": "50px",
  10079. "zIndex": "9999",
  10080. "backgroundColor": "#2268bc",
  10081. "color": "#fff",
  10082. "padding": "12px 20px",
  10083. "cursor": "pointer",
  10084. "borderRadius": "4px",
  10085. },
  10086. "innerHTML": "上传模板"
  10087. })
  10088. let aTool = ''
  10089. let _loading = document.createElement('div')
  10090. _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;"
  10091. // _loading.id = "";
  10092. let _lchild = document.createElement('div')
  10093. let _limg = document.createElement('img')
  10094. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10095. _limg.style = "width: 26px;margin-right: 10px;"
  10096. _lchild.appendChild(_limg)
  10097. let _lspan = document.createElement('span')
  10098. _lspan.innerHTML = "上传中..."
  10099. _lchild.appendChild(_lspan)
  10100. _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%);"
  10101. _loading.appendChild(_lchild)
  10102. var _box = $$('div', {
  10103. "style": {
  10104. "position": "relative",
  10105. "width": "100%",
  10106. "height": "100%",
  10107. },
  10108. })
  10109. _box.appendChild(_loading)
  10110. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10111. switch (str) {
  10112. case "whiteboard":
  10113. aTool = 1;
  10114. _iframe = $$("iframe", {
  10115. "frameborder": "no",
  10116. "border": "0",
  10117. "scrolling ": "no",
  10118. "style": {
  10119. "cssText": "border:0;width:100%;height:100%"
  10120. },
  10121. "src": "https://beta.iwb.cocorobo.cn/"
  10122. })
  10123. _box.appendChild(_iframe);
  10124. _box.appendChild(_jie);
  10125. _formdiv = new U.UF.UI.form(
  10126. "电子白板",
  10127. _box, {
  10128. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10129. "style": {
  10130. "width": "90%",
  10131. "height": "90%",
  10132. "overflow": 'hidden'
  10133. },
  10134. "onresize": function () { }
  10135. }, {
  10136. closecallback: function () { }
  10137. }, {
  10138. "style": {
  10139. "height": "36px"
  10140. }
  10141. }).form; //创建窗体
  10142. _taskbar = {
  10143. "id": str + _formdiv.id,
  10144. "style": {
  10145. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10146. },
  10147. "name": "电子白板",
  10148. "forms": _formdiv,
  10149. "click": function () {
  10150. U.MD.D.I.openApplication(str, obj, info);
  10151. }
  10152. }
  10153. break;
  10154. case "mind":
  10155. aTool = 3;
  10156. _iframe = $$("iframe", {
  10157. "frameborder": "no",
  10158. "border": "0",
  10159. "scrolling ": "no",
  10160. "style": {
  10161. "cssText": "border:0;width:100%;height:100%"
  10162. },
  10163. "src": "/kityminder-editor/dist/index.html"
  10164. });
  10165. _box.appendChild(_iframe);
  10166. _box.appendChild(_jie);
  10167. _formdiv = new U.UF.UI.form(
  10168. "思维导图",
  10169. _box, { //"/jsmind/example/demo.html"
  10170. "id": "minds_Yu" + cid + stage + task + tool,
  10171. "style": {
  10172. "width": "90%",
  10173. "height": "90%",
  10174. "overflow": 'hidden'
  10175. },
  10176. "onresize": function () { }
  10177. }, {
  10178. closecallback: function () { }
  10179. }, {
  10180. "style": {
  10181. "height": "36px"
  10182. }
  10183. }).form; //创建窗体
  10184. _taskbar = {
  10185. "id": str + _formdiv.id,
  10186. "style": {
  10187. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10188. },
  10189. "name": "思维导图",
  10190. "forms": _formdiv,
  10191. "click": function () {
  10192. U.MD.D.I.openApplication(str, obj, info);
  10193. }
  10194. }
  10195. break;
  10196. case "doc":
  10197. aTool = 6;
  10198. _iframe = $$("iframe", {
  10199. "frameborder": "no",
  10200. "border": "0",
  10201. "scrolling ": "no",
  10202. "style": {
  10203. "cssText": "border:0;width:100%;height:100%"
  10204. },
  10205. "src": "/Office/Word/WordEditArea.htm"
  10206. })
  10207. _box.appendChild(_iframe);
  10208. _box.appendChild(_jie);
  10209. _formdiv = new U.UF.UI.form(
  10210. "协同文档",
  10211. _box, {
  10212. "id": "docs_Yu" + cid + stage + task + tool,
  10213. "style": {
  10214. "width": "90%",
  10215. "height": "90%",
  10216. "overflow": 'hidden'
  10217. },
  10218. "onresize": function () { }
  10219. }, {
  10220. closecallback: function () { }
  10221. }, {
  10222. "style": {
  10223. "height": "36px"
  10224. }
  10225. }).form; //创建窗体
  10226. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10227. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10228. })
  10229. _taskbar = {
  10230. "id": str + _formdiv.id,
  10231. "style": {
  10232. "backgroundImage": "url(/img/icon/doc.png)"
  10233. },
  10234. "name": "协同文档",
  10235. "forms": _formdiv,
  10236. "click": function () {
  10237. U.MD.D.I.openApplication(str, obj, info);
  10238. }
  10239. }
  10240. break;
  10241. case "CocoPi":
  10242. aTool = 57;
  10243. _iframe = $$("iframe", {
  10244. "allowpaymentrequest": "allowpaymentrequest",
  10245. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10246. "webkitallowfullscreen": "",
  10247. "mozallowfullscreen": "",
  10248. "frameborder": "no",
  10249. "border": "0",
  10250. "scrolling ": "no",
  10251. "style": {
  10252. "cssText": "border:0;width:100%;height:100%"
  10253. },
  10254. "src": "https://pi.cocorobo.cn/"
  10255. })
  10256. _box.appendChild(_iframe);
  10257. _box.appendChild(_jie);
  10258. _formdiv = new U.UF.UI.form(
  10259. "CocoPi",
  10260. _box, {
  10261. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10262. "style": {
  10263. "width": "90%",
  10264. "height": "90%",
  10265. "overflow": 'hidden'
  10266. },
  10267. "onresize": function () { }
  10268. }, {
  10269. closecallback: function () { }
  10270. }, {
  10271. "style": {
  10272. "height": "36px"
  10273. }
  10274. }).form; //创建窗体
  10275. _taskbar = {
  10276. "id": str + _formdiv.id,
  10277. "style": {
  10278. "backgroundImage": "url(/img/icon/cocopi.png)"
  10279. },
  10280. "name": "CocoPi",
  10281. "forms": _formdiv,
  10282. "click": function () {
  10283. U.MD.D.I.openApplication(str, obj, info);
  10284. }
  10285. }
  10286. break;
  10287. }
  10288. if (_iframe) {
  10289. if (str == 'doc') {
  10290. _iframe = _formdiv.querySelector('iframe')
  10291. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10292. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10293. })
  10294. if (onloadListener) {
  10295. _iframe.contentDocument.location.reload()
  10296. } else {
  10297. _iframe.contentDocument.location.reload()
  10298. }
  10299. } else if (str == 'mind') {
  10300. _iframe = _formdiv.querySelector('iframe')
  10301. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10302. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10303. })
  10304. if (onloadListener) {
  10305. _iframe.contentDocument.location.reload()
  10306. } else {
  10307. _iframe.contentDocument.location.reload()
  10308. }
  10309. } else if (str == 'whiteboard') {
  10310. _iframe = _formdiv.querySelector('iframe')
  10311. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10312. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10313. })
  10314. // if (onloadListener) {
  10315. // try {
  10316. // _iframe.src += "?cocorobo="+new Date().getTime()
  10317. // _iframe.contentWindow.document.location.reload()
  10318. // } catch (error) {
  10319. // }
  10320. // } else {
  10321. // _iframe.contentDocument.location.reload()
  10322. // }
  10323. } else if (str == 'CocoPi') {
  10324. _iframe = _formdiv.querySelector('iframe')
  10325. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10326. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10327. })
  10328. if (onloadListener) {
  10329. _iframe.contentDocument.location.reload()
  10330. } else {
  10331. _iframe.contentDocument.location.reload()
  10332. }
  10333. } else {
  10334. _iframe.onload = () => { };
  10335. }
  10336. _jie.onclick = async () => {
  10337. let text = ''
  10338. let type = '2'
  10339. if (aTool == 1) {
  10340. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10341. type = '3'
  10342. } else if (aTool == 6) {
  10343. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10344. type = '1'
  10345. } else if (aTool == 3) {
  10346. text = await U.MD.D.I.getEditorContent(_iframe);
  10347. type = '2'
  10348. } else if (aTool == 57) {
  10349. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10350. type = '4'
  10351. }
  10352. _loading.style.display = 'flex'
  10353. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10354. }
  10355. }
  10356. //U.MD.D.I.openClick(str);
  10357. //如果有任务栏信息
  10358. // if (_taskbar) {
  10359. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10360. // }
  10361. }
  10362. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10363. var xmlhttp;
  10364. var Mac, Sn, DeviceId
  10365. if (window.XMLHttpRequest) {
  10366. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10367. xmlhttp = new XMLHttpRequest();
  10368. } else {
  10369. // IE6, IE5 浏览器执行代码
  10370. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10371. }
  10372. xmlhttp.onreadystatechange = function () {
  10373. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10374. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10375. // resolve(res.value[0][0].text);
  10376. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10377. }
  10378. }
  10379. }
  10380. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10381. xmlhttp.send();
  10382. }
  10383. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10384. var xmlhttp;
  10385. var Mac, Sn, DeviceId
  10386. if (window.XMLHttpRequest) {
  10387. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10388. xmlhttp = new XMLHttpRequest();
  10389. } else {
  10390. // IE6, IE5 浏览器执行代码
  10391. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10392. }
  10393. xmlhttp.onreadystatechange = function () {
  10394. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10395. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10396. // resolve(res.value[0][0].text);
  10397. if (type == '2') {
  10398. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10399. } else if (type == '3') {
  10400. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10401. } else if (type == '4') {
  10402. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10403. }
  10404. } else {
  10405. if (type == '2') {
  10406. iframe.contentWindow.editor.minder.importData('json', '')
  10407. } else if (type == '3') {
  10408. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10409. } else if (type == '4') {
  10410. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10411. }
  10412. }
  10413. }
  10414. }
  10415. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10416. xmlhttp.send();
  10417. }
  10418. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10419. var xmlhttp;
  10420. var Mac, Sn, DeviceId
  10421. if (window.XMLHttpRequest) {
  10422. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10423. xmlhttp = new XMLHttpRequest();
  10424. } else {
  10425. // IE6, IE5 浏览器执行代码
  10426. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10427. }
  10428. xmlhttp.onreadystatechange = function () {
  10429. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10430. if (xmlhttp.response) {
  10431. // resolve(res.value[0][0].text);
  10432. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10433. // $(fileInput).val('');
  10434. // });
  10435. span.innerHTML = '上传成功'
  10436. setTimeout(() => {
  10437. loading.style.display = 'none'
  10438. }, 1000);
  10439. }
  10440. }
  10441. }
  10442. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10443. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10444. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10445. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10446. // 设置请求头,表示请求体的编码格式
  10447. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10448. // 设置请求体,使用url-encoded格式的数据
  10449. }
  10450. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10451. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10452. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10453. _userinfo = US.userInfo, //登录用户信息
  10454. _userid = US.userInfo.userid //登录用户id
  10455. let _iframe;
  10456. let _cid = cid,
  10457. _stage = stage,
  10458. _task = task,
  10459. _tool = tool;
  10460. var _jie = $$("div", {
  10461. "style": {
  10462. "position": "absolute",
  10463. "bottom": "50px",
  10464. "right": "50px",
  10465. "zIndex": "9999",
  10466. "backgroundColor": "#2268bc",
  10467. "color": "#fff",
  10468. "padding": "12px 20px",
  10469. "cursor": "pointer",
  10470. "borderRadius": "4px",
  10471. },
  10472. "innerHTML": "提交作业"
  10473. })
  10474. let aTool = ''
  10475. let _loading = document.createElement('div')
  10476. _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;"
  10477. // _loading.id = "";
  10478. let _lchild = document.createElement('div')
  10479. let _limg = document.createElement('img')
  10480. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10481. _limg.style = "width: 26px;margin-right: 10px;"
  10482. _lchild.appendChild(_limg)
  10483. let _lspan = document.createElement('span')
  10484. _lspan.innerHTML = "上传中..."
  10485. _lchild.appendChild(_lspan)
  10486. _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%);"
  10487. _loading.appendChild(_lchild)
  10488. var _box = $$('div', {
  10489. "style": {
  10490. "position": "relative",
  10491. "width": "100%",
  10492. "height": "100%",
  10493. },
  10494. })
  10495. _box.appendChild(_loading)
  10496. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10497. switch (str) {
  10498. case "CocoPi":
  10499. aTool = 57;
  10500. _iframe = $$("iframe", {
  10501. "allowpaymentrequest": "allowpaymentrequest",
  10502. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10503. "webkitallowfullscreen": "",
  10504. "mozallowfullscreen": "",
  10505. "frameborder": "no",
  10506. "border": "0",
  10507. "scrolling ": "no",
  10508. "style": {
  10509. "cssText": "border:0;width:100%;height:100%"
  10510. },
  10511. "src": "https://pi.cocorobo.cn/"
  10512. })
  10513. _box.appendChild(_iframe);
  10514. _box.appendChild(_jie);
  10515. _formdiv = new U.UF.UI.form(
  10516. "CocoPi",
  10517. _box, {
  10518. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10519. "style": {
  10520. "width": "90%",
  10521. "height": "90%",
  10522. "overflow": 'hidden'
  10523. },
  10524. "onresize": function () { }
  10525. }, {
  10526. closecallback: function () { }
  10527. }, {
  10528. "style": {
  10529. "height": "36px"
  10530. }
  10531. }).form; //创建窗体
  10532. _taskbar = {
  10533. "id": str + _formdiv.id,
  10534. "style": {
  10535. "backgroundImage": "url(/img/icon/cocopi.png)"
  10536. },
  10537. "name": "CocoPi",
  10538. "forms": _formdiv,
  10539. "click": function () {
  10540. U.MD.D.I.openApplication(str, obj, info);
  10541. }
  10542. }
  10543. break;
  10544. }
  10545. if (_iframe) {
  10546. if (str == 'CocoPi') {
  10547. _iframe = _formdiv.querySelector('iframe')
  10548. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10549. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10550. })
  10551. if (onloadListener) {
  10552. _iframe.contentDocument.location.reload()
  10553. } else {
  10554. _iframe.contentDocument.location.reload()
  10555. }
  10556. }
  10557. _jie.onclick = async () => {
  10558. let text = ''
  10559. if (aTool == 57) {
  10560. text = _iframe.contentWindow.getLoadXmlStr()
  10561. }
  10562. _loading.style.display = 'flex'
  10563. console.log(_loading);
  10564. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10565. _loading.style.display = 'none'
  10566. let _div = document.createElement('div')
  10567. _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;"
  10568. let _inner = document.createElement('div')
  10569. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10570. _inner.innerHTML = "上传成功"
  10571. _div.appendChild(_inner)
  10572. _iframe.contentWindow.window.document.body.appendChild(_div)
  10573. _div.onclick = () => {
  10574. _iframe.contentWindow.window.document.body.removeChild(_div)
  10575. }
  10576. setTimeout(() => {
  10577. _iframe.contentWindow.window.document.body.removeChild(_div)
  10578. }, 1000);
  10579. }, [], { "type": "POST", "withCredentials": true });
  10580. }
  10581. }
  10582. }
  10583. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10584. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10585. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10586. _userid = student.userid, //登录用户id
  10587. _username = student.student //用户名字
  10588. let _iframe;
  10589. let _cid = cid,
  10590. _stage = stage,
  10591. _task = task,
  10592. _tool = tool;
  10593. var _jie = $$("div", {
  10594. "style": {
  10595. "position": "absolute",
  10596. "bottom": "50px",
  10597. "right": "50px",
  10598. "zIndex": "9999",
  10599. "backgroundColor": "#2268bc",
  10600. "color": "#fff",
  10601. "padding": "12px 20px",
  10602. "cursor": "pointer",
  10603. "borderRadius": "4px",
  10604. },
  10605. "innerHTML": "提交作业"
  10606. })
  10607. let aTool = ''
  10608. let _loading = document.createElement('div')
  10609. _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;"
  10610. // _loading.id = "";
  10611. let _lchild = document.createElement('div')
  10612. let _limg = document.createElement('img')
  10613. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10614. _limg.style = "width: 26px;margin-right: 10px;"
  10615. _lchild.appendChild(_limg)
  10616. let _lspan = document.createElement('span')
  10617. _lspan.innerHTML = "上传中..."
  10618. _lchild.appendChild(_lspan)
  10619. _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%);"
  10620. _loading.appendChild(_lchild)
  10621. var _box = $$('div', {
  10622. "style": {
  10623. "position": "relative",
  10624. "width": "100%",
  10625. "height": "100%",
  10626. },
  10627. })
  10628. _box.appendChild(_loading)
  10629. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10630. switch (str) {
  10631. case "CocoPi":
  10632. aTool = 57;
  10633. _iframe = $$("iframe", {
  10634. "allowpaymentrequest": "allowpaymentrequest",
  10635. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10636. "webkitallowfullscreen": "",
  10637. "mozallowfullscreen": "",
  10638. "frameborder": "no",
  10639. "border": "0",
  10640. "scrolling ": "no",
  10641. "style": {
  10642. "cssText": "border:0;width:100%;height:100%"
  10643. },
  10644. "src": "https://pi.cocorobo.cn/"
  10645. })
  10646. _box.appendChild(_iframe);
  10647. _box.appendChild(_jie);
  10648. _formdiv = new U.UF.UI.form(
  10649. "CocoPi-" + _username,
  10650. _box, {
  10651. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10652. "style": {
  10653. "width": "90%",
  10654. "height": "90%",
  10655. "overflow": 'hidden'
  10656. },
  10657. "onresize": function () { }
  10658. }, {
  10659. closecallback: function () { }
  10660. }, {
  10661. "style": {
  10662. "height": "36px"
  10663. }
  10664. }).form; //创建窗体
  10665. _taskbar = {
  10666. "id": str + _formdiv.id,
  10667. "style": {
  10668. "backgroundImage": "url(/img/icon/cocopi.png)"
  10669. },
  10670. "name": "CocoPi",
  10671. "forms": _formdiv,
  10672. "click": function () {
  10673. U.MD.D.I.openApplication(str, obj, info);
  10674. }
  10675. }
  10676. break;
  10677. }
  10678. if (_iframe) {
  10679. if (str == 'CocoPi') {
  10680. _iframe = _formdiv.querySelector('iframe')
  10681. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10682. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10683. })
  10684. if (onloadListener) {
  10685. _iframe.contentDocument.location.reload()
  10686. } else {
  10687. _iframe.contentDocument.location.reload()
  10688. }
  10689. }
  10690. _jie.onclick = async () => {
  10691. let text = ''
  10692. if (aTool == 57) {
  10693. text = _iframe.contentWindow.getLoadXmlStr()
  10694. }
  10695. _loading.style.display = 'flex'
  10696. console.log(_loading);
  10697. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10698. _loading.style.display = 'none'
  10699. let _div = document.createElement('div')
  10700. _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;"
  10701. let _inner = document.createElement('div')
  10702. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10703. _inner.innerHTML = "上传成功"
  10704. _div.appendChild(_inner)
  10705. _iframe.contentWindow.window.document.body.appendChild(_div)
  10706. _div.onclick = () => {
  10707. _iframe.contentWindow.window.document.body.removeChild(_div)
  10708. }
  10709. setTimeout(() => {
  10710. _iframe.contentWindow.window.document.body.removeChild(_div)
  10711. }, 1000);
  10712. }, [], { "type": "POST", "withCredentials": true });
  10713. }
  10714. }
  10715. }
  10716. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10717. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10718. if (res.value[0].length > 0) {
  10719. if (atool == 57) {
  10720. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10721. }
  10722. } else {
  10723. if (atool == 57) {
  10724. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10725. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10726. }
  10727. }
  10728. }, [], { "type": "POST", "withCredentials": true });
  10729. }
  10730. U.MD.D.addOp = function(text,type,time){
  10731. var userInfo = US.userInfo;
  10732. if(Object.keys(userInfo).length !== 0){
  10733. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid,text,type,time], function (res) {
  10734. }, [], { "type": "POST", "withCredentials": true });
  10735. }
  10736. }