DeskTop.js 684 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. ];
  215. U.MD.D.I.szulsDeskIcon = [
  216. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  217. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  218. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  219. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  220. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  221. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  222. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  223. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  224. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  225. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  226. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  228. ];
  229. U.MD.D.I.hanDeskIcon = [
  230. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  231. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  232. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  233. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  234. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  235. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  236. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  237. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  238. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  239. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  240. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  241. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  242. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  243. ];
  244. U.MD.D.I.GMteacherDeskIcon = [
  245. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  246. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  247. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  248. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  249. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  250. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  251. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  252. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  253. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  254. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  255. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  256. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  257. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  258. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  259. ];
  260. U.MD.D.I.GMstudentDeskIcon = [
  261. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  262. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  263. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  264. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  265. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  266. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  267. ];
  268. //松山湖
  269. U.MD.D.I.SONGteacherDeskIcon = [
  270. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  271. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  274. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  275. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  276. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  277. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  278. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  279. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  280. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  281. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  282. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  283. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  284. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  285. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  286. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  287. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  288. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  289. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  290. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  291. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  292. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  293. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  294. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  295. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  296. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  297. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  298. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  299. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  300. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  301. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  302. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  303. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  304. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  306. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  307. ];
  308. U.MD.D.I.tcStudentDeskIcon = [
  309. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  310. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  311. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  312. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  313. ];
  314. U.MD.D.I.tcTeacherDeskIcon = [
  315. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  316. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  317. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  318. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  319. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  320. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  321. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  322. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  323. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  324. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  325. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  326. ];
  327. U.MD.D.I.tcOrganizerDeskIcon = [
  328. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  329. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  330. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  331. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  332. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  333. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  334. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  335. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  336. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  337. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  338. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  339. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  340. ];
  341. U.MD.D.I.szscStudentDeskIcon = [
  342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  344. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  345. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  347. ];
  348. U.MD.D.I.szscTeacherDeskIcon = [
  349. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  350. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  351. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  352. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  353. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  354. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  355. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  356. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  357. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  358. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  359. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  360. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  361. ];
  362. U.MD.D.I.szscOrganizerDeskIcon = [
  363. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  364. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  365. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  366. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  367. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  368. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  369. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  370. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  371. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  372. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  373. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  374. ];
  375. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  376. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  377. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  378. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  379. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  380. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  381. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  382. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  384. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  385. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  386. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  387. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  388. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  389. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  390. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  391. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  392. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  393. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  394. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  395. ];
  396. U.MD.D.I.wankeAdminDeskIcon = [
  397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  401. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  403. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  404. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  405. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  406. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  407. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  408. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  409. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  410. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  411. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  413. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  415. ];
  416. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  419. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  420. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  421. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  422. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  423. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  424. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  425. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  426. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  427. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  428. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  429. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  430. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  431. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  432. ];
  433. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  434. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  435. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  436. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  437. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  438. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  439. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  440. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  441. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  442. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  443. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  444. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  445. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  446. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  447. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  448. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  449. ];
  450. //明德教师桌面图标的全局变量
  451. U.MD.D.I.MingdeTeacherDeskIcon = [
  452. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  453. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  454. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  455. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  456. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  457. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  458. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  459. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  460. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  461. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  462. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  463. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  464. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  465. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  466. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  467. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  468. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  469. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  470. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  471. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  472. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  473. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  474. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  475. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  476. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  477. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  478. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  479. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  480. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  481. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  482. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  483. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  484. ];
  485. //97c4ee8b-d010-4042-986d-e9d3c217264f
  486. //教师桌面图标的全局变量
  487. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  488. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  489. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  490. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  491. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  492. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  493. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  494. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  495. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  496. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  497. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  500. ];
  501. //福田
  502. U.MD.D.I.futianTeacherDeskIcon = [
  503. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  504. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  505. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  506. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  507. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  508. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  509. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  510. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  511. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  512. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  513. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  514. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  515. ];
  516. //福田
  517. U.MD.D.I.futianAdminDeskIcon = [
  518. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  519. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  520. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  521. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  522. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  523. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  524. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  525. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  526. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  527. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  529. ];
  530. //lotech
  531. U.MD.D.I.lotechTeacherDeskIcon = [
  532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  538. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  539. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  540. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  541. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  542. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  543. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  544. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  547. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  548. ];
  549. //龙华中心小学教师桌面图标的全局变量
  550. U.MD.D.I.longhuateacherDeskIcon = [
  551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  558. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  559. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  560. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  561. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  562. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  563. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  564. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  565. ];
  566. //教科院实小教师桌面图标的全局变量
  567. U.MD.D.I.siesteacherDeskIcon = [
  568. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  569. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  570. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  571. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  572. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  573. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  574. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  575. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  576. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  577. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  578. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  579. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  580. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  581. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  582. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  583. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  584. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  587. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  588. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  589. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  590. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  591. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  592. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  593. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  594. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  595. ];
  596. //教科院实小教师桌面图标的全局变量
  597. U.MD.D.I.siesStudentDeskIcon = [
  598. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  599. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  600. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  601. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  602. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  603. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  604. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  605. ];
  606. //中山小学教师桌面图标的全局变量
  607. U.MD.D.I.guzmsteacherDeskIcon = [
  608. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  609. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  610. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  612. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  613. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  614. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  615. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  616. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  617. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  618. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  619. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  620. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  621. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  622. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  623. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  624. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  625. ];
  626. //中山小学学生桌面图标的全局变量
  627. U.MD.D.I.guzmsStudentDeskIcon = [
  628. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  629. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  630. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  631. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  632. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  633. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  634. ];
  635. //福田
  636. U.MD.D.I.gdjgTeacherDeskIcon = [
  637. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  638. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  639. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  640. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  641. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  642. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  643. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  644. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  645. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  646. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  647. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  648. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  649. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  650. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  651. ];
  652. //gdjg
  653. U.MD.D.I.gdjgAdminDeskIcon = [
  654. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  655. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  656. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  657. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  658. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  659. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  660. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  661. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  662. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  663. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  664. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  665. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  666. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  667. ];
  668. //hk
  669. U.MD.D.I.hkteacherDeskIcon = [
  670. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  671. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  672. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  673. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  674. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  676. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  677. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  678. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  679. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  680. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  681. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  682. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  683. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  684. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  685. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  686. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  687. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  688. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  690. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  691. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  692. ];
  693. //hk
  694. U.MD.D.I.hkStudentDeskIcon = [
  695. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  696. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  697. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  698. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  699. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  700. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  701. ];
  702. //hk
  703. U.MD.D.I.hkaceteacherDeskIcon = [
  704. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  705. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  706. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  707. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  708. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  709. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  710. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  711. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  712. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  713. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  714. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  715. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  716. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  717. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  718. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  719. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  720. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  721. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  722. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  723. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  724. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  725. ];
  726. //hk
  727. U.MD.D.I.hkaceStudentDeskIcon = [
  728. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  729. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  731. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  732. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  733. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  734. ];
  735. //香海正覺蓮社佛教正覺中學
  736. U.MD.D.I.hkZJLSteacherDeskIcon = [
  737. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  738. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  739. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  740. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  741. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  742. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  743. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  744. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  745. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  746. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  747. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  748. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  749. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  750. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  751. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  752. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  753. ];
  754. //香海正覺蓮社佛教正覺中學
  755. U.MD.D.I.hkZJLSStudentDeskIcon = [
  756. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  757. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  759. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  760. ];
  761. //云海
  762. U.MD.D.I.yunhaiTeacherDeskIcon = [
  763. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  764. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  765. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  766. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  767. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  768. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  769. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  770. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  771. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  772. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  773. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  774. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  775. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  776. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  777. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  778. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  779. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  780. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  781. ];
  782. //福田
  783. U.MD.D.I.heyuanTeacherDeskIcon = [
  784. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  785. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  786. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  787. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  788. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  789. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  790. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  791. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  792. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  793. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  794. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  795. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  796. ];
  797. //福田
  798. U.MD.D.I.heyuanAdminDeskIcon = [
  799. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  800. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  801. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  802. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  803. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  804. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  805. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  806. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  807. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  808. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  809. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  810. ];
  811. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  812. U.MD.D.I.szherTeacherDeskIcon = [
  813. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  814. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  815. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  816. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  817. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  818. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  819. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  820. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  821. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  822. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  823. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  824. ];
  825. //dsei
  826. U.MD.D.I.dseiTeacherDeskIcon = [
  827. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  828. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  829. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  830. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  831. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  832. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  833. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  834. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  842. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  843. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  844. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  845. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  846. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  847. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  848. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  849. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  850. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  851. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  852. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  853. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  854. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  855. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  856. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  857. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  858. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  859. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  860. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  861. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  862. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  863. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  864. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  865. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  866. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  867. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  868. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  869. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  870. ];
  871. //dsei
  872. U.MD.D.I.dseiAdminDeskIcon = [
  873. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  874. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  875. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  876. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  877. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  878. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  879. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  880. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  881. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  882. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  883. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  884. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  885. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  886. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  887. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  888. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  889. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  890. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  891. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  892. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  893. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  894. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  895. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  896. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  897. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  898. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  899. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  900. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  901. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  902. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  903. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  904. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  905. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  906. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  907. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  908. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  909. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  910. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  911. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  912. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  913. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  914. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  915. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  916. ];
  917. //dsei
  918. U.MD.D.I.dseiStudentDeskIcon = [
  919. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  920. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  921. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  922. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  923. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  924. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  925. ];
  926. //未来教育基地
  927. U.MD.D.I.szjkyTeacherDeskIcon = [
  928. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  929. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  930. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  931. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  932. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  933. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  934. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  935. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  936. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  937. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  938. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  939. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  940. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  941. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  942. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  943. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  944. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  945. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  946. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  947. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  948. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  949. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  950. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  951. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  952. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  953. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  954. ];
  955. //未来教育基地
  956. U.MD.D.I.szjkyAdminDeskIcon = [
  957. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  958. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  959. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  960. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  961. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  962. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  963. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  964. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  965. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  966. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  967. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  968. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  969. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  970. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  971. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  972. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  973. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  974. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  975. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  976. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  977. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  978. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  979. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  980. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  981. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  982. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  983. ];
  984. //未来教育基地
  985. U.MD.D.I.szjkyStudentDeskIcon = [
  986. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  987. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  988. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  990. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  991. ];
  992. //成华教育局
  993. U.MD.D.I.chjyjTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1001. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1002. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1003. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1004. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1005. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1006. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1007. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1008. ];
  1009. //成华教育局chjyj
  1010. U.MD.D.I.chjyjAdminDeskIcon = [
  1011. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1012. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1013. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1014. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1015. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1016. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1017. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1018. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1019. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1020. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1021. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1022. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1023. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1026. ];
  1027. //成华教育局chjyj
  1028. U.MD.D.I.chjyjStudentDeskIcon = [
  1029. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1030. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1031. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1032. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1033. ];
  1034. //tpc
  1035. U.MD.D.I.tpcStudentDeskIcon = [
  1036. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. ];
  1041. //tpc
  1042. U.MD.D.I.tpcTeacherDeskIcon = [
  1043. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1044. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1045. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1046. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1047. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1048. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1049. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1050. ];
  1051. //tpc
  1052. U.MD.D.I.tpcAdminDeskIcon = [
  1053. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1054. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1055. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1056. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1057. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1058. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1059. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1060. ];
  1061. //THU-IOE
  1062. U.MD.D.I.thuioeTeacherDeskIcon = [
  1063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1070. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1071. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1072. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1073. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1074. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1075. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1076. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1077. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1078. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1079. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1080. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1081. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1082. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1083. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1084. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1085. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1086. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1087. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1088. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1089. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1090. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1091. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1092. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1093. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1094. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1095. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1096. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1097. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1098. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1099. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1100. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1101. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1102. ];
  1103. //THU-IOE
  1104. U.MD.D.I.thuioeStudentDeskIcon = [
  1105. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1107. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1108. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1109. ];
  1110. //jccssyl
  1111. U.MD.D.I.jccssylTeacherDeskIcon = [
  1112. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1113. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1114. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1115. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1116. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1117. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1118. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1119. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1120. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1121. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1122. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1123. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1124. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1125. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1126. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1127. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1128. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1129. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1130. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1131. ];
  1132. //jccssyl
  1133. U.MD.D.I.jccssylStudentDeskIcon = [
  1134. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1136. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1138. ];
  1139. //cale
  1140. U.MD.D.I.caleTeacherDeskIcon = [
  1141. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1142. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1143. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1144. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1145. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1146. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1147. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1148. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1149. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1150. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1151. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1152. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1153. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1154. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1155. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1156. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1157. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1158. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1159. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1160. ];
  1161. //cale
  1162. U.MD.D.I.caleStudentDeskIcon = [
  1163. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1165. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1166. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1167. ];
  1168. //lqwmsgzs
  1169. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1170. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1171. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1173. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1174. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1175. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1176. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1177. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1178. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1179. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1180. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1181. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1182. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1183. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1184. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1185. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1186. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1187. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1188. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1189. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1190. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1191. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1192. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1193. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1194. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1195. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1196. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1197. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1198. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1199. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1200. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1201. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1202. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1203. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1204. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1205. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1206. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1207. ];
  1208. //lqwmsgzs
  1209. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1210. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1211. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1212. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1213. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1214. ];
  1215. //盐田区幼儿园
  1216. U.MD.D.I.ytyTeacherDeskIcon = [
  1217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1219. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1223. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1224. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1226. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1227. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1228. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1229. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1230. ];
  1231. //盐田区幼儿园
  1232. U.MD.D.I.ytyStudentDeskIcon = [
  1233. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1234. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1235. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1236. ];
  1237. //scnuai
  1238. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1239. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1240. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1241. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1242. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1243. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1244. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1245. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1246. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1247. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1248. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1249. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1250. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1251. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1252. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1253. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1254. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1255. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1256. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1257. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1258. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1259. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1260. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1261. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1262. ];
  1263. //scnuai
  1264. U.MD.D.I.scnuaiAdminDeskIcon = [
  1265. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1266. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1267. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1268. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1269. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1270. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1271. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1272. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1273. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1274. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1275. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1276. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1277. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1278. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1281. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1282. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1283. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1284. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1285. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1286. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1287. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1288. ];
  1289. //scnuai
  1290. U.MD.D.I.scnuaiStudentDeskIcon = [
  1291. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1293. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1294. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1295. ];
  1296. //cocobiz
  1297. U.MD.D.I.cocobizteacherDeskIcon = [
  1298. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1299. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1301. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1302. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1303. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1304. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1305. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1306. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1307. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1308. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1309. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1310. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1311. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1315. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1316. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1317. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1318. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1319. ];
  1320. //cocobiz
  1321. U.MD.D.I.cocobizStudentDeskIcon = [
  1322. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1323. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1324. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1325. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1326. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1327. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1328. ];
  1329. //xxzjky
  1330. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1334. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1335. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1336. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1337. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1338. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1339. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1340. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1341. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1342. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1343. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1344. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1348. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1349. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1350. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1351. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1352. ];
  1353. //xxzjky
  1354. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1355. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1356. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1357. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1358. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1359. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //nsfx
  1363. U.MD.D.I.nsfxTeacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1371. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1372. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1373. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1374. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1375. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1376. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1377. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1378. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1379. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1380. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1381. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1382. ];
  1383. //nsfx
  1384. U.MD.D.I.nsfxStudentDeskIcon = [
  1385. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1386. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1387. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1388. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1389. ];
  1390. //stia
  1391. U.MD.D.I.stiaTeacherDeskIcon = [
  1392. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1393. // { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1394. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1395. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1396. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1397. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1398. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1399. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1400. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1401. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1402. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1403. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1404. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1405. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1406. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1407. ];
  1408. //stia
  1409. U.MD.D.I.stiaStudentDeskIcon = [
  1410. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1411. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1412. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1414. ];
  1415. //szdjg
  1416. U.MD.D.I.szdjgTeacherDeskIcon = [
  1417. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1418. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1419. ];
  1420. //szdjg
  1421. U.MD.D.I.szdjgStudentDeskIcon = [
  1422. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1425. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1426. ];
  1427. //010607
  1428. U.MD.D.I.x010607TeacherDeskIcon = [
  1429. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1430. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1431. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1432. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1433. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1434. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1435. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1436. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1437. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1438. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1439. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1440. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1441. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1442. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1443. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1444. ];
  1445. //010607
  1446. U.MD.D.I.x010607StudentDeskIcon = [
  1447. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1450. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608TeacherDeskIcon = [
  1454. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1455. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1456. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1457. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1458. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1459. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1460. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1461. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1462. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1463. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1464. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1465. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1466. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1467. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.x010608StudentDeskIcon = [
  1471. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1472. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1473. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1474. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1475. ];
  1476. //xhly
  1477. U.MD.D.I.xhlyTeacherDeskIcon = [
  1478. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1479. ];
  1480. //010608
  1481. U.MD.D.I.xhlyStudentDeskIcon = [
  1482. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1483. ];
  1484. //北师大
  1485. U.MD.D.I.BSDNSteacherDeskIcon = [
  1486. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1487. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1488. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1489. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1490. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1491. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1492. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1493. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1494. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1495. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1496. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1497. ];
  1498. //北师大
  1499. U.MD.D.I.BSDNSstudentDeskIcon = [
  1500. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1503. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1507. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1508. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1510. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1511. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1512. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1513. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1514. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1515. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1516. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1517. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1518. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1519. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1520. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1521. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1522. ];
  1523. //CUHK_EDU
  1524. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1525. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503TeacherDeskIcon = [
  1532. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1533. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1534. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1535. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1536. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1537. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1538. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1539. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1540. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1541. ];
  1542. //010503
  1543. U.MD.D.I.x010503StudentDeskIcon = [
  1544. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1545. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1546. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1547. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1551. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1552. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1553. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1554. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1555. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1556. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1557. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1558. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1559. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1560. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1561. ];
  1562. //SPROUT Lab
  1563. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1564. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1566. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1567. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1568. ];
  1569. //010204
  1570. U.MD.D.I.x010204TeacherDeskIcon = [
  1571. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1572. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1573. ];
  1574. //010204
  1575. U.MD.D.I.x010204StudentDeskIcon = [
  1576. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1577. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1578. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1579. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1580. ];
  1581. //trail
  1582. U.MD.D.I.trailTeacherDeskIcon = [
  1583. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1584. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1585. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1586. ];
  1587. //trail
  1588. U.MD.D.I.trailStudentDeskIcon = [
  1589. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1590. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1591. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1592. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1593. ];
  1594. //010504
  1595. U.MD.D.I.x010504TeacherDeskIcon = [
  1596. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1597. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1598. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1599. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1600. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1602. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1603. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1604. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1605. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1606. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1607. ];
  1608. //010504
  1609. U.MD.D.I.x010504StudentDeskIcon = [
  1610. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1611. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1612. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1613. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1614. ];
  1615. //SCNUET
  1616. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1617. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1618. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1619. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1620. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1621. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1622. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1623. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1624. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1625. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1626. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1627. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1628. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1629. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1630. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1631. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1632. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1633. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1634. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1635. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1636. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1637. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1638. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1639. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1640. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1641. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1642. ];
  1643. //SCNUET
  1644. U.MD.D.I.SCNUETAdminDeskIcon = [
  1645. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1646. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1647. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1648. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1649. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1650. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1651. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1652. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1653. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1654. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1655. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1656. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1657. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1658. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1659. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1662. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1663. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1664. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1665. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1666. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1667. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1668. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1669. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1670. ];
  1671. //SCNUET
  1672. U.MD.D.I.SCNUETStudentDeskIcon = [
  1673. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1674. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1675. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1676. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1677. ];
  1678. //x020201
  1679. U.MD.D.I.x020201TeacherDeskIcon = [
  1680. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1681. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1682. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1683. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1684. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1685. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1686. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1687. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1688. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1689. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1690. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1691. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1693. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1694. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //x020201
  1698. U.MD.D.I.x020201AdminDeskIcon = [
  1699. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1700. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1703. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1704. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1705. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1706. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1707. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1708. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1709. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1710. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1711. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1712. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1713. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1714. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1715. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1716. ];
  1717. //020201
  1718. U.MD.D.I.x020201StudentDeskIcon = [
  1719. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1723. ];
  1724. //010611
  1725. U.MD.D.I.x010611TeacherDeskIcon = [
  1726. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1727. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1728. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1729. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1730. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1731. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1732. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1733. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1734. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1735. ];
  1736. //010611
  1737. U.MD.D.I.x010611StudentDeskIcon = [
  1738. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1739. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1740. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1741. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1742. ];
  1743. //tianyuan
  1744. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1751. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1752. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1753. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1754. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1755. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1756. ];
  1757. //010611
  1758. U.MD.D.I.tianyuanStudentDeskIcon = [
  1759. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1760. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1761. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1762. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1763. ];
  1764. //320101
  1765. U.MD.D.I.x320101TeacherDeskIcon = [
  1766. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1767. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1768. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1769. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1770. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1771. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1772. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1773. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1774. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1775. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1776. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1777. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1778. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1779. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1780. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1781. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1782. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1783. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1784. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1785. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1786. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1787. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1788. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1789. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1790. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1791. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1792. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1793. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1794. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1795. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1796. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1797. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1798. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1800. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1801. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1804. ];
  1805. //320101
  1806. U.MD.D.I.x320101StudentDeskIcon = [
  1807. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1809. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1810. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1811. ];
  1812. //szsy
  1813. U.MD.D.I.szsyTeacherDeskIcon = [
  1814. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1815. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1816. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1817. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1818. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1819. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1820. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1821. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1822. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1823. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1824. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1826. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1827. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1828. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1829. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1830. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1831. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1832. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1833. ];
  1834. //szsy
  1835. U.MD.D.I.szsyStudentDeskIcon = [
  1836. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1837. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1838. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1839. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1840. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1841. ];
  1842. //010404
  1843. U.MD.D.I.x010404TeacherDeskIcon = [
  1844. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1845. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1846. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1847. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1848. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1849. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1850. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1853. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1854. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1855. ];
  1856. //010404
  1857. U.MD.D.I.x010404StudentDeskIcon = [
  1858. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1859. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1860. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1861. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. ];
  1863. //#region 桌面初始化a
  1864. /**
  1865. * 初始化桌面的起始函数
  1866. *
  1867. */
  1868. U.MD.D.I.init = function () {
  1869. if ($("#U_MD_D_K")[0]) {
  1870. //初始化桌面图标
  1871. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1872. // var clickUrl = ':12588/requestIp.php';
  1873. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1874. // U.MD.D.I.Ip = data;
  1875. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1876. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1877. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1878. // })
  1879. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1880. // })
  1881. }
  1882. }
  1883. /**
  1884. * 模式切换
  1885. *
  1886. */
  1887. U.MD.D.I.ModeCheck = function (type) {
  1888. if (US.Config.type == type) {
  1889. return
  1890. }
  1891. US.Config.type = type
  1892. $('.U_PBL_Check .active')[0].className = ''
  1893. if (type == 1) {
  1894. $('.U_PBL_Check div')[0].className = 'active'
  1895. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1896. } else {
  1897. $('.U_PBL_Check div')[1].className = 'active'
  1898. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1899. }
  1900. //初始化桌面图标
  1901. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1902. if (type == 2) {
  1903. U.MD.D.I.openApplication("project")
  1904. }
  1905. }
  1906. /**
  1907. * 隐藏任务栏
  1908. *
  1909. * @param {element} 桌面元素
  1910. */
  1911. U.MD.D.I.hiddenTaskbar = function (el) {
  1912. //任务栏位置变小
  1913. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1914. //桌面的位置变大
  1915. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1916. }
  1917. /**
  1918. * 隐藏任务栏
  1919. *
  1920. * @param {element} 桌面元素
  1921. */
  1922. U.MD.D.I.hiddenTaskbarout = function (el) {
  1923. //任务栏位置变小
  1924. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1925. //任务栏位置变化
  1926. U.selectEl(el).css({ "bottom": "-60px" });
  1927. //桌面的位置变大
  1928. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1929. }
  1930. }
  1931. /**
  1932. * 初始化打印桌面图标
  1933. *
  1934. * @param {element} 桌面元素
  1935. */
  1936. U.MD.D.I.initDesktopIcons = function (el, type) {
  1937. var i, //用于循环
  1938. _content, //桌面图标元素
  1939. _iconcontent, //桌面图标元素
  1940. _frag = $$("frag"), //定义一个碎片元素
  1941. _type = US.userInfo.type,
  1942. _org = US.userInfo.org,
  1943. _oid = US.userInfo.organizeid,
  1944. _role = US.userInfo.role,
  1945. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1946. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1947. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1948. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1949. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1950. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1951. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1952. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1953. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1954. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1955. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1956. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1957. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1958. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1959. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1960. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1961. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1962. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1963. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1964. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1965. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1966. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1967. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1968. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1969. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1970. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1971. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1972. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1973. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1974. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1975. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1976. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1977. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1978. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1979. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1980. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1981. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1982. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1983. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1984. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1985. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1986. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1987. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1988. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1989. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1990. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1991. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1992. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1993. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1994. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1995. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1996. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1997. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1998. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1999. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2000. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2001. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2002. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2003. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2004. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2005. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2006. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2007. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2008. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2009. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2010. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2011. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2012. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2013. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2014. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2015. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2016. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2017. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2018. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2019. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2020. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2021. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2022. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2023. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2024. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2025. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2026. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2027. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2028. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2029. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2030. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2031. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2032. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2033. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2034. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2035. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2036. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2037. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2038. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2039. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2040. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2041. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2042. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2043. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2044. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2045. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2046. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2047. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2048. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2049. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2050. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2051. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2052. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2053. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2054. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2055. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2056. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2057. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2058. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2059. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2060. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2061. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  2062. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5','2c5d4971-ed9e-11ef-b508-005056924926','bc239322-ffb2-11ef-b508-005056924926'];
  2063. 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'];
  2064. //清楚桌面图标
  2065. el.innerHTML = "";
  2066. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2067. _teacherDesktopIconInfo.push(
  2068. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2069. { "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)" } },
  2070. )
  2071. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2072. }
  2073. 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') {
  2074. _teacherDesktopIconInfo.push(
  2075. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2076. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2077. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2078. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2079. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2080. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2081. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2082. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2083. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2084. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2085. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2086. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2087. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2088. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2089. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2090. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2091. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2092. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2093. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2094. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2095. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2096. )
  2097. }
  2098. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2099. _teacherDesktopIconInfo.push(
  2100. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2101. )
  2102. }
  2103. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2104. // _teacherDesktopIconInfo.push(
  2105. // )
  2106. // }
  2107. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2108. _teacherDesktopIconInfo.push(
  2109. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2110. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2111. )
  2112. }
  2113. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2114. _teacherDesktopIconInfo.push(
  2115. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2116. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2117. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2118. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2119. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2120. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2121. )
  2122. _studentDesktopIconInfo.push(
  2123. )
  2124. }
  2125. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2126. _teacherDesktopIconInfo.push(
  2127. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2128. )
  2129. _studentDesktopIconInfo.push(
  2130. )
  2131. }
  2132. //010606 组织
  2133. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2134. _teacherDesktopIconInfo.push(
  2135. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2136. )
  2137. _studentDesktopIconInfo.push(
  2138. )
  2139. }
  2140. //麒麟二中 和 民新小学
  2141. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2142. _teacherDesktopIconInfo.push(
  2143. )
  2144. }
  2145. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2146. _teacherDesktopIconInfo.push(
  2147. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2148. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2149. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2150. )
  2151. }
  2152. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2153. _hkTeacherDeskIconInfo.push(
  2154. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2155. )
  2156. }
  2157. //北师大附中(010601)
  2158. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2159. // _teacherDesktopIconInfo.push(
  2160. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2161. // )
  2162. // _studentDesktopIconInfo.push(
  2163. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2164. // )
  2165. // }
  2166. //樂善堂余近卿中學
  2167. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2168. _teacherDesktopIconInfo.push(
  2169. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2170. )
  2171. }
  2172. // Education Artificial Intelligence
  2173. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2174. _teacherDesktopIconInfo.push(
  2175. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2176. )
  2177. }
  2178. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2179. _teacherDesktopIconInfo.push(
  2180. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2181. )
  2182. }
  2183. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2184. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2185. _teacherDesktopIconInfo.push(
  2186. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2187. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2188. )
  2189. }
  2190. //麒麟二中
  2191. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2192. _studentDesktopIconInfo.push(
  2193. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2194. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2195. )
  2196. }
  2197. //万科双语
  2198. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2199. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2200. if (el.Name == '项目管理') {
  2201. el.Name = 'PBL项目'
  2202. }
  2203. return el
  2204. })
  2205. _studentDesktopIconInfo3.push(
  2206. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2207. )
  2208. }
  2209. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2210. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2211. return el.Name != '魔盒识字' && el.Name != '24点'
  2212. })
  2213. }
  2214. 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) {
  2215. _studentDesktopIconInfo.push(
  2216. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2217. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2218. )
  2219. }
  2220. //循环创建桌面图标
  2221. if (type == 1) {
  2222. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2223. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2224. _content = $$("div", {
  2225. className: "U_MD_D_KO",
  2226. "onmousedown": U.UF.C.closure(function (obj) {
  2227. //防止拖动图标即打开了桌面应用
  2228. U.MD.D.click(this, obj);
  2229. }, [_studentDesktopIconInfo[i]]),
  2230. "onclick": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_studentDesktopIconInfo[i]])
  2234. }, _frag); //
  2235. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2236. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2237. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2238. }
  2239. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2240. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2241. _content = $$("div", {
  2242. className: "U_MD_D_KO",
  2243. "onmousedown": U.UF.C.closure(function (obj) {
  2244. //防止拖动图标即打开了桌面应用
  2245. U.MD.D.click(this, obj);
  2246. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2247. "onclick": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_hkZJLSStudentDeskIconInfo[i]])
  2251. }, _frag); //
  2252. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2253. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2254. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2255. } //
  2256. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2257. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2258. _content = $$("div", {
  2259. className: "U_MD_D_KO",
  2260. "onmousedown": U.UF.C.closure(function (obj) {
  2261. //防止拖动图标即打开了桌面应用
  2262. U.MD.D.click(this, obj);
  2263. }, [_ytyStudentDeskIconInfo[i]]),
  2264. "onclick": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_ytyStudentDeskIconInfo[i]])
  2268. }, _frag); //
  2269. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2270. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2271. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2272. } //
  2273. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2274. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2275. _content = $$("div", {
  2276. className: "U_MD_D_KO",
  2277. "onmousedown": U.UF.C.closure(function (obj) {
  2278. //防止拖动图标即打开了桌面应用
  2279. U.MD.D.click(this, obj);
  2280. }, [_jccssylStudentDeskIconInfo[i]]),
  2281. "onclick": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_jccssylStudentDeskIconInfo[i]])
  2285. }, _frag); //
  2286. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2287. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2288. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2289. }
  2290. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2291. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2292. _content = $$("div", {
  2293. className: "U_MD_D_KO",
  2294. "onmousedown": U.UF.C.closure(function (obj) {
  2295. //防止拖动图标即打开了桌面应用
  2296. U.MD.D.click(this, obj);
  2297. }, [_scnuaiStudentDeskIconInfo[i]]),
  2298. "onclick": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_scnuaiStudentDeskIconInfo[i]])
  2302. }, _frag); //
  2303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2306. }
  2307. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2308. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2309. _content = $$("div", {
  2310. className: "U_MD_D_KO",
  2311. "onmousedown": U.UF.C.closure(function (obj) {
  2312. //防止拖动图标即打开了桌面应用
  2313. U.MD.D.click(this, obj);
  2314. }, [_caleStudentDeskIconInfo[i]]),
  2315. "onclick": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_caleStudentDeskIconInfo[i]])
  2319. }, _frag); //
  2320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2323. }
  2324. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2325. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2326. _content = $$("div", {
  2327. className: "U_MD_D_KO",
  2328. "onmousedown": U.UF.C.closure(function (obj) {
  2329. //防止拖动图标即打开了桌面应用
  2330. U.MD.D.click(this, obj);
  2331. }, [_thuioeStudentDeskIconInfo[i]]),
  2332. "onclick": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_thuioeStudentDeskIconInfo[i]])
  2336. }, _frag); //
  2337. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2338. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2339. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2340. }
  2341. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2342. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2343. _content = $$("div", {
  2344. className: "U_MD_D_KO",
  2345. "onmousedown": U.UF.C.closure(function (obj) {
  2346. //防止拖动图标即打开了桌面应用
  2347. U.MD.D.click(this, obj);
  2348. }, [_tpcStudentDeskIconInfo[i]]),
  2349. "onclick": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_tpcStudentDeskIconInfo[i]])
  2353. }, _frag); //
  2354. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2355. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2356. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2357. } //
  2358. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2359. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2360. _content = $$("div", {
  2361. className: "U_MD_D_KO",
  2362. "onmousedown": U.UF.C.closure(function (obj) {
  2363. //防止拖动图标即打开了桌面应用
  2364. U.MD.D.click(this, obj);
  2365. }, [_chjyjStudentDeskIconInfo[i]]),
  2366. "onclick": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_chjyjStudentDeskIconInfo[i]])
  2370. }, _frag); //
  2371. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2372. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2373. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2374. }
  2375. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2376. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2377. _content = $$("div", {
  2378. className: "U_MD_D_KO",
  2379. "onmousedown": U.UF.C.closure(function (obj) {
  2380. //防止拖动图标即打开了桌面应用
  2381. U.MD.D.click(this, obj);
  2382. }, [_szjkyStudentDeskIconInfo[i]]),
  2383. "onclick": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_szjkyStudentDeskIconInfo[i]])
  2387. }, _frag); //
  2388. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2389. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2390. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2391. }
  2392. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2393. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2394. _content = $$("div", {
  2395. className: "U_MD_D_KO",
  2396. "onmousedown": U.UF.C.closure(function (obj) {
  2397. //防止拖动图标即打开了桌面应用
  2398. U.MD.D.click(this, obj);
  2399. }, [_x020201StudentDeskIconInfo[i]]),
  2400. "onclick": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_x020201StudentDeskIconInfo[i]])
  2404. }, _frag); //
  2405. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2406. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2407. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2408. }
  2409. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2410. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2411. _content = $$("div", {
  2412. className: "U_MD_D_KO",
  2413. "onmousedown": U.UF.C.closure(function (obj) {
  2414. //防止拖动图标即打开了桌面应用
  2415. U.MD.D.click(this, obj);
  2416. }, [_SCNUETStudentDeskIconInfo[i]]),
  2417. "onclick": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_SCNUETStudentDeskIconInfo[i]])
  2421. }, _frag); //
  2422. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2423. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2424. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2425. }
  2426. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2427. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2428. _content = $$("div", {
  2429. className: "U_MD_D_KO",
  2430. "onmousedown": U.UF.C.closure(function (obj) {
  2431. //防止拖动图标即打开了桌面应用
  2432. U.MD.D.click(this, obj);
  2433. }, [_dseiStudentDeskIconInfo[i]]),
  2434. "onclick": U.UF.C.closure(function (obj) {
  2435. //防止拖动图标即打开了桌面应用
  2436. U.MD.D.click(this, obj);
  2437. }, [_dseiStudentDeskIconInfo[i]])
  2438. }, _frag); //
  2439. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2440. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2441. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2442. }
  2443. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2444. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2445. _content = $$("div", {
  2446. className: "U_MD_D_KO",
  2447. "onmousedown": U.UF.C.closure(function (obj) {
  2448. //防止拖动图标即打开了桌面应用
  2449. U.MD.D.click(this, obj);
  2450. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2451. "onclick": U.UF.C.closure(function (obj) {
  2452. //防止拖动图标即打开了桌面应用
  2453. U.MD.D.click(this, obj);
  2454. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2455. }, _frag); //
  2456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2459. }
  2460. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2461. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2462. _content = $$("div", {
  2463. className: "U_MD_D_KO",
  2464. "onmousedown": U.UF.C.closure(function (obj) {
  2465. //防止拖动图标即打开了桌面应用
  2466. U.MD.D.click(this, obj);
  2467. }, [_nsfxStudentDeskIconInfo[i]]),
  2468. "onclick": U.UF.C.closure(function (obj) {
  2469. //防止拖动图标即打开了桌面应用
  2470. U.MD.D.click(this, obj);
  2471. }, [_nsfxStudentDeskIconInfo[i]])
  2472. }, _frag); //
  2473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2476. }
  2477. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2478. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2479. _content = $$("div", {
  2480. className: "U_MD_D_KO",
  2481. "onmousedown": U.UF.C.closure(function (obj) {
  2482. //防止拖动图标即打开了桌面应用
  2483. U.MD.D.click(this, obj);
  2484. }, [_stiaStudentDeskIconInfo[i]]),
  2485. "onclick": U.UF.C.closure(function (obj) {
  2486. //防止拖动图标即打开了桌面应用
  2487. U.MD.D.click(this, obj);
  2488. }, [_stiaStudentDeskIconInfo[i]])
  2489. }, _frag); //
  2490. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2491. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2492. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2493. }
  2494. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2495. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2496. _content = $$("div", {
  2497. className: "U_MD_D_KO",
  2498. "onmousedown": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_szdjgStudentDeskIconInfo[i]]),
  2502. "onclick": U.UF.C.closure(function (obj) {
  2503. //防止拖动图标即打开了桌面应用
  2504. U.MD.D.click(this, obj);
  2505. }, [_szdjgStudentDeskIconInfo[i]])
  2506. }, _frag); //
  2507. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2508. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2509. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2510. }
  2511. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2512. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2513. _content = $$("div", {
  2514. className: "U_MD_D_KO",
  2515. "onmousedown": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_x010607StudentDeskIconInfo[i]]),
  2519. "onclick": U.UF.C.closure(function (obj) {
  2520. //防止拖动图标即打开了桌面应用
  2521. U.MD.D.click(this, obj);
  2522. }, [_x010607StudentDeskIconInfo[i]])
  2523. }, _frag); //
  2524. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2525. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2526. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2527. }
  2528. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2529. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2530. _content = $$("div", {
  2531. className: "U_MD_D_KO",
  2532. "onmousedown": U.UF.C.closure(function (obj) {
  2533. //防止拖动图标即打开了桌面应用
  2534. U.MD.D.click(this, obj);
  2535. }, [_xhlyStudentDeskIconInfo[i]]),
  2536. "onclick": U.UF.C.closure(function (obj) {
  2537. //防止拖动图标即打开了桌面应用
  2538. U.MD.D.click(this, obj);
  2539. }, [_xhlyStudentDeskIconInfo[i]])
  2540. }, _frag); //
  2541. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2542. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2543. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2544. }
  2545. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2546. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2547. _content = $$("div", {
  2548. className: "U_MD_D_KO",
  2549. "onmousedown": U.UF.C.closure(function (obj) {
  2550. //防止拖动图标即打开了桌面应用
  2551. U.MD.D.click(this, obj);
  2552. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2553. "onclick": U.UF.C.closure(function (obj) {
  2554. //防止拖动图标即打开了桌面应用
  2555. U.MD.D.click(this, obj);
  2556. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2557. }, _frag); //
  2558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2561. }
  2562. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2563. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2564. _content = $$("div", {
  2565. className: "U_MD_D_KO",
  2566. "onmousedown": U.UF.C.closure(function (obj) {
  2567. //防止拖动图标即打开了桌面应用
  2568. U.MD.D.click(this, obj);
  2569. }, [_x010503StudentDeskIconInfo[i]]),
  2570. "onclick": U.UF.C.closure(function (obj) {
  2571. //防止拖动图标即打开了桌面应用
  2572. U.MD.D.click(this, obj);
  2573. }, [_x010503StudentDeskIconInfo[i]])
  2574. }, _frag); //
  2575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2578. }
  2579. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2580. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2581. _content = $$("div", {
  2582. className: "U_MD_D_KO",
  2583. "onmousedown": U.UF.C.closure(function (obj) {
  2584. //防止拖动图标即打开了桌面应用
  2585. U.MD.D.click(this, obj);
  2586. }, [_x010504StudentDeskIconInfo[i]]),
  2587. "onclick": U.UF.C.closure(function (obj) {
  2588. //防止拖动图标即打开了桌面应用
  2589. U.MD.D.click(this, obj);
  2590. }, [_x010504StudentDeskIconInfo[i]])
  2591. }, _frag); //
  2592. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2593. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2594. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2595. }
  2596. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2597. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2598. _content = $$("div", {
  2599. className: "U_MD_D_KO",
  2600. "onmousedown": U.UF.C.closure(function (obj) {
  2601. //防止拖动图标即打开了桌面应用
  2602. U.MD.D.click(this, obj);
  2603. }, [_x010404StudentDeskIconInfo[i]]),
  2604. "onclick": U.UF.C.closure(function (obj) {
  2605. //防止拖动图标即打开了桌面应用
  2606. U.MD.D.click(this, obj);
  2607. }, [_x010404StudentDeskIconInfo[i]])
  2608. }, _frag); //
  2609. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2610. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2611. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2612. }
  2613. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2614. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2615. _content = $$("div", {
  2616. className: "U_MD_D_KO",
  2617. "onmousedown": U.UF.C.closure(function (obj) {
  2618. //防止拖动图标即打开了桌面应用
  2619. U.MD.D.click(this, obj);
  2620. }, [_x010204StudentDeskIconInfo[i]]),
  2621. "onclick": U.UF.C.closure(function (obj) {
  2622. //防止拖动图标即打开了桌面应用
  2623. U.MD.D.click(this, obj);
  2624. }, [_x010204StudentDeskIconInfo[i]])
  2625. }, _frag); //
  2626. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2627. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2628. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2629. }
  2630. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2631. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2632. _content = $$("div", {
  2633. className: "U_MD_D_KO",
  2634. "onmousedown": U.UF.C.closure(function (obj) {
  2635. //防止拖动图标即打开了桌面应用
  2636. U.MD.D.click(this, obj);
  2637. }, [_x320101StudentDeskIconInfo[i]]),
  2638. "onclick": U.UF.C.closure(function (obj) {
  2639. //防止拖动图标即打开了桌面应用
  2640. U.MD.D.click(this, obj);
  2641. }, [_x320101StudentDeskIconInfo[i]])
  2642. }, _frag); //
  2643. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2644. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2645. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2646. }
  2647. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2648. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2649. _content = $$("div", {
  2650. className: "U_MD_D_KO",
  2651. "onmousedown": U.UF.C.closure(function (obj) {
  2652. //防止拖动图标即打开了桌面应用
  2653. U.MD.D.click(this, obj);
  2654. }, [_trailStudentDeskIconInfo[i]]),
  2655. "onclick": U.UF.C.closure(function (obj) {
  2656. //防止拖动图标即打开了桌面应用
  2657. U.MD.D.click(this, obj);
  2658. }, [_trailStudentDeskIconInfo[i]])
  2659. }, _frag); //
  2660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2663. }
  2664. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2665. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2682. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2683. _content = $$("div", {
  2684. className: "U_MD_D_KO",
  2685. "onmousedown": U.UF.C.closure(function (obj) {
  2686. //防止拖动图标即打开了桌面应用
  2687. U.MD.D.click(this, obj);
  2688. }, [_szsyStudentDeskIconInfo[i]]),
  2689. "onclick": U.UF.C.closure(function (obj) {
  2690. //防止拖动图标即打开了桌面应用
  2691. U.MD.D.click(this, obj);
  2692. }, [_szsyStudentDeskIconInfo[i]])
  2693. }, _frag); //
  2694. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2695. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  2696. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  2697. }
  2698. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2699. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2700. _content = $$("div", {
  2701. className: "U_MD_D_KO",
  2702. "onmousedown": U.UF.C.closure(function (obj) {
  2703. //防止拖动图标即打开了桌面应用
  2704. U.MD.D.click(this, obj);
  2705. }, [_x010608StudentDeskIconInfo[i]]),
  2706. "onclick": U.UF.C.closure(function (obj) {
  2707. //防止拖动图标即打开了桌面应用
  2708. U.MD.D.click(this, obj);
  2709. }, [_x010608StudentDeskIconInfo[i]])
  2710. }, _frag); //
  2711. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2712. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2713. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2714. }
  2715. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2716. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2717. _content = $$("div", {
  2718. className: "U_MD_D_KO",
  2719. "onmousedown": U.UF.C.closure(function (obj) {
  2720. //防止拖动图标即打开了桌面应用
  2721. U.MD.D.click(this, obj);
  2722. }, [_x010611StudentDeskIconInfo[i]]),
  2723. "onclick": U.UF.C.closure(function (obj) {
  2724. //防止拖动图标即打开了桌面应用
  2725. U.MD.D.click(this, obj);
  2726. }, [_x010611StudentDeskIconInfo[i]])
  2727. }, _frag); //
  2728. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2729. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2730. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2731. }
  2732. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  2733. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2734. _content = $$("div", {
  2735. className: "U_MD_D_KO",
  2736. "onmousedown": U.UF.C.closure(function (obj) {
  2737. //防止拖动图标即打开了桌面应用
  2738. U.MD.D.click(this, obj);
  2739. }, [_tianyuantudentDeskIconInfo[i]]),
  2740. "onclick": U.UF.C.closure(function (obj) {
  2741. //防止拖动图标即打开了桌面应用
  2742. U.MD.D.click(this, obj);
  2743. }, [_tianyuantudentDeskIconInfo[i]])
  2744. }, _frag); //
  2745. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2746. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2747. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2748. }
  2749. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2750. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2751. _content = $$("div", {
  2752. className: "U_MD_D_KO",
  2753. "onmousedown": U.UF.C.closure(function (obj) {
  2754. //防止拖动图标即打开了桌面应用
  2755. U.MD.D.click(this, obj);
  2756. }, [_siesStudentDeskIconInfo[i]]),
  2757. "onclick": U.UF.C.closure(function (obj) {
  2758. //防止拖动图标即打开了桌面应用
  2759. U.MD.D.click(this, obj);
  2760. }, [_siesStudentDeskIconInfo[i]])
  2761. }, _frag); //
  2762. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2763. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2764. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2765. }
  2766. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2767. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2768. _content = $$("div", {
  2769. className: "U_MD_D_KO",
  2770. "onmousedown": U.UF.C.closure(function (obj) {
  2771. //防止拖动图标即打开了桌面应用
  2772. U.MD.D.click(this, obj);
  2773. }, [_guzmsStudentDeskIconInfo[i]]),
  2774. "onclick": U.UF.C.closure(function (obj) {
  2775. //防止拖动图标即打开了桌面应用
  2776. U.MD.D.click(this, obj);
  2777. }, [_guzmsStudentDeskIconInfo[i]])
  2778. }, _frag); //
  2779. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2780. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2781. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2782. }
  2783. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2784. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2785. _content = $$("div", {
  2786. className: "U_MD_D_KO",
  2787. "onmousedown": U.UF.C.closure(function (obj) {
  2788. //防止拖动图标即打开了桌面应用
  2789. U.MD.D.click(this, obj);
  2790. }, [_hkStudentDeskIconInfo[i]]),
  2791. "onclick": U.UF.C.closure(function (obj) {
  2792. //防止拖动图标即打开了桌面应用
  2793. U.MD.D.click(this, obj);
  2794. }, [_hkStudentDeskIconInfo[i]])
  2795. }, _frag); //
  2796. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2797. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2798. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2799. }
  2800. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2801. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2802. _content = $$("div", {
  2803. className: "U_MD_D_KO",
  2804. "onmousedown": U.UF.C.closure(function (obj) {
  2805. //防止拖动图标即打开了桌面应用
  2806. U.MD.D.click(this, obj);
  2807. }, [_hkaceStudentDeskIconInfo[i]]),
  2808. "onclick": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_hkaceStudentDeskIconInfo[i]])
  2812. }, _frag); //
  2813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2816. }
  2817. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2818. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2819. _content = $$("div", {
  2820. className: "U_MD_D_KO",
  2821. "onmousedown": U.UF.C.closure(function (obj) {
  2822. //防止拖动图标即打开了桌面应用
  2823. U.MD.D.click(this, obj);
  2824. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2825. "onclick": U.UF.C.closure(function (obj) {
  2826. //防止拖动图标即打开了桌面应用
  2827. U.MD.D.click(this, obj);
  2828. }, [_BSDNSstudentDesktopIconInfo[i]])
  2829. }, _frag); //
  2830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2833. }
  2834. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2835. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2836. _content = $$("div", {
  2837. className: "U_MD_D_KO",
  2838. "onmousedown": U.UF.C.closure(function (obj) {
  2839. //防止拖动图标即打开了桌面应用
  2840. U.MD.D.click(this, obj);
  2841. }, [_cocobizStudentDeskIconInfo[i]]),
  2842. "onclick": U.UF.C.closure(function (obj) {
  2843. //防止拖动图标即打开了桌面应用
  2844. U.MD.D.click(this, obj);
  2845. }, [_cocobizStudentDeskIconInfo[i]])
  2846. }, _frag); //
  2847. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2848. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2849. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2850. }
  2851. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2852. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2853. _content = $$("div", {
  2854. className: "U_MD_D_KO",
  2855. "onmousedown": U.UF.C.closure(function (obj) {
  2856. //防止拖动图标即打开了桌面应用
  2857. U.MD.D.click(this, obj);
  2858. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2859. "onclick": U.UF.C.closure(function (obj) {
  2860. //防止拖动图标即打开了桌面应用
  2861. U.MD.D.click(this, obj);
  2862. }, [_xxzjkyStudentDeskIconInfo[i]])
  2863. }, _frag); //
  2864. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2865. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2866. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2867. }
  2868. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2869. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2870. _content = $$("div", {
  2871. className: "U_MD_D_KO",
  2872. "onmousedown": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_studentDesktopIconInfo[i]]),
  2876. "onclick": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_studentDesktopIconInfo[i]])
  2880. }, _frag); //
  2881. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2882. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2883. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2884. }
  2885. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2886. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2887. _content = $$("div", {
  2888. className: "U_MD_D_KO",
  2889. "onmousedown": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_tcStudentDeskIconInfo[i]]),
  2893. "onclick": U.UF.C.closure(function (obj) {
  2894. //防止拖动图标即打开了桌面应用
  2895. U.MD.D.click(this, obj);
  2896. }, [_tcStudentDeskIconInfo[i]])
  2897. }, _frag); //
  2898. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2899. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2900. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2901. }
  2902. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2903. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2904. _content = $$("div", {
  2905. className: "U_MD_D_KO",
  2906. "onmousedown": U.UF.C.closure(function (obj) {
  2907. //防止拖动图标即打开了桌面应用
  2908. U.MD.D.click(this, obj);
  2909. }, [_szscStudentDeskIconInfo[i]]),
  2910. "onclick": U.UF.C.closure(function (obj) {
  2911. //防止拖动图标即打开了桌面应用
  2912. U.MD.D.click(this, obj);
  2913. }, [_szscStudentDeskIconInfo[i]])
  2914. }, _frag); //
  2915. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2916. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2917. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2918. }
  2919. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2920. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2921. _content = $$("div", {
  2922. className: "U_MD_D_KO",
  2923. "onmousedown": U.UF.C.closure(function (obj) {
  2924. //防止拖动图标即打开了桌面应用
  2925. U.MD.D.click(this, obj);
  2926. }, [_studentDesktopIconInfo3[i]]),
  2927. "onclick": U.UF.C.closure(function (obj) {
  2928. //防止拖动图标即打开了桌面应用
  2929. U.MD.D.click(this, obj);
  2930. }, [_studentDesktopIconInfo3[i]])
  2931. }, _frag); //
  2932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2935. }
  2936. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2937. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2938. _content = $$("div", {
  2939. className: "U_MD_D_KO",
  2940. "onmousedown": U.UF.C.closure(function (obj) {
  2941. //防止拖动图标即打开了桌面应用
  2942. U.MD.D.click(this, obj);
  2943. }, [_studentDesktopIconInfo2[i]]),
  2944. "onclick": U.UF.C.closure(function (obj) {
  2945. //防止拖动图标即打开了桌面应用
  2946. U.MD.D.click(this, obj);
  2947. }, [_studentDesktopIconInfo2[i]])
  2948. }, _frag); //
  2949. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2950. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2951. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2952. }
  2953. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2954. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2955. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2956. continue
  2957. }
  2958. _content = $$("div", {
  2959. className: "U_MD_D_KO",
  2960. "onmousedown": U.UF.C.closure(function (obj) {
  2961. //防止拖动图标即打开了桌面应用
  2962. U.MD.D.click(this, obj);
  2963. }, [_wanketeacherDesktopIconInfo[i]]),
  2964. "onclick": U.UF.C.closure(function (obj) {
  2965. //防止拖动图标即打开了桌面应用
  2966. U.MD.D.click(this, obj);
  2967. }, [_wanketeacherDesktopIconInfo[i]])
  2968. }, _frag); //
  2969. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2970. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2971. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2972. }
  2973. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2974. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2975. _content = $$("div", {
  2976. className: "U_MD_D_KO",
  2977. "onmousedown": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_wankeAdminDesktopIconInfo[i]]),
  2981. "onclick": U.UF.C.closure(function (obj) {
  2982. //防止拖动图标即打开了桌面应用
  2983. U.MD.D.click(this, obj);
  2984. }, [_wankeAdminDesktopIconInfo[i]])
  2985. }, _frag); //
  2986. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2987. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2988. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2989. }
  2990. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2991. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2992. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2993. continue
  2994. }
  2995. _content = $$("div", {
  2996. className: "U_MD_D_KO",
  2997. "onmousedown": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3001. "onclick": U.UF.C.closure(function (obj) {
  3002. //防止拖动图标即打开了桌面应用
  3003. U.MD.D.click(this, obj);
  3004. }, [_scnuaiTeacherDeskIconInfo[i]])
  3005. }, _frag); //
  3006. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3007. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3008. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3009. }
  3010. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3011. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3012. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3013. continue
  3014. }
  3015. _content = $$("div", {
  3016. className: "U_MD_D_KO",
  3017. "onmousedown": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3021. "onclick": U.UF.C.closure(function (obj) {
  3022. //防止拖动图标即打开了桌面应用
  3023. U.MD.D.click(this, obj);
  3024. }, [_BSDNSteacherDesktopIconInfo[i]])
  3025. }, _frag); //
  3026. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3027. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3028. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3029. }
  3030. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3031. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3032. _content = $$("div", {
  3033. className: "U_MD_D_KO",
  3034. "onmousedown": U.UF.C.closure(function (obj) {
  3035. //防止拖动图标即打开了桌面应用
  3036. U.MD.D.click(this, obj);
  3037. }, [_scnuaiAdminDeskIconInfo[i]]),
  3038. "onclick": U.UF.C.closure(function (obj) {
  3039. //防止拖动图标即打开了桌面应用
  3040. U.MD.D.click(this, obj);
  3041. }, [_scnuaiAdminDeskIconInfo[i]])
  3042. }, _frag); //
  3043. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3044. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3045. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3046. }
  3047. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3048. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3049. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3050. continue
  3051. }
  3052. _content = $$("div", {
  3053. className: "U_MD_D_KO",
  3054. "onmousedown": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_jccssylTeacherDeskIconInfo[i]]),
  3058. "onclick": U.UF.C.closure(function (obj) {
  3059. //防止拖动图标即打开了桌面应用
  3060. U.MD.D.click(this, obj);
  3061. }, [_jccssylTeacherDeskIconInfo[i]])
  3062. }, _frag); //
  3063. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3064. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3065. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3066. }
  3067. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3068. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3069. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3070. continue
  3071. }
  3072. _content = $$("div", {
  3073. className: "U_MD_D_KO",
  3074. "onmousedown": U.UF.C.closure(function (obj) {
  3075. //防止拖动图标即打开了桌面应用
  3076. U.MD.D.click(this, obj);
  3077. }, [_caleTeacherDeskIconInfo[i]]),
  3078. "onclick": U.UF.C.closure(function (obj) {
  3079. //防止拖动图标即打开了桌面应用
  3080. U.MD.D.click(this, obj);
  3081. }, [_caleTeacherDeskIconInfo[i]])
  3082. }, _frag); //
  3083. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3084. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3085. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3086. }
  3087. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3088. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3089. _content = $$("div", {
  3090. className: "U_MD_D_KO",
  3091. "onmousedown": U.UF.C.closure(function (obj) {
  3092. //防止拖动图标即打开了桌面应用
  3093. U.MD.D.click(this, obj);
  3094. }, [_tpcOrganizerDeskIconInfo[i]]),
  3095. "onclick": U.UF.C.closure(function (obj) {
  3096. //防止拖动图标即打开了桌面应用
  3097. U.MD.D.click(this, obj);
  3098. }, [_tpcOrganizerDeskIconInfo[i]])
  3099. }, _frag); //
  3100. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3101. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3102. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3103. }
  3104. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3105. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3106. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3107. continue
  3108. }
  3109. _content = $$("div", {
  3110. className: "U_MD_D_KO",
  3111. "onmousedown": U.UF.C.closure(function (obj) {
  3112. //防止拖动图标即打开了桌面应用
  3113. U.MD.D.click(this, obj);
  3114. }, [_tpcTeacherDeskIconInfo[i]]),
  3115. "onclick": U.UF.C.closure(function (obj) {
  3116. //防止拖动图标即打开了桌面应用
  3117. U.MD.D.click(this, obj);
  3118. }, [_tpcTeacherDeskIconInfo[i]])
  3119. }, _frag); //
  3120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3123. }
  3124. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3125. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3126. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  3127. continue
  3128. }
  3129. _content = $$("div", {
  3130. className: "U_MD_D_KO",
  3131. "onmousedown": U.UF.C.closure(function (obj) {
  3132. //防止拖动图标即打开了桌面应用
  3133. U.MD.D.click(this, obj);
  3134. }, [_teacherDesktopIconInfo2[i]]),
  3135. "onclick": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_teacherDesktopIconInfo2[i]])
  3139. }, _frag); //
  3140. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3141. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3142. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3143. }
  3144. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3145. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3146. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3147. continue
  3148. }
  3149. _content = $$("div", {
  3150. className: "U_MD_D_KO",
  3151. "onmousedown": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_thuioeTeacherDeskIconInfo[i]]),
  3155. "onclick": U.UF.C.closure(function (obj) {
  3156. //防止拖动图标即打开了桌面应用
  3157. U.MD.D.click(this, obj);
  3158. }, [_thuioeTeacherDeskIconInfo[i]])
  3159. }, _frag); //
  3160. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3161. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3162. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3163. }
  3164. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3165. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3166. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3167. continue
  3168. }
  3169. _content = $$("div", {
  3170. className: "U_MD_D_KO",
  3171. "onmousedown": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_lotechTeacherDeskIconInfo[i]]),
  3175. "onclick": U.UF.C.closure(function (obj) {
  3176. //防止拖动图标即打开了桌面应用
  3177. U.MD.D.click(this, obj);
  3178. }, [_lotechTeacherDeskIconInfo[i]])
  3179. }, _frag); //
  3180. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3181. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3182. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3183. }//
  3184. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3185. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3186. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3187. continue
  3188. }
  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. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3195. "onclick": U.UF.C.closure(function (obj) {
  3196. //防止拖动图标即打开了桌面应用
  3197. U.MD.D.click(this, obj);
  3198. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3199. }, _frag); //
  3200. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3201. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3202. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3203. }
  3204. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3205. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3206. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  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. }, [_siesTeacherDeskIconInfo[i]]),
  3215. "onclick": U.UF.C.closure(function (obj) {
  3216. //防止拖动图标即打开了桌面应用
  3217. U.MD.D.click(this, obj);
  3218. }, [_siesTeacherDeskIconInfo[i]])
  3219. }, _frag); //
  3220. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3221. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3222. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3223. }
  3224. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3225. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3226. if(_role === 0 && _guzmsTeacherDeskIconInfo[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. }, [_guzmsTeacherDeskIconInfo[i]]),
  3235. "onclick": U.UF.C.closure(function (obj) {
  3236. //防止拖动图标即打开了桌面应用
  3237. U.MD.D.click(this, obj);
  3238. }, [_guzmsTeacherDeskIconInfo[i]])
  3239. }, _frag); //
  3240. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3241. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3242. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3243. }
  3244. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3245. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3246. if(_role === 0 && _longhuaTeacherDeskIconInfo[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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3255. "onclick": U.UF.C.closure(function (obj) {
  3256. //防止拖动图标即打开了桌面应用
  3257. U.MD.D.click(this, obj);
  3258. }, [_longhuaTeacherDeskIconInfo[i]])
  3259. }, _frag); //
  3260. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3261. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3262. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3263. }
  3264. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3265. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3266. if(_role === 0 && _ytyTeacherDeskIconInfo[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. }, [_ytyTeacherDeskIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_ytyTeacherDeskIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3285. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3286. if(_role === 0 && _yunhaiTeacherDeskIconInfo[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. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3295. "onclick": U.UF.C.closure(function (obj) {
  3296. //防止拖动图标即打开了桌面应用
  3297. U.MD.D.click(this, obj);
  3298. }, [_yunhaiTeacherDeskIconInfo[i]])
  3299. }, _frag); //
  3300. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3301. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3302. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3303. } //_hkStudentDeskIconInfo
  3304. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3305. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3306. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3307. continue
  3308. }
  3309. _content = $$("div", {
  3310. className: "U_MD_D_KO",
  3311. "onmousedown": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3315. "onclick": U.UF.C.closure(function (obj) {
  3316. //防止拖动图标即打开了桌面应用
  3317. U.MD.D.click(this, obj);
  3318. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3319. }, _frag); //
  3320. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3321. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3322. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3323. }
  3324. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3325. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3326. if(_role === 0 && _hkTeacherDeskIconInfo[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. }, [_hkTeacherDeskIconInfo[i]]),
  3335. "onclick": U.UF.C.closure(function (obj) {
  3336. //防止拖动图标即打开了桌面应用
  3337. U.MD.D.click(this, obj);
  3338. }, [_hkTeacherDeskIconInfo[i]])
  3339. }, _frag); //
  3340. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3341. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3342. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3343. }
  3344. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3345. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3346. if(_role === 0 && _hkaceTeacherDeskIconInfo[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. }, [_hkaceTeacherDeskIconInfo[i]]),
  3355. "onclick": U.UF.C.closure(function (obj) {
  3356. //防止拖动图标即打开了桌面应用
  3357. U.MD.D.click(this, obj);
  3358. }, [_hkaceTeacherDeskIconInfo[i]])
  3359. }, _frag); //
  3360. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3361. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3362. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3363. }
  3364. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3365. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3366. if(_role === 0 && _cocobizTeacherDeskIconInfo[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. }, [_cocobizTeacherDeskIconInfo[i]]),
  3375. "onclick": U.UF.C.closure(function (obj) {
  3376. //防止拖动图标即打开了桌面应用
  3377. U.MD.D.click(this, obj);
  3378. }, [_cocobizTeacherDeskIconInfo[i]])
  3379. }, _frag); //
  3380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3383. }
  3384. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3385. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3386. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[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. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3395. "onclick": U.UF.C.closure(function (obj) {
  3396. //防止拖动图标即打开了桌面应用
  3397. U.MD.D.click(this, obj);
  3398. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3399. }, _frag); //
  3400. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3401. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3402. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3403. }
  3404. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3405. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3406. _content = $$("div", {
  3407. className: "U_MD_D_KO",
  3408. "onmousedown": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_gdjgAdminDeskIconInfo[i]]),
  3412. "onclick": U.UF.C.closure(function (obj) {
  3413. //防止拖动图标即打开了桌面应用
  3414. U.MD.D.click(this, obj);
  3415. }, [_gdjgAdminDeskIconInfo[i]])
  3416. }, _frag); //
  3417. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3418. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3419. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3420. }
  3421. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3422. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3423. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3424. continue
  3425. }
  3426. _content = $$("div", {
  3427. className: "U_MD_D_KO",
  3428. "onmousedown": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_gdjgTeacherDeskIconInfo[i]]),
  3432. "onclick": U.UF.C.closure(function (obj) {
  3433. //防止拖动图标即打开了桌面应用
  3434. U.MD.D.click(this, obj);
  3435. }, [_gdjgTeacherDeskIconInfo[i]])
  3436. }, _frag); //
  3437. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3438. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3439. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3440. }
  3441. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3442. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3443. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3444. continue
  3445. }
  3446. _content = $$("div", {
  3447. className: "U_MD_D_KO",
  3448. "onmousedown": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_szherTeacherDeskIconInfo[i]]),
  3452. "onclick": U.UF.C.closure(function (obj) {
  3453. //防止拖动图标即打开了桌面应用
  3454. U.MD.D.click(this, obj);
  3455. }, [_szherTeacherDeskIconInfo[i]])
  3456. }, _frag); //
  3457. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3458. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3459. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3460. }
  3461. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3462. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3463. _content = $$("div", {
  3464. className: "U_MD_D_KO",
  3465. "onmousedown": U.UF.C.closure(function (obj) {
  3466. //防止拖动图标即打开了桌面应用
  3467. U.MD.D.click(this, obj);
  3468. }, [_heyuannAdminDeskIconInfo[i]]),
  3469. "onclick": U.UF.C.closure(function (obj) {
  3470. //防止拖动图标即打开了桌面应用
  3471. U.MD.D.click(this, obj);
  3472. }, [_heyuannAdminDeskIconInfo[i]])
  3473. }, _frag); //
  3474. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3475. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3476. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3477. }
  3478. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3479. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3480. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3481. continue
  3482. }
  3483. _content = $$("div", {
  3484. className: "U_MD_D_KO",
  3485. "onmousedown": U.UF.C.closure(function (obj) {
  3486. //防止拖动图标即打开了桌面应用
  3487. U.MD.D.click(this, obj);
  3488. }, [_heyuanTeacherDeskIconInfo[i]]),
  3489. "onclick": U.UF.C.closure(function (obj) {
  3490. //防止拖动图标即打开了桌面应用
  3491. U.MD.D.click(this, obj);
  3492. }, [_heyuanTeacherDeskIconInfo[i]])
  3493. }, _frag); //
  3494. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3495. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3496. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3497. } //
  3498. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3499. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3500. _content = $$("div", {
  3501. className: "U_MD_D_KO",
  3502. "onmousedown": U.UF.C.closure(function (obj) {
  3503. //防止拖动图标即打开了桌面应用
  3504. U.MD.D.click(this, obj);
  3505. }, [_dseiAdminDeskIconInfo[i]]),
  3506. "onclick": U.UF.C.closure(function (obj) {
  3507. //防止拖动图标即打开了桌面应用
  3508. U.MD.D.click(this, obj);
  3509. }, [_dseiAdminDeskIconInfo[i]])
  3510. }, _frag); //
  3511. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3512. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3513. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3514. }
  3515. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3516. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3517. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3518. continue
  3519. }
  3520. _content = $$("div", {
  3521. className: "U_MD_D_KO",
  3522. "onmousedown": U.UF.C.closure(function (obj) {
  3523. //防止拖动图标即打开了桌面应用
  3524. U.MD.D.click(this, obj);
  3525. }, [_dseiTeacherDeskIconInfo[i]]),
  3526. "onclick": U.UF.C.closure(function (obj) {
  3527. //防止拖动图标即打开了桌面应用
  3528. U.MD.D.click(this, obj);
  3529. }, [_dseiTeacherDeskIconInfo[i]])
  3530. }, _frag); //
  3531. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3532. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3533. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3534. } //
  3535. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3536. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3537. _content = $$("div", {
  3538. className: "U_MD_D_KO",
  3539. "onmousedown": U.UF.C.closure(function (obj) {
  3540. //防止拖动图标即打开了桌面应用
  3541. U.MD.D.click(this, obj);
  3542. }, [_chjyjAdminDeskIconInfo[i]]),
  3543. "onclick": U.UF.C.closure(function (obj) {
  3544. //防止拖动图标即打开了桌面应用
  3545. U.MD.D.click(this, obj);
  3546. }, [_chjyjAdminDeskIconInfo[i]])
  3547. }, _frag); //
  3548. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3549. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3550. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3551. }//
  3552. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3553. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3554. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3555. continue
  3556. }
  3557. _content = $$("div", {
  3558. className: "U_MD_D_KO",
  3559. "onmousedown": U.UF.C.closure(function (obj) {
  3560. //防止拖动图标即打开了桌面应用
  3561. U.MD.D.click(this, obj);
  3562. }, [_chjyjTeacherDeskIconInfo[i]]),
  3563. "onclick": U.UF.C.closure(function (obj) {
  3564. //防止拖动图标即打开了桌面应用
  3565. U.MD.D.click(this, obj);
  3566. }, [_chjyjTeacherDeskIconInfo[i]])
  3567. }, _frag); //
  3568. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3569. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3570. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3571. }
  3572. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3573. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3574. _content = $$("div", {
  3575. className: "U_MD_D_KO",
  3576. "onmousedown": U.UF.C.closure(function (obj) {
  3577. //防止拖动图标即打开了桌面应用
  3578. U.MD.D.click(this, obj);
  3579. }, [_szjkyAdminDeskIconInfo[i]]),
  3580. "onclick": U.UF.C.closure(function (obj) {
  3581. //防止拖动图标即打开了桌面应用
  3582. U.MD.D.click(this, obj);
  3583. }, [_szjkyAdminDeskIconInfo[i]])
  3584. }, _frag); //
  3585. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3586. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3587. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3588. }//
  3589. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3590. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3591. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3592. continue
  3593. }
  3594. _content = $$("div", {
  3595. className: "U_MD_D_KO",
  3596. "onmousedown": U.UF.C.closure(function (obj) {
  3597. //防止拖动图标即打开了桌面应用
  3598. U.MD.D.click(this, obj);
  3599. }, [_szjkyTeacherDeskIconInfo[i]]),
  3600. "onclick": U.UF.C.closure(function (obj) {
  3601. //防止拖动图标即打开了桌面应用
  3602. U.MD.D.click(this, obj);
  3603. }, [_szjkyTeacherDeskIconInfo[i]])
  3604. }, _frag); //
  3605. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3606. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3607. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3608. }
  3609. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3610. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3611. _content = $$("div", {
  3612. className: "U_MD_D_KO",
  3613. "onmousedown": U.UF.C.closure(function (obj) {
  3614. //防止拖动图标即打开了桌面应用
  3615. U.MD.D.click(this, obj);
  3616. }, [_x020201AdminDeskIconInfo[i]]),
  3617. "onclick": U.UF.C.closure(function (obj) {
  3618. //防止拖动图标即打开了桌面应用
  3619. U.MD.D.click(this, obj);
  3620. }, [_x020201AdminDeskIconInfo[i]])
  3621. }, _frag); //
  3622. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3623. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3624. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3625. }//
  3626. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3627. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3628. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3629. continue
  3630. }
  3631. _content = $$("div", {
  3632. className: "U_MD_D_KO",
  3633. "onmousedown": U.UF.C.closure(function (obj) {
  3634. //防止拖动图标即打开了桌面应用
  3635. U.MD.D.click(this, obj);
  3636. }, [_x020201TeacherDeskIconInfo[i]]),
  3637. "onclick": U.UF.C.closure(function (obj) {
  3638. //防止拖动图标即打开了桌面应用
  3639. U.MD.D.click(this, obj);
  3640. }, [_x020201TeacherDeskIconInfo[i]])
  3641. }, _frag); //
  3642. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3643. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3644. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3645. }
  3646. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3647. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3648. _content = $$("div", {
  3649. className: "U_MD_D_KO",
  3650. "onmousedown": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_SCNUETAdminDeskIconInfo[i]]),
  3654. "onclick": U.UF.C.closure(function (obj) {
  3655. //防止拖动图标即打开了桌面应用
  3656. U.MD.D.click(this, obj);
  3657. }, [_SCNUETAdminDeskIconInfo[i]])
  3658. }, _frag); //
  3659. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3660. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3661. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3662. }//
  3663. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3664. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3665. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3666. continue
  3667. }
  3668. _content = $$("div", {
  3669. className: "U_MD_D_KO",
  3670. "onmousedown": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3674. "onclick": U.UF.C.closure(function (obj) {
  3675. //防止拖动图标即打开了桌面应用
  3676. U.MD.D.click(this, obj);
  3677. }, [_SCNUETTeacherDeskIconInfo[i]])
  3678. }, _frag); //
  3679. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3680. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3681. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3682. }
  3683. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3684. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3685. _content = $$("div", {
  3686. className: "U_MD_D_KO",
  3687. "onmousedown": U.UF.C.closure(function (obj) {
  3688. //防止拖动图标即打开了桌面应用
  3689. U.MD.D.click(this, obj);
  3690. }, [_futianAdminDeskIconInfo[i]]),
  3691. "onclick": U.UF.C.closure(function (obj) {
  3692. //防止拖动图标即打开了桌面应用
  3693. U.MD.D.click(this, obj);
  3694. }, [_futianAdminDeskIconInfo[i]])
  3695. }, _frag); //
  3696. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3697. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3698. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3699. }
  3700. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3701. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3702. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3703. continue
  3704. }
  3705. _content = $$("div", {
  3706. className: "U_MD_D_KO",
  3707. "onmousedown": U.UF.C.closure(function (obj) {
  3708. //防止拖动图标即打开了桌面应用
  3709. U.MD.D.click(this, obj);
  3710. }, [_futianTeacherDeskIconInfo[i]]),
  3711. "onclick": U.UF.C.closure(function (obj) {
  3712. //防止拖动图标即打开了桌面应用
  3713. U.MD.D.click(this, obj);
  3714. }, [_futianTeacherDeskIconInfo[i]])
  3715. }, _frag); //
  3716. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3717. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3718. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3719. }
  3720. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3721. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3722. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3723. continue
  3724. }
  3725. _content = $$("div", {
  3726. className: "U_MD_D_KO",
  3727. "onmousedown": U.UF.C.closure(function (obj) {
  3728. //防止拖动图标即打开了桌面应用
  3729. U.MD.D.click(this, obj);
  3730. }, [_MingdeTeacherDeskIcon[i]]),
  3731. "onclick": U.UF.C.closure(function (obj) {
  3732. //防止拖动图标即打开了桌面应用
  3733. U.MD.D.click(this, obj);
  3734. }, [_MingdeTeacherDeskIcon[i]])
  3735. }, _frag); //
  3736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3739. }
  3740. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3741. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3742. _content = $$("div", {
  3743. className: "U_MD_D_KO",
  3744. "onmousedown": U.UF.C.closure(function (obj) {
  3745. //防止拖动图标即打开了桌面应用
  3746. U.MD.D.click(this, obj);
  3747. }, [_lhsAdminDesktopIconInfo[i]]),
  3748. "onclick": U.UF.C.closure(function (obj) {
  3749. //防止拖动图标即打开了桌面应用
  3750. U.MD.D.click(this, obj);
  3751. }, [_lhsAdminDesktopIconInfo[i]])
  3752. }, _frag); //
  3753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3756. }
  3757. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3758. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3759. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3760. continue
  3761. }
  3762. _content = $$("div", {
  3763. className: "U_MD_D_KO",
  3764. "onmousedown": U.UF.C.closure(function (obj) {
  3765. //防止拖动图标即打开了桌面应用
  3766. U.MD.D.click(this, obj);
  3767. }, [_lhsteacherDesktopIconInfo[i]]),
  3768. "onclick": U.UF.C.closure(function (obj) {
  3769. //防止拖动图标即打开了桌面应用
  3770. U.MD.D.click(this, obj);
  3771. }, [_lhsteacherDesktopIconInfo[i]])
  3772. }, _frag); //
  3773. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3774. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3775. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3776. }
  3777. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3778. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3779. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3780. continue
  3781. }
  3782. _content = $$("div", {
  3783. className: "U_MD_D_KO",
  3784. "onmousedown": U.UF.C.closure(function (obj) {
  3785. //防止拖动图标即打开了桌面应用
  3786. U.MD.D.click(this, obj);
  3787. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3788. "onclick": U.UF.C.closure(function (obj) {
  3789. //防止拖动图标即打开了桌面应用
  3790. U.MD.D.click(this, obj);
  3791. }, [_zhoujiateacherDesktopIconInfo[i]])
  3792. }, _frag); //
  3793. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3794. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3795. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3796. }
  3797. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3798. for (i = 0; i < _hanDeskIcon.length; i++) {
  3799. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3800. continue
  3801. }
  3802. _content = $$("div", {
  3803. className: "U_MD_D_KO",
  3804. "onmousedown": U.UF.C.closure(function (obj) {
  3805. //防止拖动图标即打开了桌面应用
  3806. U.MD.D.click(this, obj);
  3807. }, [_hanDeskIcon[i]]),
  3808. "onclick": U.UF.C.closure(function (obj) {
  3809. //防止拖动图标即打开了桌面应用
  3810. U.MD.D.click(this, obj);
  3811. }, [_hanDeskIcon[i]])
  3812. }, _frag); //
  3813. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3814. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3815. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3816. }
  3817. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3818. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3819. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3820. continue
  3821. }
  3822. _content = $$("div", {
  3823. className: "U_MD_D_KO",
  3824. "onmousedown": U.UF.C.closure(function (obj) {
  3825. //防止拖动图标即打开了桌面应用
  3826. U.MD.D.click(this, obj);
  3827. }, [_orgStemDeskIcon[i]]),
  3828. "onclick": U.UF.C.closure(function (obj) {
  3829. //防止拖动图标即打开了桌面应用
  3830. U.MD.D.click(this, obj);
  3831. }, [_orgStemDeskIcon[i]])
  3832. }, _frag); //
  3833. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3834. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3835. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3836. }
  3837. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3838. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3839. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3840. continue
  3841. }
  3842. _content = $$("div", {
  3843. className: "U_MD_D_KO",
  3844. "onmousedown": U.UF.C.closure(function (obj) {
  3845. //防止拖动图标即打开了桌面应用
  3846. U.MD.D.click(this, obj);
  3847. }, [_szulsDeskIcon[i]]),
  3848. "onclick": U.UF.C.closure(function (obj) {
  3849. //防止拖动图标即打开了桌面应用
  3850. U.MD.D.click(this, obj);
  3851. }, [_szulsDeskIcon[i]])
  3852. }, _frag); //
  3853. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3854. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3855. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3856. }
  3857. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3858. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3859. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3860. continue
  3861. }
  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. }, [_orgDesktopIconInfo[i]]),
  3868. "onclick": U.UF.C.closure(function (obj) {
  3869. //防止拖动图标即打开了桌面应用
  3870. U.MD.D.click(this, obj);
  3871. }, [_orgDesktopIconInfo[i]])
  3872. }, _frag); //
  3873. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3874. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3875. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3876. }
  3877. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3878. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3879. if(_role === 0 && _schoolDesktopIconInfo[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. }, [_schoolDesktopIconInfo[i]]),
  3888. "onclick": U.UF.C.closure(function (obj) {
  3889. //防止拖动图标即打开了桌面应用
  3890. U.MD.D.click(this, obj);
  3891. }, [_schoolDesktopIconInfo[i]])
  3892. }, _frag); //
  3893. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3894. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3895. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3896. }
  3897. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3898. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3899. if(_role === 0 && _GMteacherDesktopIconInfo[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. }, [_GMteacherDesktopIconInfo[i]]),
  3908. "onclick": U.UF.C.closure(function (obj) {
  3909. //防止拖动图标即打开了桌面应用
  3910. U.MD.D.click(this, obj);
  3911. }, [_GMteacherDesktopIconInfo[i]])
  3912. }, _frag); //
  3913. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3914. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3915. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3916. }
  3917. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3918. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3919. if(_role === 0 && _SONGteacherDesktopIconInfo[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. }, [_SONGteacherDesktopIconInfo[i]]),
  3928. "onclick": U.UF.C.closure(function (obj) {
  3929. //防止拖动图标即打开了桌面应用
  3930. U.MD.D.click(this, obj);
  3931. }, [_SONGteacherDesktopIconInfo[i]])
  3932. }, _frag); //
  3933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3936. }
  3937. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3938. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3939. _content = $$("div", {
  3940. className: "U_MD_D_KO",
  3941. "onmousedown": U.UF.C.closure(function (obj) {
  3942. //防止拖动图标即打开了桌面应用
  3943. U.MD.D.click(this, obj);
  3944. }, [_GMstudentDesktopIconInfo[i]]),
  3945. "onclick": U.UF.C.closure(function (obj) {
  3946. //防止拖动图标即打开了桌面应用
  3947. U.MD.D.click(this, obj);
  3948. }, [_GMstudentDesktopIconInfo[i]])
  3949. }, _frag); //
  3950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3953. }
  3954. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3955. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3956. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3957. continue
  3958. }
  3959. _content = $$("div", {
  3960. className: "U_MD_D_KO",
  3961. "onmousedown": U.UF.C.closure(function (obj) {
  3962. //防止拖动图标即打开了桌面应用
  3963. U.MD.D.click(this, obj);
  3964. }, [_tcTeacherDeskIconInfo[i]]),
  3965. "onclick": U.UF.C.closure(function (obj) {
  3966. //防止拖动图标即打开了桌面应用
  3967. U.MD.D.click(this, obj);
  3968. }, [_tcTeacherDeskIconInfo[i]])
  3969. }, _frag); //
  3970. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3971. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3972. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3973. }
  3974. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3975. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3976. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3977. continue
  3978. }
  3979. _content = $$("div", {
  3980. className: "U_MD_D_KO",
  3981. "onmousedown": U.UF.C.closure(function (obj) {
  3982. //防止拖动图标即打开了桌面应用
  3983. U.MD.D.click(this, obj);
  3984. }, [_tcOrganizerDeskIconInfo[i]]),
  3985. "onclick": U.UF.C.closure(function (obj) {
  3986. //防止拖动图标即打开了桌面应用
  3987. U.MD.D.click(this, obj);
  3988. }, [_tcOrganizerDeskIconInfo[i]])
  3989. }, _frag); //
  3990. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3991. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3992. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3993. }
  3994. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3995. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3996. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3997. continue
  3998. }
  3999. _content = $$("div", {
  4000. className: "U_MD_D_KO",
  4001. "onmousedown": U.UF.C.closure(function (obj) {
  4002. //防止拖动图标即打开了桌面应用
  4003. U.MD.D.click(this, obj);
  4004. }, [_szscTeacherDeskIconInfo[i]]),
  4005. "onclick": U.UF.C.closure(function (obj) {
  4006. //防止拖动图标即打开了桌面应用
  4007. U.MD.D.click(this, obj);
  4008. }, [_szscTeacherDeskIconInfo[i]])
  4009. }, _frag); //
  4010. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4011. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4012. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4013. }
  4014. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4015. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4016. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  4017. continue
  4018. }
  4019. _content = $$("div", {
  4020. className: "U_MD_D_KO",
  4021. "onmousedown": U.UF.C.closure(function (obj) {
  4022. //防止拖动图标即打开了桌面应用
  4023. U.MD.D.click(this, obj);
  4024. }, [_szscOrganizerDeskIconInfo[i]]),
  4025. "onclick": U.UF.C.closure(function (obj) {
  4026. //防止拖动图标即打开了桌面应用
  4027. U.MD.D.click(this, obj);
  4028. }, [_szscOrganizerDeskIconInfo[i]])
  4029. }, _frag); //
  4030. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4031. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4032. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4033. }
  4034. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  4035. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4036. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4037. continue
  4038. }
  4039. _content = $$("div", {
  4040. className: "U_MD_D_KO",
  4041. "onmousedown": U.UF.C.closure(function (obj) {
  4042. //防止拖动图标即打开了桌面应用
  4043. U.MD.D.click(this, obj);
  4044. }, [_nsfxTeacherDeskIconInfo[i]]),
  4045. "onclick": U.UF.C.closure(function (obj) {
  4046. //防止拖动图标即打开了桌面应用
  4047. U.MD.D.click(this, obj);
  4048. }, [_nsfxTeacherDeskIconInfo[i]])
  4049. }, _frag); //
  4050. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4051. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4052. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4053. }
  4054. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4055. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4056. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4057. continue
  4058. }
  4059. _content = $$("div", {
  4060. className: "U_MD_D_KO",
  4061. "onmousedown": U.UF.C.closure(function (obj) {
  4062. //防止拖动图标即打开了桌面应用
  4063. U.MD.D.click(this, obj);
  4064. }, [_stiaTeacherDeskIconInfo[i]]),
  4065. "onclick": U.UF.C.closure(function (obj) {
  4066. //防止拖动图标即打开了桌面应用
  4067. U.MD.D.click(this, obj);
  4068. }, [_stiaTeacherDeskIconInfo[i]])
  4069. }, _frag); //
  4070. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4071. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4072. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4073. }
  4074. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4075. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4076. if(_role === 0 && _szdjgTeacherDeskIconInfo[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. }, [_szdjgTeacherDeskIconInfo[i]]),
  4085. "onclick": U.UF.C.closure(function (obj) {
  4086. //防止拖动图标即打开了桌面应用
  4087. U.MD.D.click(this, obj);
  4088. }, [_szdjgTeacherDeskIconInfo[i]])
  4089. }, _frag); //
  4090. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4091. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4092. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4093. }
  4094. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4095. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4096. if(_role === 0 && _x010607TeacherDeskIconInfo[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. }, [_x010607TeacherDeskIconInfo[i]]),
  4105. "onclick": U.UF.C.closure(function (obj) {
  4106. //防止拖动图标即打开了桌面应用
  4107. U.MD.D.click(this, obj);
  4108. }, [_x010607TeacherDeskIconInfo[i]])
  4109. }, _frag); //
  4110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4113. }
  4114. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4115. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4116. if(_role === 0 && _xhlyTeacherDeskIconInfo[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. }, [_xhlyTeacherDeskIconInfo[i]]),
  4125. "onclick": U.UF.C.closure(function (obj) {
  4126. //防止拖动图标即打开了桌面应用
  4127. U.MD.D.click(this, obj);
  4128. }, [_xhlyTeacherDeskIconInfo[i]])
  4129. }, _frag); //
  4130. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4131. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4132. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4133. }
  4134. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4135. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4136. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[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. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4145. "onclick": U.UF.C.closure(function (obj) {
  4146. //防止拖动图标即打开了桌面应用
  4147. U.MD.D.click(this, obj);
  4148. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4149. }, _frag); //
  4150. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4151. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4152. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4153. }
  4154. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4155. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4156. if(_role === 0 && _x010503TeacherDeskIconInfo[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. }, [_x010503TeacherDeskIconInfo[i]]),
  4165. "onclick": U.UF.C.closure(function (obj) {
  4166. //防止拖动图标即打开了桌面应用
  4167. U.MD.D.click(this, obj);
  4168. }, [_x010503TeacherDeskIconInfo[i]])
  4169. }, _frag); //
  4170. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4171. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4172. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4173. }
  4174. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  4175. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4176. if(_role === 0 && _x010504TeacherDeskIconInfo[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. }, [_x010504TeacherDeskIconInfo[i]]),
  4185. "onclick": U.UF.C.closure(function (obj) {
  4186. //防止拖动图标即打开了桌面应用
  4187. U.MD.D.click(this, obj);
  4188. }, [_x010504TeacherDeskIconInfo[i]])
  4189. }, _frag); //
  4190. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4191. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4192. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4193. }
  4194. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4195. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4196. if(_role === 0 && _x010404TeacherDeskIconInfo[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. }, [_x010404TeacherDeskIconInfo[i]]),
  4205. "onclick": U.UF.C.closure(function (obj) {
  4206. //防止拖动图标即打开了桌面应用
  4207. U.MD.D.click(this, obj);
  4208. }, [_x010404TeacherDeskIconInfo[i]])
  4209. }, _frag); //
  4210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4213. }
  4214. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4215. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4216. if(_role === 0 && _x010204TeacherDeskIconInfo[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. }, [_x010204TeacherDeskIconInfo[i]]),
  4225. "onclick": U.UF.C.closure(function (obj) {
  4226. //防止拖动图标即打开了桌面应用
  4227. U.MD.D.click(this, obj);
  4228. }, [_x010204TeacherDeskIconInfo[i]])
  4229. }, _frag); //
  4230. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4231. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4232. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4233. }
  4234. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4235. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4236. if(_role === 0 && _x320101TeacherDeskIconInfo[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. }, [_x320101TeacherDeskIconInfo[i]]),
  4245. "onclick": U.UF.C.closure(function (obj) {
  4246. //防止拖动图标即打开了桌面应用
  4247. U.MD.D.click(this, obj);
  4248. }, [_x320101TeacherDeskIconInfo[i]])
  4249. }, _frag); //
  4250. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4251. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4252. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4253. }
  4254. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4255. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4256. if(_role === 0 && _trailTeacherDeskIconInfo[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. }, [_trailTeacherDeskIconInfo[i]]),
  4265. "onclick": U.UF.C.closure(function (obj) {
  4266. //防止拖动图标即打开了桌面应用
  4267. U.MD.D.click(this, obj);
  4268. }, [_trailTeacherDeskIconInfo[i]])
  4269. }, _frag); //
  4270. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4271. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4272. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4273. }
  4274. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4275. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4276. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[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. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4285. "onclick": U.UF.C.closure(function (obj) {
  4286. //防止拖动图标即打开了桌面应用
  4287. U.MD.D.click(this, obj);
  4288. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4289. }, _frag); //
  4290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4293. }
  4294. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4295. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4296. if(_role === 0 && _szsyTeacherDeskIconInfo[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. }, [_szsyTeacherDeskIconInfo[i]]),
  4305. "onclick": U.UF.C.closure(function (obj) {
  4306. //防止拖动图标即打开了桌面应用
  4307. U.MD.D.click(this, obj);
  4308. }, [_szsyTeacherDeskIconInfo[i]])
  4309. }, _frag); //
  4310. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4311. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4312. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4313. }
  4314. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4315. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4316. if(_role === 0 && _x010608TeacherDeskIconInfo[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. }, [_x010608TeacherDeskIconInfo[i]]),
  4325. "onclick": U.UF.C.closure(function (obj) {
  4326. //防止拖动图标即打开了桌面应用
  4327. U.MD.D.click(this, obj);
  4328. }, [_x010608TeacherDeskIconInfo[i]])
  4329. }, _frag); //
  4330. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4331. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4332. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4333. }
  4334. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4335. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4336. if(_role === 0 && _x010611TeacherDeskIconInfo[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. }, [_x010611TeacherDeskIconInfo[i]]),
  4345. "onclick": U.UF.C.closure(function (obj) {
  4346. //防止拖动图标即打开了桌面应用
  4347. U.MD.D.click(this, obj);
  4348. }, [_x010611TeacherDeskIconInfo[i]])
  4349. }, _frag); //
  4350. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4351. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4352. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4353. }
  4354. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  4355. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4356. if(_role === 0 && _tianyuanTeacherDeskIconInfo[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. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4365. "onclick": U.UF.C.closure(function (obj) {
  4366. //防止拖动图标即打开了桌面应用
  4367. U.MD.D.click(this, obj);
  4368. }, [_tianyuanTeacherDeskIconInfo[i]])
  4369. }, _frag); //
  4370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4373. }
  4374. } else {
  4375. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4376. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  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. }, [_teacherDesktopIconInfo[i]]),
  4385. "onclick": U.UF.C.closure(function (obj) {
  4386. //防止拖动图标即打开了桌面应用
  4387. U.MD.D.click(this, obj);
  4388. }, [_teacherDesktopIconInfo[i]])
  4389. }, _frag); //
  4390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4393. }
  4394. }
  4395. } else {
  4396. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4397. _content = $$("div", {
  4398. className: "U_MD_D_KO",
  4399. style: { 'width': '124px', 'height': '145px' },
  4400. "onmousedown": U.UF.C.closure(function (obj) {
  4401. //防止拖动图标即打开了桌面应用
  4402. U.MD.D.click(this, obj);
  4403. }, [_easyDesktopIconInfo[i]]),
  4404. "onclick": U.UF.C.closure(function (obj) {
  4405. //防止拖动图标即打开了桌面应用
  4406. U.MD.D.click(this, obj);
  4407. }, [_easyDesktopIconInfo[i]])
  4408. }, _frag); //
  4409. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4412. }
  4413. }
  4414. if (type == 1) {
  4415. //加载好后给图标定位
  4416. U.MD.D.iconPostion($(_frag).Child());
  4417. } else {
  4418. //加载好后给图标定位
  4419. U.MD.D.iconPostion2($(_frag).Child());
  4420. }
  4421. //把图标加载到页面
  4422. el.appendChild(_frag);
  4423. }
  4424. /**
  4425. * 显示任务栏
  4426. *
  4427. * @param {element} 桌面元素
  4428. */
  4429. U.MD.D.I.displayTaskbar = function (el) {
  4430. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4431. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4432. //任务栏位置变化
  4433. U.selectEl(el).css({ "bottom": "0px" });
  4434. //桌面位置变话
  4435. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4436. }
  4437. }
  4438. //#region 桌面图标拖动逻辑
  4439. /**
  4440. * 桌面排列图标
  4441. *
  4442. * @param {element} 桌面元素
  4443. * @param {object} 上下相距的距离
  4444. * @param {object} 左右相距的距离
  4445. * @return {object} 命名空间
  4446. */
  4447. U.MD.D.iconPostion = function (childs, top, left) {
  4448. var i; //用于循环处理
  4449. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4450. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4451. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4452. for (i = 0; i < childs.length; i++) {
  4453. //如果竖排top超过了范围处理
  4454. if (top + 95 > US.height - 10) {
  4455. //left超过了页面范围处理,则向上重叠打印处理
  4456. if ((left + 180) > US.width) {
  4457. top -= 110;
  4458. left -= 90;
  4459. }
  4460. //没有超过范围,那么left+90添加到下一个竖排打印
  4461. else {
  4462. left += 90;
  4463. top = 15;
  4464. };
  4465. }
  4466. //给图标的位置赋值
  4467. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4468. if (i < childs.length - 1) {
  4469. //页面图标每次向下加95
  4470. top += 95;
  4471. }
  4472. }
  4473. //返回最后调用的图标的位置
  4474. return [top, left];
  4475. }
  4476. /**
  4477. * 桌面排列图标
  4478. *
  4479. * @param {element} 桌面元素
  4480. * @param {object} 上下相距的距离
  4481. * @param {object} 左右相距的距离
  4482. * @return {object} 命名空间
  4483. */
  4484. U.MD.D.iconPostion2 = function (childs, top, left) {
  4485. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4486. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4487. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4488. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4489. for (i = 0; i < childs.length; i++) {
  4490. //如果竖排top超过了范围处理
  4491. if (left + 150 > US.width - 10) {
  4492. //left超过了页面范围处理,则向上重叠打印处理
  4493. if ((top + 180) > US.Height) {
  4494. top -= 150;
  4495. left -= 150;
  4496. }
  4497. //没有超过范围,那么left+90添加到下一个竖排打印
  4498. else {
  4499. top += 150;
  4500. left = ol;
  4501. };
  4502. }
  4503. //给图标的位置赋值
  4504. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4505. if (i < childs.length - 1) {
  4506. //页面图标每次向下加95
  4507. left += 150;
  4508. }
  4509. }
  4510. //返回最后调用的图标的位置
  4511. return [top, left];
  4512. }
  4513. /**
  4514. * 桌面点击事件逻辑
  4515. *
  4516. * @param {element} 桌面元素
  4517. * @param {object} 上下相距的距离
  4518. * @param {object} 左右相距的距离
  4519. * @return {object} 命名空间
  4520. */
  4521. U.MD.D.click = function (el, obj) {
  4522. var _buttonnumber = event.button; //点击的按钮的事件值
  4523. var _userinfo = US.userInfo;
  4524. U.UF.EV.stopBubble(); //阻止向上冒泡
  4525. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4526. if (_buttonnumber < 2) {
  4527. //如果是click事件的处理
  4528. if (event.type == "click") {
  4529. //如果元素在mousemove事件中没有移动则出发click事件
  4530. if (!U.MD.D.I.IsDrag) {
  4531. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4532. U.alert("请先登录您的账号!");
  4533. setTimeout(() => {
  4534. U.MD.U.L.login();
  4535. }, 2000);
  4536. } else {
  4537. //打开应用处理
  4538. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4539. }
  4540. }
  4541. }
  4542. //如果是mouse事件的处理
  4543. else {
  4544. if (US.Config.type == '1') {
  4545. //拖动处理,添加拖动和拖动结束事件
  4546. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4547. }
  4548. }
  4549. U.MD.D.I.IsDrag = false;
  4550. }
  4551. }
  4552. /**
  4553. * 拖动的处理
  4554. *
  4555. */
  4556. U.MD.D.iconMove = function () {
  4557. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4558. U.MD.D.I.IsDrag = true;
  4559. }
  4560. /**
  4561. * 拖动结束后,这里是定位处理,以网状的形式定位
  4562. *
  4563. * @param {element} 拖动的元素
  4564. * @return {object} 命名空间
  4565. */
  4566. U.MD.D.iconUp = function (el) {
  4567. var _top = 15,
  4568. _left = 20,
  4569. _margin,
  4570. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4571. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4572. if (_positioninfo["OT"] > 15) {
  4573. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4574. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4575. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4576. }
  4577. if (_positioninfo["OL"] > 20) {
  4578. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4579. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4580. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4581. }
  4582. //while循环判断么一个重叠的元素
  4583. do {
  4584. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4585. _top = _positioninfo[0] + 95; //得到定位后的top
  4586. _left = _positioninfo[1]; //得到定位后的left
  4587. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4588. }
  4589. /**
  4590. * 判断拖动后图标是否重叠
  4591. *
  4592. * @param {element} 拖动的元素
  4593. * @param {element} 桌面所有的元素
  4594. * @param {array} 拖动元素的位置
  4595. ----------[0] 上 top
  4596. ----------[1] 左 left
  4597. * @return {object} 命名空间
  4598. */
  4599. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4600. //循环所有的图标
  4601. for (var i = 0; i < childs.length; i++) {
  4602. //判断有没有和该图标诶子重叠的元素
  4603. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4604. return childs[i]; //如果有返回
  4605. }
  4606. }
  4607. }
  4608. //#endregion
  4609. //#endregion
  4610. //#region 桌面应用
  4611. /**
  4612. * 打开应用
  4613. *
  4614. * @param {string} 类型
  4615. -----------------Disk 网盘系统
  4616. -----------------PDisk 学习系统网盘
  4617. -----------------Poto 图片
  4618. -----------------Video 视频
  4619. -----------------Music 音乐
  4620. -----------------Word word
  4621. -----------------Excel excel
  4622. -----------------Txt 记事本
  4623. -----------------PB 学习系统
  4624. -----------------Blog 朋友圈系统
  4625. -----------------FTP ftp系统
  4626. -----------------Group 好友群
  4627. -----------------SY 首页系统
  4628. -----------------Set 个人设置
  4629. -----------------XSet 系统设置
  4630. -----------------App 我们所有的app
  4631. -----------------BC c.1473.cn 平台
  4632. -----------------CWeb d.1473.cn 变成平台
  4633. -----------------其他的外联系统 我们统一用iframe打开
  4634. * @param {array} 类型
  4635. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4636. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4637. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4638. 如果第一个参数为其他,则无第二个参数
  4639. * @returns {array}
  4640. */
  4641. window.addEventListener('message', function (e) { // 监听 message 事件
  4642. // alert(e.data.type);
  4643. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4644. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4645. //3是展示全部阶段 2学生 1老师 4专家
  4646. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4647. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4648. //3是展示全部阶段 2学生 1老师 4专家
  4649. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4650. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4651. //3是展示全部阶段 2学生 1老师 4专家
  4652. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4653. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4654. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4655. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4656. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4657. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4658. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4659. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4660. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4661. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4662. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4663. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4664. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4665. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4666. //3是展示全部阶段 2学生 1老师 4专家
  4667. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4668. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4669. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4670. U.MD.D.I.selectUser();
  4671. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4672. var _formel = document.getElementById("study");
  4673. U.UF.F.windowZooming(_formel);
  4674. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4675. var _formel = document.getElementById("studyDetail");
  4676. U.UF.F.windowZooming(_formel);
  4677. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4678. var _formel = document.getElementById("studyDetail");
  4679. U.UF.F.windowZooming(_formel);
  4680. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4681. var _formel = document.getElementById("studentStudy");
  4682. U.UF.F.windowZooming(_formel);
  4683. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4684. // var _formel = document.getElementById("study");
  4685. //如果最大化了,那么就把他缩小
  4686. // if (_formel.ismaximize) {
  4687. // return;
  4688. // }
  4689. // U.UF.F.windowZooming(_formel);
  4690. // U.UF.F.topWindow(_formel);
  4691. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4692. // var _formel = document.getElementById("studyDetail");
  4693. //如果最大化了,那么就把他缩小
  4694. // if (_formel.ismaximize) {
  4695. // return;
  4696. // }
  4697. // U.UF.F.windowZooming(_formel);
  4698. // U.UF.F.topWindow(_formel);
  4699. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4700. // var _formel = document.getElementById("studentStudy");
  4701. // if (_formel.ismaximize) {
  4702. // return;
  4703. // }
  4704. // U.UF.F.windowZooming(_formel);
  4705. // U.UF.F.topWindow(_formel);
  4706. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4707. var _formel = document.getElementById("study");
  4708. // if (_formel.ismaximize) {
  4709. // return;
  4710. // }
  4711. // U.UF.F.windowZooming(_formel);
  4712. U.UF.F.topWindow(_formel);
  4713. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4714. var _formel = document.getElementById("studentIndex");
  4715. U.UF.F.windowZooming(_formel);
  4716. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4717. var _formel = document.getElementById("studyDetailS");
  4718. U.UF.F.windowZooming(_formel);
  4719. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4720. var _formel = document.getElementById("studioIndex");
  4721. U.UF.F.windowZooming(_formel);
  4722. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4723. var _formel = document.getElementById("studyDetailStudio");
  4724. U.UF.F.windowZooming(_formel);
  4725. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4726. var _formel = document.getElementById("studyDetailStudio");
  4727. U.UF.F.windowZooming(_formel);
  4728. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4729. var _formel = document.getElementById("studyDetailNT");
  4730. U.UF.F.windowZooming(_formel);
  4731. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4732. var _formel = document.getElementById("studyDetailS");
  4733. U.UF.F.windowZooming(_formel);
  4734. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4735. var _formel = document.getElementById("studyDetailS");
  4736. U.UF.F.topWindow(_formel);
  4737. } else if (e.data.tools && e.data.tools == "1") {
  4738. // U.MD.D.I.openApplication("whiteboard")
  4739. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4740. } else if (e.data.tools && e.data.tools == "2") {
  4741. U.MD.D.I.openApplication("note")
  4742. } else if (e.data.tools && e.data.tools == "3") {
  4743. // U.MD.D.I.openApplication("mind")
  4744. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4745. } else if (e.data.tools && e.data.tools == "4") {
  4746. U.MD.D.I.openApplication("investigation")
  4747. } else if (e.data.tools && e.data.tools == "6") {
  4748. // U.MD.D.I.openApplication("doc")
  4749. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4750. } else if (e.data.tools && e.data.tools == "7") {
  4751. // U.MD.D.I.openApplication("mindNetwork")
  4752. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4753. } else if (e.data.tools && e.data.tools == "8") {
  4754. U.MD.D.I.openApplication("library")
  4755. } else if (e.data.tools && e.data.tools == "17") {
  4756. U.MD.D.I.openApplication("stuLibrary")
  4757. } else if (e.data.tools && e.data.tools == "18") {
  4758. U.MD.D.I.openApplication("train")
  4759. } else if (e.data.tools && e.data.tools == "21") {
  4760. U.MD.D.I.openApplication("program")
  4761. } else if (e.data.tools && e.data.tools == "22") {
  4762. U.MD.D.I.openApplication("AIprogram2")
  4763. } else if (e.data.tools && e.data.tools == "23") {
  4764. U.MD.D.I.openApplication("Pythonprogram")
  4765. } else if (e.data.tools && e.data.tools == "24") {
  4766. U.MD.D.I.openApplication("AIprogram")
  4767. } else if (e.data.tools && e.data.tools == "25") {
  4768. U.MD.D.I.openApplication("sys")
  4769. } else if (e.data.tools && e.data.tools == "26") {
  4770. // U.MD.D.I.openApplication("courseDesign")
  4771. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4772. } else if (e.data.tools && e.data.tools == "31") {
  4773. U.MD.D.I.openApplication("netWorkPanel")
  4774. } else if (e.data.tools && e.data.tools == "32") {
  4775. U.MD.D.I.openApplication("codeEdit")
  4776. } else if (e.data.tools && e.data.tools == "57") {
  4777. U.MD.D.I.openApplication("CocoPi")
  4778. } else if (e.data.tools && e.data.tools == "63") {
  4779. U.MD.D.I.openApplication("Wood")
  4780. } else if (e.data.tools && e.data.tools == "58") {
  4781. U.MD.D.I.openApplication("car")
  4782. } else if (e.data.tools && e.data.tools == "59") {
  4783. U.MD.D.I.openApplication("lineSearch")
  4784. } else if (e.data.tools && e.data.tools == "60") {
  4785. U.MD.D.I.openApplication("deepLearning")
  4786. } else if (e.data.tools && e.data.tools == "61") {
  4787. U.MD.D.I.openApplication("allHistory")
  4788. } else if (e.data.tools && e.data.tools == "28") {
  4789. U.MD.D.I.openApplication("translation")
  4790. } else if (e.data.tools && e.data.tools == "37") {
  4791. U.MD.D.I.openApplication("mohe")
  4792. } else if (e.data.tools && e.data.tools == "38") {
  4793. U.MD.D.I.openApplication("24game")
  4794. } else if (e.data.tools && e.data.tools == "39") {
  4795. U.MD.D.I.openApplication("GeoGebra")
  4796. } else if (e.data.tools && e.data.tools == "43") {
  4797. U.MD.D.I.openApplication("studentEvaluate")
  4798. } else if (e.data.tools && e.data.tools == "44") {
  4799. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4800. } else if (e.data.tools && e.data.tools == "46") {
  4801. U.MD.D.I.openApplication("project")
  4802. } else if (e.data.tools && e.data.tools == "71") {
  4803. U.MD.D.I.openApplication("aigptCourse")
  4804. } else if (e.data.tools && e.data.tools == "1s") {
  4805. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4806. } else if (e.data.tools && e.data.tools == "3s") {
  4807. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4808. } else if (e.data.tools && e.data.tools == "6s") {
  4809. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4810. } else if (e.data.tools && e.data.tools == "1studio") {
  4811. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4812. } else if (e.data.tools && e.data.tools == "3studio") {
  4813. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4814. } else if (e.data.tools && e.data.tools == "6studio") {
  4815. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4816. } else if (e.data.tools && e.data.tools == "3y") {
  4817. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4818. } else if (e.data.tools && e.data.tools == "1y") {
  4819. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4820. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4821. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4822. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4823. U.MD.D.I.openApplication("AIAnalyse")
  4824. } else if (e.data.tools && e.data.tools == "1teacher") {
  4825. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4826. } else if (e.data.tools && e.data.tools == "3teacher") {
  4827. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4828. } else if (e.data.tools && e.data.tools == "7teacher") {
  4829. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4830. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4831. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4832. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4833. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4834. } else if (e.data.tools && e.data.tools == "1E") {
  4835. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4836. } else if (e.data.tools && e.data.tools == "3E") {
  4837. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4838. } else if (e.data.tools && e.data.tools == "57y") {
  4839. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4840. } else if (e.data.tools && e.data.tools == "57u") {
  4841. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4842. } else if (e.data.tools && e.data.tools == "57teacher") {
  4843. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4844. } else if (e.data.tools && e.data.tools == "64") {
  4845. U.MD.D.I.openApplication("AIChat")
  4846. } else if (e.data.tools && e.data.tools == "66") {
  4847. U.MD.D.I.openApplication("formulaEdi")
  4848. } else if (e.data.tools && e.data.tools == "67") {
  4849. U.MD.D.I.openApplication("molStr")
  4850. } else if (e.data.tools && e.data.tools == "68") {
  4851. U.MD.D.I.openApplication("timeAxis")
  4852. } else if (e.data.tools && e.data.tools == "openCourse") {
  4853. let _data = {
  4854. typea: e.data.typea || '',
  4855. typeb: e.data.typeb || '',
  4856. typed: e.data.typed || '',
  4857. }
  4858. U.MD.D.I.openInApplication("index", _data)
  4859. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4860. let _data = {
  4861. classid: e.data.classid || '',
  4862. }
  4863. U.MD.D.I.openInApplication("dataClass", _data)
  4864. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4865. let _data = {
  4866. cid: e.data.cid || '',
  4867. gid: e.data.gid || '',
  4868. }
  4869. U.MD.D.I.openInApplication("opencCscl", _data)
  4870. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4871. U.MD.D.I.openApplication("dataBoardTest")
  4872. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4873. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4874. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4875. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4876. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4877. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4878. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  4879. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  4880. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4881. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4882. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4883. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4884. }else if (e.data.tools && e.data.tools == "loginSz") {
  4885. U.MD.D.I.openInApplication("loginSz")
  4886. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4887. if($('#classroom_observation_board')[0]){
  4888. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4889. }
  4890. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4891. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4892. if($('#classroom_observation_ob_comment')[0]){
  4893. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4894. }
  4895. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4896. }else if (e.data.tools && e.data.tools == "logout"){
  4897. U.MD.U.LO.logoutSystem()
  4898. }else if (e.data.tools && e.data.tools == "getLogin"){
  4899. let _iframe = $('#UI_Login')[0];
  4900. if (_iframe) {
  4901. var userInfo = US.userInfo;
  4902. var type = 2
  4903. if(userInfo && userInfo.userid){
  4904. type = 1
  4905. }
  4906. _contentWindow = _iframe.contentWindow;
  4907. _contentWindow.postMessage({ tools: "getLogin",type: type }, "*")
  4908. }
  4909. }
  4910. });
  4911. U.MD.D.I.selectUser = function () {
  4912. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4913. if (res.value[0].length > 0) {
  4914. US.userInfo = res.value[0][0];
  4915. $(".userName")[0].innerHTML = US.userInfo.username;
  4916. }
  4917. }, [], { "type": "GET", "withCredentials": true });
  4918. }
  4919. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4920. var _userinfo = US.userInfo, //登录用户信息
  4921. _userid = US.userInfo.userid, //登录用户id
  4922. _oid = _userinfo.organizeid,
  4923. _type = US.userInfo.type,
  4924. _org = US.userInfo.org,
  4925. _role = US.userInfo.role,
  4926. _classId = US.userInfo.classid;
  4927. if (_type == 4) {
  4928. tType = 4
  4929. }
  4930. switch (str) {
  4931. case "studyDetailNT": //无终端模式
  4932. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4933. setTimeout(() => {
  4934. U.MD.U.L.login();
  4935. }, 2000);
  4936. } else {
  4937. _formdiv = new U.UF.UI.form(
  4938. "课程详情",
  4939. $$("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 }), {
  4940. "id": "studyDetailNT",
  4941. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4942. "onresize": function () { }
  4943. }, {
  4944. closecallback: function () { }
  4945. }, { "style": { "height": "36px" } }).form; //创建窗体
  4946. _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); } }
  4947. break;
  4948. }
  4949. case "studyDetail":
  4950. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4951. setTimeout(() => {
  4952. U.MD.U.L.login();
  4953. }, 2000);
  4954. } else {
  4955. _formdiv = new U.UF.UI.form(
  4956. "课程详情",
  4957. $$("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 }), {
  4958. "id": "studyDetail",
  4959. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4960. "onresize": function () { }
  4961. }, {
  4962. closecallback: function () { }
  4963. }, { "style": { "height": "36px" } }).form; //创建窗体
  4964. _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); } }
  4965. break;
  4966. }
  4967. case "studyDetailTrain":
  4968. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4969. setTimeout(() => {
  4970. U.MD.U.L.login();
  4971. }, 2000);
  4972. } else {
  4973. _formdiv = new U.UF.UI.form(
  4974. "培训详情",
  4975. $$("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 }), {
  4976. "id": "studyDetailTrain",
  4977. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4978. "onresize": function () { }
  4979. }, {
  4980. closecallback: function () { }
  4981. }, { "style": { "height": "36px" } }).form; //创建窗体
  4982. _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); } }
  4983. break;
  4984. }
  4985. case "studyDetailS":
  4986. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4987. setTimeout(() => {
  4988. U.MD.U.L.login();
  4989. }, 2000);
  4990. } else {
  4991. _formdiv = new U.UF.UI.form(
  4992. "项目详情",
  4993. $$("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 }), {
  4994. "id": "studyDetailS",
  4995. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4996. "onresize": function () { }
  4997. }, {
  4998. closecallback: function () { }
  4999. }, { "style": { "height": "36px" } }).form; //创建窗体
  5000. _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); } }
  5001. break;
  5002. }
  5003. case "studyDetailStudio":
  5004. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5005. setTimeout(() => {
  5006. U.MD.U.L.login();
  5007. }, 2000);
  5008. } else {
  5009. _formdiv = new U.UF.UI.form(
  5010. "工作详情",
  5011. $$("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 }), {
  5012. "id": "studyDetailStudio",
  5013. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5014. "onresize": function () { }
  5015. }, {
  5016. closecallback: function () { }
  5017. }, { "style": { "height": "36px" } }).form; //创建窗体
  5018. _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); } }
  5019. break;
  5020. }
  5021. case "studyDetailS5":
  5022. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5023. setTimeout(() => {
  5024. U.MD.U.L.login();
  5025. }, 2000);
  5026. } else {
  5027. _formdiv = new U.UF.UI.form(
  5028. "项目详情",
  5029. $$("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 }), {
  5030. "id": "studyDetailS",
  5031. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5032. "onresize": function () { }
  5033. }, {
  5034. closecallback: function () { }
  5035. }, { "style": { "height": "36px" } }).form; //创建窗体
  5036. _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); } }
  5037. break;
  5038. }
  5039. case "studyDetailGM":
  5040. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5041. setTimeout(() => {
  5042. U.MD.U.L.login();
  5043. }, 2000);
  5044. } else {
  5045. _formdiv = new U.UF.UI.form(
  5046. "课程详情",
  5047. $$("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 }), {
  5048. "id": "studyDetail",
  5049. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5050. "onresize": function () { }
  5051. }, {
  5052. closecallback: function () { }
  5053. }, { "style": { "height": "36px" } }).form; //创建窗体
  5054. _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); } }
  5055. break;
  5056. }
  5057. case "hanUrl":
  5058. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5059. setTimeout(() => {
  5060. U.MD.U.L.login();
  5061. }, 2000);
  5062. } else {
  5063. _formdiv = new U.UF.UI.form(
  5064. "汉字宫",
  5065. $$("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" }), {
  5066. "id": "hanUrl",
  5067. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5068. "onresize": function () { }
  5069. }, {
  5070. closecallback: function () { }
  5071. }, { "style": { "height": "36px" } }).form; //创建窗体
  5072. _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); } }
  5073. break;
  5074. }
  5075. case "index":
  5076. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5077. setTimeout(() => {
  5078. U.MD.U.L.login();
  5079. }, 2000);
  5080. } else {
  5081. _formdiv = new U.UF.UI.form(
  5082. "课程中心",
  5083. $$("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 }), {
  5084. "id": "study",
  5085. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5086. "onresize": function () { }
  5087. }, {
  5088. closecallback: function () { }
  5089. }, { "style": { "height": "36px" } }).form; //创建窗体
  5090. _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); } }
  5091. break;
  5092. }
  5093. case "dataClass":
  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-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  5102. "id": "dataClass",
  5103. "style": { "width": "90%", "height": "90%", "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/evaluation.png)" }, "name": "数据报告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5109. break;
  5110. }
  5111. case "opencCscl":
  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": "https://cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  5120. "id": "futureClass",
  5121. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5122. "onresize": function () { }
  5123. }, {
  5124. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5125. }, { "style": { "height": "36px" } }).form; //创建窗体
  5126. _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); } }
  5127. break;
  5128. }
  5129. case "openCourseUpdate":
  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-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5138. "id": "openCourseUpdate",
  5139. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5140. "onresize": function () { }
  5141. }, {
  5142. closecallback: function () { }
  5143. }, { "style": { "height": "36px" } }).form; //创建窗体
  5144. break;
  5145. }
  5146. case "openNewCourseUpdate":
  5147. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5148. setTimeout(() => {
  5149. U.MD.U.L.login();
  5150. }, 2000);
  5151. } else {
  5152. _formdiv = new U.UF.UI.form(
  5153. "课程管理",
  5154. $$("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 }), {
  5155. "id": "openCourseUpdate",
  5156. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5157. "onresize": function () { }
  5158. }, {
  5159. closecallback: function () { }
  5160. }, { "style": { "height": "36px" } }).form; //创建窗体
  5161. break;
  5162. }
  5163. case "openCourseEUpdate":
  5164. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5165. setTimeout(() => {
  5166. U.MD.U.L.login();
  5167. }, 2000);
  5168. } else {
  5169. _formdiv = new U.UF.UI.form(
  5170. "课程管理",
  5171. $$("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 }), {
  5172. "id": "openCourseUpdate",
  5173. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5174. "onresize": function () { }
  5175. }, {
  5176. closecallback: function () { }
  5177. }, { "style": { "height": "36px" } }).form; //创建窗体
  5178. break;
  5179. }
  5180. case "openCourseAiUpdate":
  5181. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5182. setTimeout(() => {
  5183. U.MD.U.L.login();
  5184. }, 2000);
  5185. } else {
  5186. _formdiv = new U.UF.UI.form(
  5187. "课程管理",
  5188. $$("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 }), {
  5189. "id": "openCourseUpdate",
  5190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. "onresize": function () { }
  5192. }, {
  5193. closecallback: function () { }
  5194. }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. break;
  5196. }
  5197. case "openCourseAiUpdate2":
  5198. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5199. setTimeout(() => {
  5200. U.MD.U.L.login();
  5201. }, 2000);
  5202. } else {
  5203. _formdiv = new U.UF.UI.form(
  5204. "课程管理",
  5205. $$("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 }), {
  5206. "id": "openCourseUpdate",
  5207. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5208. "onresize": function () { }
  5209. }, {
  5210. closecallback: function () { }
  5211. }, { "style": { "height": "36px" } }).form; //创建窗体
  5212. break;
  5213. }
  5214. case "openCourseNewUpdate":
  5215. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5216. setTimeout(() => {
  5217. U.MD.U.L.login();
  5218. }, 2000);
  5219. } else {
  5220. _formdiv = new U.UF.UI.form(
  5221. "课程管理",
  5222. $$("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 }), {
  5223. "id": "openCourseUpdate",
  5224. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5225. "onresize": function () { }
  5226. }, {
  5227. closecallback: function () { }
  5228. }, { "style": { "height": "36px" } }).form; //创建窗体
  5229. break;
  5230. }
  5231. case "inviteLoginSz":
  5232. _formdiv = new U.UF.UI.form(
  5233. "随机码登录",
  5234. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  5235. "id": "loginSz",
  5236. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5237. "onresize": function () { }
  5238. }, {
  5239. closecallback: function () { }
  5240. }, { "style": { "height": "36px" } }).form; //创建窗体
  5241. break;
  5242. case "loginSz":
  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": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5246. "id": "loginSz",
  5247. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5248. "onresize": function () { }
  5249. }, {
  5250. closecallback: function () { }
  5251. }, { "style": { "height": "36px" } }).form; //创建窗体
  5252. break;
  5253. case "teacher":
  5254. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5255. setTimeout(() => {
  5256. U.MD.U.L.login();
  5257. }, 2000);
  5258. } else {
  5259. _formdiv = new U.UF.UI.form(
  5260. "教师管理",
  5261. $$("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 }), {
  5262. "id": "teacher",
  5263. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5264. "onresize": function () { }
  5265. }, {
  5266. closecallback: function () { }
  5267. }, { "style": { "height": "36px" } }).form; //创建窗体
  5268. break;
  5269. }
  5270. case "dataBoardSZArea":
  5271. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5272. setTimeout(() => {
  5273. U.MD.U.L.login();
  5274. }, 2000);
  5275. } else {
  5276. _formdiv = new U.UF.UI.form(
  5277. "综合数据看板",
  5278. $$("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 }), {
  5279. "id": "dataBoardSZArea",
  5280. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5281. "onresize": function () { }
  5282. }, {
  5283. closecallback: function () { }
  5284. }, { "style": { "height": "36px" } }).form; //创建窗体
  5285. break;
  5286. }
  5287. case "dataBoardSZCity":
  5288. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5289. setTimeout(() => {
  5290. U.MD.U.L.login();
  5291. }, 2000);
  5292. } else {
  5293. _formdiv = new U.UF.UI.form(
  5294. "综合数据看板",
  5295. $$("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 }), {
  5296. "id": "dataBoardSZCity",
  5297. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5298. "onresize": function () { }
  5299. }, {
  5300. closecallback: function () { }
  5301. }, { "style": { "height": "36px" } }).form; //创建窗体
  5302. break;
  5303. }
  5304. case "classroom_observation_board":
  5305. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5306. setTimeout(() => {
  5307. U.MD.U.L.login();
  5308. }, 2000);
  5309. } else {
  5310. _formdiv = new U.UF.UI.form(
  5311. "课堂观察",
  5312. $$("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 }), {
  5313. "id": "classroom_observation_board",
  5314. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. break;
  5320. }
  5321. case "classroom_observation_ob_comment":
  5322. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5323. setTimeout(() => {
  5324. U.MD.U.L.login();
  5325. }, 2000);
  5326. } else {
  5327. _formdiv = new U.UF.UI.form(
  5328. "课堂审核",
  5329. $$("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 }), {
  5330. "id": "classroom_observation_ob_comment",
  5331. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5332. "onresize": function () { }
  5333. }, {
  5334. closecallback: function () { }
  5335. }, { "style": { "height": "36px" } }).form; //创建窗体
  5336. break;
  5337. }
  5338. }
  5339. }
  5340. U.MD.D.I.openApplication = function (str, obj, info) {
  5341. obj = obj || {};
  5342. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5343. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5344. _userinfo = US.userInfo, //登录用户信息
  5345. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5346. _oid = obj.organizeid || _userinfo.organizeid,
  5347. _type = US.userInfo.type,
  5348. _org = US.userInfo.org,
  5349. _role = US.userInfo.role,
  5350. _classId = US.userInfo.classid,
  5351. _TscreenType = 1
  5352. _screenType = 2,
  5353. _SscreenType = 3;
  5354. let iframeBool = true
  5355. if(U.UF.UI.form.allForm[str]){
  5356. iframeBool = false
  5357. }
  5358. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5359. return;
  5360. }
  5361. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5362. switch (str) {
  5363. case "studnetProject": //好友打开
  5364. _formdiv = new U.UF.UI.form(
  5365. "我的项目",
  5366. $$("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 }), {
  5367. "id": "studnetProject",
  5368. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _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); } }
  5374. break;
  5375. case "studentEvaluate": //好友打开
  5376. _formdiv = new U.UF.UI.form(
  5377. "我的评价",
  5378. $$("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 }), {
  5379. "id": "studentEvaluate",
  5380. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5381. "onresize": function () { }
  5382. }, {
  5383. closecallback: function () { }
  5384. }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. _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); } }
  5386. break;
  5387. case "my":
  5388. _formdiv = new U.UF.UI.form(
  5389. "我的资料",
  5390. $$("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 }), {
  5391. "id": "my",
  5392. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _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); } }
  5398. break;
  5399. case "program":
  5400. _formdiv = new U.UF.UI.form(
  5401. "编程平台",
  5402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5403. "id": "program",
  5404. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5405. "onresize": function () { }
  5406. }, {
  5407. closecallback: function () { }
  5408. }, { "style": { "height": "36px" } }).form; //创建窗体
  5409. _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); } }
  5410. break;
  5411. case "library":
  5412. _formdiv = new U.UF.UI.form(
  5413. "素材库",
  5414. $$("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 }), {
  5415. "id": "library",
  5416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5417. "onresize": function () { }
  5418. }, {
  5419. closecallback: function () { }
  5420. }, { "style": { "height": "36px" } }).form; //创建窗体
  5421. _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); } }
  5422. break;
  5423. case "whiteboard":
  5424. _formdiv = new U.UF.UI.form(
  5425. "电子白板",
  5426. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5427. "id": "whiteboard",
  5428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5429. "onresize": function () { }
  5430. }, {
  5431. closecallback: function () { }
  5432. }, { "style": { "height": "36px" } }).form; //创建窗体
  5433. _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); } }
  5434. break;
  5435. case "investigation":
  5436. _formdiv = new U.UF.UI.form(
  5437. "问卷调查",
  5438. $$("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 }), {
  5439. "id": "investigation",
  5440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5441. "onresize": function () { }
  5442. }, {
  5443. closecallback: function () { }
  5444. }, { "style": { "height": "36px" } }).form; //创建窗体
  5445. _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); } }
  5446. break;
  5447. case "note":
  5448. _formdiv = new U.UF.UI.form(
  5449. "便签分类",
  5450. $$("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 }), {
  5451. "id": "note",
  5452. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5453. "onresize": function () { }
  5454. }, {
  5455. closecallback: function () { }
  5456. }, { "style": { "height": "36px" } }).form; //创建窗体
  5457. _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); } }
  5458. break;
  5459. // case "score":
  5460. // _formdiv = new U.UF.UI.form(
  5461. // "量规评分",
  5462. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5463. // "id": "score",
  5464. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5465. // "onresize": function() {}
  5466. // }, {
  5467. // closecallback: function() {}
  5468. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5469. // _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); } }
  5470. // break;
  5471. case "mind":
  5472. _formdiv = new U.UF.UI.form(
  5473. "思维导图",
  5474. $$("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"
  5475. "id": "mind",
  5476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5477. "onresize": function () { }
  5478. }, {
  5479. closecallback: function () { }
  5480. }, { "style": { "height": "36px" } }).form; //创建窗体
  5481. _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); } }
  5482. break;
  5483. case "doc":
  5484. // U.MD.D.I.isRoom();
  5485. _formdiv = new U.UF.UI.form(
  5486. "协同文档",
  5487. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5488. "id": "doc",
  5489. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5490. "onresize": function () { }
  5491. }, {
  5492. closecallback: function () { }
  5493. }, { "style": { "height": "36px" } }).form; //创建窗体
  5494. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5495. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5496. // })
  5497. _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); } }
  5498. break;
  5499. case "studentStudy":
  5500. _formdiv = new U.UF.UI.form(
  5501. "课程中心",
  5502. $$("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
  5503. "id": "studentStudy",
  5504. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5505. "onresize": function () { }
  5506. }, {
  5507. closecallback: function () { }
  5508. }, { "style": { "height": "36px" } }).form; //创建窗体
  5509. _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); } }
  5510. break;
  5511. case "train": //好友打开
  5512. _formdiv = new U.UF.UI.form(
  5513. "训练平台",
  5514. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5515. "id": "train",
  5516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5517. "onresize": function () { }
  5518. }, {
  5519. closecallback: function () { }
  5520. }, { "style": { "height": "36px" } }).form; //创建窗体
  5521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5522. break;
  5523. case "mindNetwork": //好友打开
  5524. _formdiv = new U.UF.UI.form(
  5525. "思维网格",
  5526. $$("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 }), {
  5527. "id": "mindNetwork",
  5528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5529. "onresize": function () { }
  5530. }, {
  5531. closecallback: function () { }
  5532. }, { "style": { "height": "36px" } }).form; //创建窗体
  5533. _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); } }
  5534. break;
  5535. case "studentClassRoom": //好友打开
  5536. _formdiv = new U.UF.UI.form(
  5537. "实时课堂",
  5538. $$("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 }), {
  5539. "id": "studentClassRoom",
  5540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5541. "onresize": function () { }
  5542. }, {
  5543. closecallback: function () { }
  5544. }, { "style": { "height": "36px" } }).form; //创建窗体
  5545. _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); } }
  5546. setTimeout(() => {
  5547. U.UF.F.windowZooming(_formdiv)
  5548. }, 0);
  5549. break;
  5550. }
  5551. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5552. switch (str) {
  5553. case "studnetProject": //好友打开
  5554. _formdiv = new U.UF.UI.form(
  5555. "我的项目",
  5556. $$("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 }), {
  5557. "id": "studnetProject",
  5558. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5559. "onresize": function () { }
  5560. }, {
  5561. closecallback: function () { }
  5562. }, { "style": { "height": "36px" } }).form; //创建窗体
  5563. _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); } }
  5564. break;
  5565. case "studentEvaluate": //好友打开
  5566. _formdiv = new U.UF.UI.form(
  5567. "我的评价",
  5568. $$("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 }), {
  5569. "id": "studentEvaluate",
  5570. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5571. "onresize": function () { }
  5572. }, {
  5573. closecallback: function () { }
  5574. }, { "style": { "height": "36px" } }).form; //创建窗体
  5575. _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); } }
  5576. break;
  5577. case "my":
  5578. _formdiv = new U.UF.UI.form(
  5579. "我的资料",
  5580. $$("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 }), {
  5581. "id": "my",
  5582. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5583. "onresize": function () { }
  5584. }, {
  5585. closecallback: function () { }
  5586. }, { "style": { "height": "36px" } }).form; //创建窗体
  5587. _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); } }
  5588. break;
  5589. case "program":
  5590. _formdiv = new U.UF.UI.form(
  5591. "编程平台",
  5592. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5593. "id": "program",
  5594. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5595. "onresize": function () { }
  5596. }, {
  5597. closecallback: function () { }
  5598. }, { "style": { "height": "36px" } }).form; //创建窗体
  5599. _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); } }
  5600. break;
  5601. case "library":
  5602. _formdiv = new U.UF.UI.form(
  5603. "素材库",
  5604. $$("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 }), {
  5605. "id": "library",
  5606. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5607. "onresize": function () { }
  5608. }, {
  5609. closecallback: function () { }
  5610. }, { "style": { "height": "36px" } }).form; //创建窗体
  5611. _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); } }
  5612. break;
  5613. case "whiteboard":
  5614. _formdiv = new U.UF.UI.form(
  5615. "电子白板",
  5616. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5617. "id": "whiteboard",
  5618. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5619. "onresize": function () { }
  5620. }, {
  5621. closecallback: function () { }
  5622. }, { "style": { "height": "36px" } }).form; //创建窗体
  5623. _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); } }
  5624. break;
  5625. case "investigation":
  5626. _formdiv = new U.UF.UI.form(
  5627. "问卷调查",
  5628. $$("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 }), {
  5629. "id": "investigation",
  5630. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5631. "onresize": function () { }
  5632. }, {
  5633. closecallback: function () { }
  5634. }, { "style": { "height": "36px" } }).form; //创建窗体
  5635. _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); } }
  5636. break;
  5637. case "note":
  5638. _formdiv = new U.UF.UI.form(
  5639. "便签分类",
  5640. $$("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 }), {
  5641. "id": "note",
  5642. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5643. "onresize": function () { }
  5644. }, {
  5645. closecallback: function () { }
  5646. }, { "style": { "height": "36px" } }).form; //创建窗体
  5647. _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); } }
  5648. break;
  5649. // case "score":
  5650. // _formdiv = new U.UF.UI.form(
  5651. // "量规评分",
  5652. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5653. // "id": "score",
  5654. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5655. // "onresize": function() {}
  5656. // }, {
  5657. // closecallback: function() {}
  5658. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5659. // _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); } }
  5660. // break;
  5661. case "mind":
  5662. _formdiv = new U.UF.UI.form(
  5663. "思维导图",
  5664. $$("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"
  5665. "id": "mind",
  5666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5667. "onresize": function () { }
  5668. }, {
  5669. closecallback: function () { }
  5670. }, { "style": { "height": "36px" } }).form; //创建窗体
  5671. _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); } }
  5672. break;
  5673. case "doc":
  5674. // U.MD.D.I.isRoom();
  5675. _formdiv = new U.UF.UI.form(
  5676. "协同文档",
  5677. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5678. "id": "doc",
  5679. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5680. "onresize": function () { }
  5681. }, {
  5682. closecallback: function () { }
  5683. }, { "style": { "height": "36px" } }).form; //创建窗体
  5684. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5685. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5686. })
  5687. _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); } }
  5688. break;
  5689. case "train": //好友打开
  5690. _formdiv = new U.UF.UI.form(
  5691. "训练平台",
  5692. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5693. "id": "train",
  5694. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5695. "onresize": function () { }
  5696. }, {
  5697. closecallback: function () { }
  5698. }, { "style": { "height": "36px" } }).form; //创建窗体
  5699. _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); } }
  5700. break;
  5701. case "studentStudy":
  5702. _formdiv = new U.UF.UI.form(
  5703. "课程中心",
  5704. $$("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
  5705. "id": "studentStudy",
  5706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5707. "onresize": function () { }
  5708. }, {
  5709. closecallback: function () { }
  5710. }, { "style": { "height": "36px" } }).form; //创建窗体
  5711. _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); } }
  5712. break;
  5713. case "mindNetwork": //好友打开
  5714. _formdiv = new U.UF.UI.form(
  5715. "思维网格",
  5716. $$("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 }), {
  5717. "id": "mindNetwork",
  5718. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5719. "onresize": function () { }
  5720. }, {
  5721. closecallback: function () { }
  5722. }, { "style": { "height": "36px" } }).form; //创建窗体
  5723. _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); } }
  5724. break;
  5725. case "studentClassRoom": //好友打开
  5726. _formdiv = new U.UF.UI.form(
  5727. "实时课堂",
  5728. $$("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 }), {
  5729. "id": "studentClassRoom",
  5730. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5731. "onresize": function () { }
  5732. }, {
  5733. closecallback: function () { }
  5734. }, { "style": { "height": "36px" } }).form; //创建窗体
  5735. _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); } }
  5736. setTimeout(() => {
  5737. U.UF.F.windowZooming(_formdiv)
  5738. }, 0);
  5739. break;
  5740. }
  5741. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5742. //选择应用处理
  5743. switch (str) {
  5744. case "project": //好友打开
  5745. _formdiv = new U.UF.UI.form(
  5746. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5747. $$("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 }), {
  5748. "id": "project",
  5749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _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); } }
  5755. break;
  5756. case "student":
  5757. _formdiv = new U.UF.UI.form(
  5758. "学生管理",
  5759. $$("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 }), {
  5760. "id": "student",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _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); } }
  5767. break;
  5768. case "evaluate":
  5769. _formdiv = new U.UF.UI.form(
  5770. "学生评价",
  5771. $$("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 }), {
  5772. "id": "evaluate",
  5773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. _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); } }
  5779. break;
  5780. case "sys":
  5781. _formdiv = new U.UF.UI.form(
  5782. "目标管理",
  5783. $$("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 }), {
  5784. "id": "sys",
  5785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. _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); } }
  5791. break;
  5792. case "courseDesign":
  5793. _formdiv = new U.UF.UI.form(
  5794. "项目设计",
  5795. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5796. "id": "courseDesign",
  5797. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () { }
  5801. }, { "style": { "height": "36px" } }).form; //创建窗体
  5802. _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); } }
  5803. break;
  5804. case "program":
  5805. _formdiv = new U.UF.UI.form(
  5806. "编程平台",
  5807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5808. "id": "program",
  5809. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //创建窗体
  5814. _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); } }
  5815. break;
  5816. case "class":
  5817. _formdiv = new U.UF.UI.form(
  5818. "班级管理",
  5819. $$("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 }), {
  5820. "id": "class",
  5821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, { "style": { "height": "36px" } }).form; //创建窗体
  5826. _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); } }
  5827. break;
  5828. case "Grade":
  5829. _formdiv = new U.UF.UI.form(
  5830. "年级管理",
  5831. $$("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 }), {
  5832. "id": "Grade",
  5833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //创建窗体
  5838. _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); } }
  5839. break;
  5840. case "teacherOffice":
  5841. _formdiv = new U.UF.UI.form(
  5842. "教研室",
  5843. $$("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 }), {
  5844. "id": "teacherOffice",
  5845. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5846. "onresize": function () { }
  5847. }, {
  5848. closecallback: function () { }
  5849. }, { "style": { "height": "36px" } }).form; //创建窗体
  5850. _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); } }
  5851. break;
  5852. case "my":
  5853. _formdiv = new U.UF.UI.form(
  5854. "我的资料",
  5855. $$("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 }), {
  5856. "id": "my",
  5857. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5858. "onresize": function () { }
  5859. }, {
  5860. closecallback: function () { }
  5861. }, { "style": { "height": "36px" } }).form; //创建窗体
  5862. _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); } }
  5863. break;
  5864. case "notice":
  5865. _formdiv = new U.UF.UI.form(
  5866. "通知公告",
  5867. $$("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 }), {
  5868. "id": "notice",
  5869. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5870. "onresize": function () { }
  5871. }, {
  5872. closecallback: function () { }
  5873. }, { "style": { "height": "36px" } }).form; //创建窗体
  5874. _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); } }
  5875. break;
  5876. case "library":
  5877. _formdiv = new U.UF.UI.form(
  5878. "素材库",
  5879. $$("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 }), {
  5880. "id": "library",
  5881. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5882. "onresize": function () { }
  5883. }, {
  5884. closecallback: function () { }
  5885. }, { "style": { "height": "36px" } }).form; //创建窗体
  5886. _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); } }
  5887. break;
  5888. case "whiteboard":
  5889. _formdiv = new U.UF.UI.form(
  5890. "电子白板",
  5891. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5892. "id": "whiteboard",
  5893. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5894. "onresize": function () { }
  5895. }, {
  5896. closecallback: function () { }
  5897. }, { "style": { "height": "36px" } }).form; //创建窗体
  5898. _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); } }
  5899. break;
  5900. case "investigation":
  5901. _formdiv = new U.UF.UI.form(
  5902. "问卷调查",
  5903. $$("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 }), {
  5904. "id": "investigation",
  5905. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5906. "onresize": function () { }
  5907. }, {
  5908. closecallback: function () { }
  5909. }, { "style": { "height": "36px" } }).form; //创建窗体
  5910. _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); } }
  5911. break;
  5912. case "note":
  5913. _formdiv = new U.UF.UI.form(
  5914. "便签分类",
  5915. $$("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 }), {
  5916. "id": "note",
  5917. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5918. "onresize": function () { }
  5919. }, {
  5920. closecallback: function () { }
  5921. }, { "style": { "height": "36px" } }).form; //创建窗体
  5922. _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); } }
  5923. break;
  5924. // case "score":
  5925. // _formdiv = new U.UF.UI.form(
  5926. // "量规评分",
  5927. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5928. // "id": "score",
  5929. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5930. // "onresize": function() {}
  5931. // }, {
  5932. // closecallback: function() {}
  5933. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5934. // _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); } }
  5935. // break;
  5936. case "mind":
  5937. _formdiv = new U.UF.UI.form(
  5938. "思维导图",
  5939. $$("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"
  5940. "id": "mind",
  5941. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5942. "onresize": function () { }
  5943. }, {
  5944. closecallback: function () { }
  5945. }, { "style": { "height": "36px" } }).form; //创建窗体
  5946. _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); } }
  5947. break;
  5948. case "doc":
  5949. // U.MD.D.I.isRoom();
  5950. _formdiv = new U.UF.UI.form(
  5951. "协同文档",
  5952. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5953. "id": "doc",
  5954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5960. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5961. })
  5962. _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); } }
  5963. break;
  5964. case "study":
  5965. _formdiv = new U.UF.UI.form(
  5966. "课程中心",
  5967. $$("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
  5968. "id": "study",
  5969. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _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); } }
  5975. break;
  5976. case "mindNetwork": //好友打开
  5977. _formdiv = new U.UF.UI.form(
  5978. "思维网格",
  5979. $$("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 }), {
  5980. "id": "mindNetwork",
  5981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _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); } }
  5987. break;
  5988. case "train": //好友打开
  5989. _formdiv = new U.UF.UI.form(
  5990. "训练平台",
  5991. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5992. "id": "mindNetwork",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _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); } }
  5999. break;
  6000. case "teacherClassRoom": //好友打开
  6001. _formdiv = new U.UF.UI.form(
  6002. "实时课堂",
  6003. $$("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 }), {
  6004. "id": "teacherClassRoom",
  6005. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _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); } }
  6011. setTimeout(() => {
  6012. U.UF.F.windowZooming(_formdiv)
  6013. }, 0);
  6014. break;
  6015. }
  6016. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6017. switch (str) {
  6018. case "project": //好友打开
  6019. _formdiv = new U.UF.UI.form(
  6020. "课程管理",
  6021. $$("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 }), {
  6022. "id": "project",
  6023. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6024. "onresize": function () { }
  6025. }, {
  6026. closecallback: function () { }
  6027. }, { "style": { "height": "36px" } }).form; //创建窗体
  6028. _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); } }
  6029. break;
  6030. case "evaluate":
  6031. _formdiv = new U.UF.UI.form(
  6032. "学生评价",
  6033. $$("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 }), {
  6034. "id": "evaluate",
  6035. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "notice":
  6043. _formdiv = new U.UF.UI.form(
  6044. "通知公告",
  6045. $$("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 }), {
  6046. "id": "notice",
  6047. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _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); } }
  6053. break;
  6054. case "stuLibrary":
  6055. _formdiv = new U.UF.UI.form(
  6056. "学习资料",
  6057. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  6058. "id": "stuLibrary",
  6059. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _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); } }
  6065. break;
  6066. case "program":
  6067. _formdiv = new U.UF.UI.form(
  6068. "编程平台",
  6069. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6070. "id": "program",
  6071. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _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); } }
  6077. break;
  6078. case "whiteboard":
  6079. _formdiv = new U.UF.UI.form(
  6080. "电子白板",
  6081. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6082. "id": "whiteboard",
  6083. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _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); } }
  6089. break;
  6090. case "investigation":
  6091. _formdiv = new U.UF.UI.form(
  6092. "问卷调查",
  6093. $$("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 }), {
  6094. "id": "investigation",
  6095. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () { }
  6099. }, { "style": { "height": "36px" } }).form; //创建窗体
  6100. _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); } }
  6101. break;
  6102. case "mind":
  6103. _formdiv = new U.UF.UI.form(
  6104. "思维导图",
  6105. $$("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"
  6106. "id": "mind",
  6107. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6108. "onresize": function () { }
  6109. }, {
  6110. closecallback: function () { }
  6111. }, { "style": { "height": "36px" } }).form; //创建窗体
  6112. _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); } }
  6113. break;
  6114. case "doc":
  6115. // U.MD.D.I.isRoom();
  6116. _formdiv = new U.UF.UI.form(
  6117. "协同文档",
  6118. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6119. "id": "doc",
  6120. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6121. "onresize": function () { }
  6122. }, {
  6123. closecallback: function () { }
  6124. }, { "style": { "height": "36px" } }).form; //创建窗体
  6125. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6126. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6127. })
  6128. _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); } }
  6129. break;
  6130. case "study":
  6131. _formdiv = new U.UF.UI.form(
  6132. "课程中心",
  6133. $$("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
  6134. "id": "study",
  6135. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6136. "onresize": function () { }
  6137. }, {
  6138. closecallback: function () { }
  6139. }, { "style": { "height": "36px" } }).form; //创建窗体
  6140. _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); } }
  6141. break;
  6142. case "mindNetwork": //好友打开
  6143. _formdiv = new U.UF.UI.form(
  6144. "思维网格",
  6145. $$("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 }), {
  6146. "id": "mindNetwork",
  6147. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6148. "onresize": function () { }
  6149. }, {
  6150. closecallback: function () { }
  6151. }, { "style": { "height": "36px" } }).form; //创建窗体
  6152. _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); } }
  6153. break;
  6154. case "train": //好友打开
  6155. _formdiv = new U.UF.UI.form(
  6156. "训练平台",
  6157. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6158. "id": "train",
  6159. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6160. "onresize": function () { }
  6161. }, {
  6162. closecallback: function () { }
  6163. }, { "style": { "height": "36px" } }).form; //创建窗体
  6164. _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); } }
  6165. break;
  6166. case "sys":
  6167. _formdiv = new U.UF.UI.form(
  6168. "目标管理",
  6169. $$("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 }), {
  6170. "id": "sys",
  6171. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6172. "onresize": function () { }
  6173. }, {
  6174. closecallback: function () { }
  6175. }, { "style": { "height": "36px" } }).form; //创建窗体
  6176. _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); } }
  6177. break;
  6178. case "courseDesign":
  6179. _formdiv = new U.UF.UI.form(
  6180. "项目设计",
  6181. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6182. "id": "courseDesign",
  6183. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6184. "onresize": function () { }
  6185. }, {
  6186. closecallback: function () { }
  6187. }, { "style": { "height": "36px" } }).form; //创建窗体
  6188. _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); } }
  6189. break;
  6190. }
  6191. } else if (!_type) {
  6192. switch (str) {
  6193. case "my":
  6194. _formdiv = new U.UF.UI.form(
  6195. "我的资料",
  6196. $$("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 }), {
  6197. "id": "my",
  6198. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6199. "onresize": function () { }
  6200. }, {
  6201. closecallback: function () { }
  6202. }, { "style": { "height": "36px" } }).form; //创建窗体
  6203. _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); } }
  6204. break;
  6205. }
  6206. }
  6207. switch (str) {
  6208. // AIprogram2 AI体验 aihub.cocorobo.cn
  6209. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6210. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6211. case "formulaEdi": //公式编辑
  6212. _formdiv = new U.UF.UI.form(
  6213. "公式编辑",
  6214. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6215. "id": "formulaEdi",
  6216. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6217. "onresize": function () { }
  6218. }, {
  6219. closecallback: function () { }
  6220. }, { "style": { "height": "36px" } }).form; //创建窗体
  6221. _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); } }
  6222. break;
  6223. case "molStr": //分子结构
  6224. _formdiv = new U.UF.UI.form(
  6225. "分子结构",
  6226. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  6227. "id": "molStr",
  6228. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6229. "onresize": function () { }
  6230. }, {
  6231. closecallback: function () { }
  6232. }, { "style": { "height": "36px" } }).form; //创建窗体
  6233. _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); } }
  6234. break;
  6235. case "timeAxis": //时间轴
  6236. _formdiv = new U.UF.UI.form(
  6237. "时间轴",
  6238. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  6239. "id": "timeAxis",
  6240. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6241. "onresize": function () { }
  6242. }, {
  6243. closecallback: function () { }
  6244. }, { "style": { "height": "36px" } }).form; //创建窗体
  6245. _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); } }
  6246. break;
  6247. case "AIprogram2": //AI体验
  6248. _formdiv = new U.UF.UI.form(
  6249. "AI体验",
  6250. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  6251. "id": "AIprogram2",
  6252. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6253. "onresize": function () { }
  6254. }, {
  6255. closecallback: function () { }
  6256. }, { "style": { "height": "36px" } }).form; //创建窗体
  6257. _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); } }
  6258. break;
  6259. case "Pythonprogram": //python编程
  6260. _formdiv = new U.UF.UI.form(
  6261. "Python编程",
  6262. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  6263. "id": "Pythonprogram",
  6264. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6265. "onresize": function () { }
  6266. }, {
  6267. closecallback: function () { }
  6268. }, { "style": { "height": "36px" } }).form; //创建窗体
  6269. _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); } }
  6270. break;
  6271. case "AIprogram": //ai编程
  6272. _formdiv = new U.UF.UI.form(
  6273. "AI编程平台",
  6274. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6275. "id": "AIprogram",
  6276. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6277. "onresize": function () { }
  6278. }, {
  6279. closecallback: function () { }
  6280. }, { "style": { "height": "36px" } }).form; //创建窗体
  6281. _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); } }
  6282. break;
  6283. case "CocoPi": //CocoPi
  6284. _formdiv = new U.UF.UI.form(
  6285. "CocoPi",
  6286. $$("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" }), {
  6287. "id": "CocoPi",
  6288. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6289. "onresize": function () { }
  6290. }, {
  6291. closecallback: function () { }
  6292. }, { "style": { "height": "36px" } }).form; //创建窗体
  6293. _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); } }
  6294. break;
  6295. case "Wood": //Wood
  6296. _formdiv = new U.UF.UI.form(
  6297. "海龟编程",
  6298. $$("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/" }), {
  6299. "id": "Wood",
  6300. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6301. "onresize": function () { }
  6302. }, {
  6303. closecallback: function () { }
  6304. }, { "style": { "height": "36px" } }).form; //创建窗体
  6305. _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); } }
  6306. break;
  6307. case "car": //模拟驾驶
  6308. _formdiv = new U.UF.UI.form(
  6309. "模拟驾驶",
  6310. $$("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/" }), {
  6311. "id": "car",
  6312. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6313. "onresize": function () { }
  6314. }, {
  6315. closecallback: function () { }
  6316. }, { "style": { "height": "36px" } }).form; //创建窗体
  6317. _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); } }
  6318. break;
  6319. case "lineSearch": //路径搜索
  6320. _formdiv = new U.UF.UI.form(
  6321. "路径搜索",
  6322. $$("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/" }), {
  6323. "id": "lineSearch",
  6324. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6325. "onresize": function () { }
  6326. }, {
  6327. closecallback: function () { }
  6328. }, { "style": { "height": "36px" } }).form; //创建窗体
  6329. _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); } }
  6330. break;
  6331. case "deepLearning": //深度学习
  6332. _formdiv = new U.UF.UI.form(
  6333. "深度学习",
  6334. $$("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/#" }), {
  6335. "id": "deepLearning",
  6336. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6337. "onresize": function () { }
  6338. }, {
  6339. closecallback: function () { }
  6340. }, { "style": { "height": "36px" } }).form; //创建窗体
  6341. _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); } }
  6342. break;
  6343. case "allHistory": //深度学习
  6344. _formdiv = new U.UF.UI.form(
  6345. "全历史",
  6346. $$("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/" }), {
  6347. "id": "allHistory",
  6348. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6349. "onresize": function () { }
  6350. }, {
  6351. closecallback: function () { }
  6352. }, { "style": { "height": "36px" } }).form; //创建窗体
  6353. _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); } }
  6354. break;
  6355. case "chatPDF": //ai编程
  6356. _formdiv = new U.UF.UI.form(
  6357. "chatPDF",
  6358. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6359. "id": "chatPDF",
  6360. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6361. "onresize": function () { }
  6362. }, {
  6363. closecallback: function () { }
  6364. }, { "style": { "height": "36px" } }).form; //创建窗体
  6365. _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); } }
  6366. break;
  6367. case "resources": //国家教育
  6368. _formdiv = new U.UF.UI.form(
  6369. "国家教育",
  6370. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6371. "id": "resources",
  6372. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6373. "onresize": function () { }
  6374. }, {
  6375. closecallback: function () { }
  6376. }, { "style": { "height": "36px" } }).form; //创建窗体
  6377. _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); } }
  6378. break;
  6379. case "codeEdit": //源码编辑
  6380. _formdiv = new U.UF.UI.form(
  6381. "源码编辑",
  6382. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6383. "id": "codeEdit",
  6384. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6385. "onresize": function () { }
  6386. }, {
  6387. closecallback: function () { }
  6388. }, { "style": { "height": "36px" } }).form; //创建窗体
  6389. _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); } }
  6390. break; //
  6391. case "MindMap": //MindMap
  6392. _formdiv = new U.UF.UI.form(
  6393. "MindMap",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6395. "id": "MindMap",
  6396. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6397. "onresize": function () { }
  6398. }, {
  6399. closecallback: function () { }
  6400. }, { "style": { "height": "36px" } }).form; //创建窗体
  6401. _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); } }
  6402. break;
  6403. case "netWorkPanel": //netWorkPanel
  6404. _formdiv = new U.UF.UI.form(
  6405. "netWorkPanel",
  6406. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6407. "id": "netWorkPanel",
  6408. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6409. "onresize": function () { }
  6410. }, {
  6411. closecallback: function () { }
  6412. }, { "style": { "height": "36px" } }).form; //创建窗体
  6413. _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); } }
  6414. break;
  6415. case "GeoGebra": //GeoGebra
  6416. _formdiv = new U.UF.UI.form(
  6417. "GeoGebra",
  6418. $$("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" }), {
  6419. "id": "GeoGebra",
  6420. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6421. "onresize": function () { }
  6422. }, {
  6423. closecallback: function () { }
  6424. }, { "style": { "height": "36px" } }).form; //创建窗体
  6425. _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); } }
  6426. break;
  6427. case "translation": //翻译
  6428. _formdiv = new U.UF.UI.form(
  6429. "翻译",
  6430. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6431. "id": "translation",
  6432. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6433. "onresize": function () { }
  6434. }, {
  6435. closecallback: function () { }
  6436. }, { "style": { "height": "36px" } }).form; //创建窗体
  6437. _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); } }
  6438. break;
  6439. case "mohe": //魔盒
  6440. _formdiv = new U.UF.UI.form(
  6441. "魔盒识字",
  6442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6443. "id": "mohe",
  6444. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6445. "onresize": function () { }
  6446. }, {
  6447. closecallback: function () { }
  6448. }, { "style": { "height": "36px" } }).form; //创建窗体
  6449. _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); } }
  6450. break;
  6451. case "24game": //24点
  6452. _formdiv = new U.UF.UI.form(
  6453. "24点",
  6454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6455. "id": "24game",
  6456. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6457. "onresize": function () { }
  6458. }, {
  6459. closecallback: function () { }
  6460. }, { "style": { "height": "36px" } }).form; //创建窗体
  6461. _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); } }
  6462. break;
  6463. case "case":
  6464. _formdiv = new U.UF.UI.form(
  6465. "课程进展",
  6466. $$("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 }), {
  6467. "id": "case",
  6468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6469. "onresize": function () { }
  6470. }, {
  6471. closecallback: function () { }
  6472. }, { "style": { "height": "36px" } }).form; //创建窗体
  6473. _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); } }
  6474. break;
  6475. case "snf":
  6476. _formdiv = new U.UF.UI.form(
  6477. "赛诺梵",
  6478. $$("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" }), {
  6479. "id": "snf",
  6480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6481. "onresize": function () { }
  6482. }, {
  6483. closecallback: function () { }
  6484. }, { "style": { "height": "36px" } }).form; //创建窗体
  6485. _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); } }
  6486. break;
  6487. case "hanFamily":
  6488. _formdiv = new U.UF.UI.form(
  6489. "汉字家族",
  6490. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6491. "id": "hanFamily",
  6492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6493. "onresize": function () { }
  6494. }, {
  6495. closecallback: function () { }
  6496. }, { "style": { "height": "36px" } }).form; //创建窗体
  6497. _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); } }
  6498. break;
  6499. case "hanClassics":
  6500. _formdiv = new U.UF.UI.form(
  6501. "国学经典",
  6502. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6503. "id": "hanClassics",
  6504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6505. "onresize": function () { }
  6506. }, {
  6507. closecallback: function () { }
  6508. }, { "style": { "height": "36px" } }).form; //创建窗体
  6509. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6510. break;
  6511. case "hanTraining":
  6512. _formdiv = new U.UF.UI.form(
  6513. "笔画训练",
  6514. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6515. "id": "hanTraining",
  6516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6517. "onresize": function () { }
  6518. }, {
  6519. closecallback: function () { }
  6520. }, { "style": { "height": "36px" } }).form; //创建窗体
  6521. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6522. break;
  6523. case "hanClass":
  6524. _formdiv = new U.UF.UI.form(
  6525. "书法课堂",
  6526. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6527. "id": "hanClass",
  6528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6529. "onresize": function () { }
  6530. }, {
  6531. closecallback: function () { }
  6532. }, { "style": { "height": "36px" } }).form; //创建窗体
  6533. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6534. break;
  6535. case "han":
  6536. _formdiv = new U.UF.UI.form(
  6537. "汉字宫",
  6538. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6539. "id": "han",
  6540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6541. "onresize": function () { }
  6542. }, {
  6543. closecallback: function () { }
  6544. }, { "style": { "height": "36px" } }).form; //创建窗体
  6545. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/han.png)" }, "name": "汉字宫", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6546. break;
  6547. case "projectGM": //课程管理
  6548. _formdiv = new U.UF.UI.form(
  6549. "课程管理",
  6550. $$("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 }), {
  6551. "id": "projectGM",
  6552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6553. "onresize": function () { }
  6554. }, {
  6555. closecallback: function () { }
  6556. }, { "style": { "height": "36px" } }).form; //创建窗体
  6557. _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); } }
  6558. break;
  6559. case "studyGM": //课程中心
  6560. _formdiv = new U.UF.UI.form(
  6561. "课程中心",
  6562. $$("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
  6563. "id": "study",
  6564. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6565. "onresize": function () { }
  6566. }, {
  6567. closecallback: function () { }
  6568. }, { "style": { "height": "36px" } }).form; //创建窗体
  6569. _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); } }
  6570. break;
  6571. // studentGM
  6572. case "studentGM": //学生管理
  6573. _formdiv = new U.UF.UI.form(
  6574. "学生管理",
  6575. $$("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 }), {
  6576. "id": "studentGM",
  6577. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6578. "onresize": function () { }
  6579. }, {
  6580. closecallback: function () { }
  6581. }, { "style": { "height": "36px" } }).form; //创建窗体
  6582. _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); } }
  6583. break;
  6584. case "evaluateGM": //学生评价
  6585. _formdiv = new U.UF.UI.form(
  6586. "学生评价",
  6587. $$("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 }), {
  6588. "id": "evaluateGM",
  6589. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6590. "onresize": function () { }
  6591. }, {
  6592. closecallback: function () { }
  6593. }, { "style": { "height": "36px" } }).form; //创建窗体
  6594. _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); } }
  6595. break;
  6596. // classGM
  6597. case "classGM": //班级管理
  6598. _formdiv = new U.UF.UI.form(
  6599. "班级管理",
  6600. $$("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 }), {
  6601. "id": "classGM",
  6602. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () { }
  6606. }, { "style": { "height": "36px" } }).form; //创建窗体
  6607. _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); } }
  6608. break;
  6609. // dataGM
  6610. case "dataGM":
  6611. _formdiv = new U.UF.UI.form(
  6612. "我的资料",
  6613. $$("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 }), {
  6614. "id": "dataGM",
  6615. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6616. "onresize": function () { }
  6617. }, {
  6618. closecallback: function () { }
  6619. }, { "style": { "height": "36px" } }).form; //创建窗体
  6620. _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); } }
  6621. break;
  6622. // caseGM
  6623. case "caseGM": //课程进展
  6624. _formdiv = new U.UF.UI.form(
  6625. "课程进展",
  6626. $$("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 }), {
  6627. "id": "caseGM",
  6628. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6629. "onresize": function () { }
  6630. }, {
  6631. closecallback: function () { }
  6632. }, { "style": { "height": "36px" } }).form; //创建窗体
  6633. _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); } }
  6634. break;
  6635. // meterialGM
  6636. case "meterialGM": //素材库
  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/#/libraryGM?userid=" + _userid + "&org=" + _org }), {
  6640. "id": "meterialGM",
  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/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6647. break;
  6648. // evaluateSGM
  6649. case "evaluateSGM": //我的评价
  6650. _formdiv = new U.UF.UI.form(
  6651. "我的评价",
  6652. $$("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 }), {
  6653. "id": "evaluateSGM",
  6654. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6655. "onresize": function () { }
  6656. }, {
  6657. closecallback: function () { }
  6658. }, { "style": { "height": "36px" } }).form; //创建窗体
  6659. _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); } }
  6660. break;
  6661. case "jupyter": //jupyter
  6662. _formdiv = new U.UF.UI.form(
  6663. "jupyter",
  6664. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6665. "id": "jupyter",
  6666. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6667. "onresize": function () { }
  6668. }, {
  6669. closecallback: function () { }
  6670. }, { "style": { "height": "36px" } }).form; //创建窗体
  6671. _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); } }
  6672. break;
  6673. case "number": //数字实验室
  6674. _formdiv = new U.UF.UI.form(
  6675. "数字实验室",
  6676. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6677. "id": "number",
  6678. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6679. "onresize": function () { }
  6680. }, {
  6681. closecallback: function () { }
  6682. }, { "style": { "height": "36px" } }).form; //创建窗体
  6683. _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); } }
  6684. break;
  6685. case "studentCourse": //项目管理 学生
  6686. _formdiv = new U.UF.UI.form(
  6687. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6688. $$("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 }), {
  6689. "id": "studentCourse",
  6690. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6691. "onresize": function () { }
  6692. }, {
  6693. closecallback: function () { }
  6694. }, { "style": { "height": "36px" } }).form; //创建窗体
  6695. _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); } }
  6696. break;
  6697. case "studentCourseS": //项目管理 老师
  6698. _formdiv = new U.UF.UI.form(
  6699. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6700. $$("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 }), {
  6701. "id": "studentCourseS",
  6702. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6703. "onresize": function () { }
  6704. }, {
  6705. closecallback: function () { }
  6706. }, { "style": { "height": "36px" } }).form; //创建窗体
  6707. _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); } }
  6708. break;
  6709. case "studentIndex": //项目中心
  6710. _formdiv = new U.UF.UI.form(
  6711. "项目中心",
  6712. $$("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 }), {
  6713. "id": "studentIndex",
  6714. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6715. "onresize": function () { }
  6716. }, {
  6717. closecallback: function () { }
  6718. }, { "style": { "height": "36px" } }).form; //创建窗体
  6719. _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); } }
  6720. break;
  6721. case "CaseDesignS":
  6722. _formdiv = new U.UF.UI.form(
  6723. "项目进展",
  6724. $$("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 }), {
  6725. "id": "case",
  6726. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6727. "onresize": function () { }
  6728. }, {
  6729. closecallback: function () { }
  6730. }, { "style": { "height": "36px" } }).form; //创建窗体
  6731. _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); } }
  6732. break;
  6733. case "tcStudent": //腾讯学生管理
  6734. _formdiv = new U.UF.UI.form(
  6735. "学生管理",
  6736. $$("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 }), {
  6737. "id": "tcStudent",
  6738. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6739. "onresize": function () { }
  6740. }, {
  6741. closecallback: function () { }
  6742. }, { "style": { "height": "36px" } }).form; //创建窗体
  6743. _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); } }
  6744. break;
  6745. case "tcSchool": //腾讯学校管理
  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/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6749. "id": "tcSchool",
  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/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6756. break;
  6757. case "tcTeacher": //腾讯学校管理
  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/#/tcTeacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6761. "id": "tcTeacher",
  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/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6768. break;
  6769. case "teacher":
  6770. _formdiv = new U.UF.UI.form(
  6771. "教师管理",
  6772. $$("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 }), {
  6773. "id": "teacher",
  6774. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6775. "onresize": function () { }
  6776. }, {
  6777. closecallback: function () { }
  6778. }, { "style": { "height": "36px" } }).form; //创建窗体
  6779. _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); } }
  6780. break;
  6781. case "tcData": //腾讯我的资料
  6782. _formdiv = new U.UF.UI.form(
  6783. "我的资料",
  6784. $$("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 }), {
  6785. "id": "tcData",
  6786. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6787. "onresize": function () { }
  6788. }, {
  6789. closecallback: function () { }
  6790. }, { "style": { "height": "36px" } }).form; //创建窗体
  6791. _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); } }
  6792. break;
  6793. case "tcNotice": //腾讯消息通知
  6794. _formdiv = new U.UF.UI.form(
  6795. "消息通知",
  6796. $$("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 }), {
  6797. "id": "tcNotice",
  6798. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6799. "onresize": function () { }
  6800. }, {
  6801. closecallback: function () { }
  6802. }, { "style": { "height": "36px" } }).form; //创建窗体
  6803. _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); } }
  6804. break;
  6805. case "myReport": //好友打开
  6806. _formdiv = new U.UF.UI.form(
  6807. "我的评价",
  6808. $$("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 }), {
  6809. "id": "myReport",
  6810. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6811. "onresize": function () { }
  6812. }, {
  6813. closecallback: function () { }
  6814. }, { "style": { "height": "36px" } }).form; //创建窗体
  6815. _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); } }
  6816. break;
  6817. case "learnAna": //好友打开
  6818. _formdiv = new U.UF.UI.form(
  6819. "学习分析",
  6820. $$("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 }), {
  6821. "id": "learnAna",
  6822. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6823. "onresize": function () { }
  6824. }, {
  6825. closecallback: function () { }
  6826. }, { "style": { "height": "36px" } }).form; //创建窗体
  6827. _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); } }
  6828. break;
  6829. case "AIChat": //AI共创
  6830. _formdiv = new U.UF.UI.form(
  6831. "AI共创",
  6832. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6833. "id": "AIChat",
  6834. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6835. "onresize": function () { }
  6836. }, {
  6837. istop: true,
  6838. closecallback: function () { $("#aichat_icon").remove(); },
  6839. narrowcallback: function () {
  6840. if (!$("#aichat_icon")[0]) {
  6841. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6842. }
  6843. },
  6844. }, { "style": { "height": "36px" } }).form; //创建窗体
  6845. _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); } }
  6846. break;
  6847. case "ainew": //AI共创
  6848. _formdiv = new U.UF.UI.form(
  6849. "AI协同",
  6850. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6851. "id": "ainew",
  6852. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6853. "onresize": function () { }
  6854. }, {
  6855. closecallback: function () { }
  6856. }, { "style": { "height": "36px" } }).form; //创建窗体
  6857. _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); } }
  6858. break;
  6859. case "gpt4": //gpt4
  6860. _formdiv = new U.UF.UI.form(
  6861. "AI助手",
  6862. $$("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 }), {
  6863. "id": "gpt4",
  6864. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6865. "onresize": function () { }
  6866. }, {
  6867. closecallback: function () { }
  6868. }, { "style": { "height": "36px" } }).form; //创建窗体
  6869. _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); } }
  6870. break;
  6871. case "aigpt": //gpt4
  6872. _formdiv = new U.UF.UI.form(
  6873. "AI助手+",
  6874. $$("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 }), {
  6875. "id": "aigpt",
  6876. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6877. "onresize": function () { }
  6878. }, {
  6879. closecallback: function () {
  6880. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6881. }
  6882. }, { "style": { "height": "36px" } }).form; //创建窗体
  6883. _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); } }
  6884. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6885. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6886. })
  6887. break;
  6888. case "aiKnowledge": //aiKnowledge
  6889. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6890. if(_oid == '8a352da2-56e1-11ef-b873-005056b86db5'){
  6891. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  6892. }
  6893. _formdiv = new U.UF.UI.form(
  6894. "知识建构",
  6895. $$("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 }), {
  6896. "id": "aiKnowledge",
  6897. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6898. "onresize": function () { }
  6899. }, {
  6900. closecallback: function () { }
  6901. }, { "style": { "height": "36px" } }).form; //创建窗体
  6902. _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); } }
  6903. break;
  6904. case "futureClass": //AI共创
  6905. _formdiv = new U.UF.UI.form(
  6906. "协同建构",
  6907. $$("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
  6908. "id": "synergyCourse",
  6909. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6910. "onresize": function () { }
  6911. }, {
  6912. closecallback: function () {
  6913. $("iframe", _formdiv)[0].contentWindow.loginout();
  6914. }
  6915. }, { "style": { "height": "36px" } }).form; //创建窗体
  6916. _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); } }
  6917. break;
  6918. case "aiagent": //ai agent
  6919. _formdiv = new U.UF.UI.form(
  6920. "AI Agent",
  6921. $$("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" }), {
  6922. "id": "AIAgent",
  6923. "style": { "width": "100%", "height": "100%", "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/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6929. break;
  6930. case "dataBoard": //数据看板
  6931. _formdiv = new U.UF.UI.form(
  6932. "数据看板",
  6933. $$("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 }), {
  6934. "id": "dataBoard",
  6935. "style": { "width": "100%", "height": "100%", "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/dataBoard.png)" }, "name": "数据看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6941. break;
  6942. case "dataBoardSies": //数据融合
  6943. _formdiv = new U.UF.UI.form(
  6944. "数据融合",
  6945. $$("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 }), {
  6946. "id": "dataBoardSies",
  6947. "style": { "width": "100%", "height": "100%", "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/dataBoardSies.png)" }, "name": "数据融合", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6953. break;
  6954. case "dataBoardNew": //数据看板
  6955. _formdiv = new U.UF.UI.form(
  6956. "综合看板",
  6957. $$("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 }), {
  6958. "id": "dataBoardNew",
  6959. "style": { "width": "100%", "height": "100%", "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/dataBoardNew.png)" }, "name": "综合看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6965. break;
  6966. case "dataBoardTest": //数据看板
  6967. _formdiv = new U.UF.UI.form(
  6968. "评测看板",
  6969. $$("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 }), {
  6970. "id": "dataBoardTest",
  6971. "style": { "width": "100%", "height": "100%", "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/dataBoardTest.png)" }, "name": "评测看板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6977. break;
  6978. case "AIAnalyse": //AI共创
  6979. _formdiv = new U.UF.UI.form(
  6980. "AI分析",
  6981. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6982. "id": "AIAnalyse",
  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/AIChat.png)" }, "name": "AI分析", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6989. break;
  6990. case "studioCourse": //AI共创
  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/#/studioCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6994. "id": "studioCourse",
  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/studioCourse.png)" }, "name": "工作管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7001. break;
  7002. case "studioIndex": //AI共创
  7003. _formdiv = new U.UF.UI.form(
  7004. "工作中心",
  7005. $$("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 }), {
  7006. "id": "studioIndex",
  7007. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7008. "onresize": function () { }
  7009. }, {
  7010. closecallback: function () { }
  7011. }, { "style": { "height": "36px" } }).form; //创建窗体
  7012. _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); } }
  7013. break;
  7014. case "source":
  7015. _formdiv = new U.UF.UI.form(
  7016. "教学资源",
  7017. $$("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 }), {
  7018. "id": "source",
  7019. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7020. "onresize": function () { }
  7021. }, {
  7022. closecallback: function () { }
  7023. }, { "style": { "height": "36px" } }).form; //创建窗体
  7024. _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); } }
  7025. break;
  7026. case "testTeacher":
  7027. _formdiv = new U.UF.UI.form(
  7028. "智能表单",
  7029. $$("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 }), {
  7030. "id": "testTeacher",
  7031. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7032. "onresize": function () { }
  7033. }, {
  7034. closecallback: function () { }
  7035. }, { "style": { "height": "36px" } }).form; //创建窗体
  7036. _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); } }
  7037. break;
  7038. case "testStudent":
  7039. _formdiv = new U.UF.UI.form(
  7040. "教师中心",
  7041. $$("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 }), {
  7042. "id": "testStudent",
  7043. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7044. "onresize": function () { }
  7045. }, {
  7046. closecallback: function () { }
  7047. }, { "style": { "height": "36px" } }).form; //创建窗体
  7048. _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); } }
  7049. break;
  7050. case "testTeacherSies":
  7051. _formdiv = new U.UF.UI.form(
  7052. "教师管理",
  7053. $$("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 }), {
  7054. "id": "testTeacherSies",
  7055. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7056. "onresize": function () { }
  7057. }, {
  7058. closecallback: function () { }
  7059. }, { "style": { "height": "36px" } }).form; //创建窗体
  7060. _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); } }
  7061. break;
  7062. case "testStudentSies":
  7063. _formdiv = new U.UF.UI.form(
  7064. "教师中心",
  7065. $$("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 }), {
  7066. "id": "testStudentSies",
  7067. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7068. "onresize": function () { }
  7069. }, {
  7070. closecallback: function () { }
  7071. }, { "style": { "height": "36px" } }).form; //创建窗体
  7072. _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); } }
  7073. break;
  7074. case "ytpbl": //消息通知
  7075. _formdiv = new U.UF.UI.form(
  7076. "案例征集",
  7077. $$("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 }), {
  7078. "id": "ytpbl",
  7079. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7080. "onresize": function () { }
  7081. }, {
  7082. closecallback: function () { }
  7083. }, { "style": { "height": "36px" } }).form; //创建窗体
  7084. _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); } }
  7085. // 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");
  7086. break;
  7087. case "aiCourseResource": //人工智能窗体
  7088. _formdiv = new U.UF.UI.form(
  7089. false,
  7090. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  7091. "id": "aiCourseResource",
  7092. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7093. "onresize": function () { },
  7094. "isdrag": false,
  7095. }, {
  7096. closecallback: function () { }
  7097. }, { "style": { "height": "36px" } }).form; //创建窗体
  7098. _taskbar = ''
  7099. break;
  7100. case "szdjgCocooroboX": //图形化编程
  7101. _formdiv = new U.UF.UI.form(
  7102. "图形化编程",
  7103. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  7104. "id": "szdjgCocooroboX",
  7105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7106. "onresize": function () { }
  7107. }, {
  7108. closecallback: function () { }
  7109. }, { "style": { "height": "36px" } }).form; //创建窗体
  7110. _taskbar = ''
  7111. break;
  7112. case "szdjgPython": //python编程
  7113. _formdiv = new U.UF.UI.form(
  7114. "Python编程",
  7115. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  7116. "id": "szdjgPython",
  7117. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7118. "onresize": function () { }
  7119. }, {
  7120. closecallback: function () { }
  7121. }, { "style": { "height": "36px" } }).form; //创建窗体
  7122. _taskbar = ''
  7123. break;
  7124. case "Record":
  7125. _formdiv = new U.UF.UI.form(
  7126. "观察记录",
  7127. $$("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 }), {
  7128. "id": "Record",
  7129. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7130. "onresize": function () { }
  7131. }, {
  7132. closecallback: function () { }
  7133. }, { "style": { "height": "36px" } }).form; //创建窗体
  7134. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7135. break;
  7136. case "aigptCourse":
  7137. _formdiv = new U.UF.UI.form(
  7138. "AI智能体",
  7139. $$("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' }), {
  7140. "id": "aigptCourse",
  7141. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7142. "onresize": function () { }
  7143. }, {
  7144. closecallback: function () { }
  7145. }, { "style": { "height": "36px" } }).form; //创建窗体
  7146. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7147. break;
  7148. case "classroomObservation":
  7149. _formdiv = new U.UF.UI.form(
  7150. "课堂观察",
  7151. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7152. "id": "classroomObservation",
  7153. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7154. "onresize": function () { }
  7155. }, {
  7156. closecallback: function () { }
  7157. }, { "style": { "height": "36px" } }).form; //创建窗体
  7158. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7159. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7160. break;
  7161. case "pblCourse":
  7162. _formdiv = new U.UF.UI.form(
  7163. "学生PBL",
  7164. $$("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 }), {
  7165. "id": "pblCourse",
  7166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7167. "onresize": function () { }
  7168. }, {
  7169. closecallback: function () { }
  7170. }, { "style": { "height": "36px" } }).form; //创建窗体
  7171. _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); } }
  7172. break;
  7173. case "appStore":
  7174. _formdiv = new U.UF.UI.form(
  7175. "CocoFlow",
  7176. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/aigpt/#/WorkSpace?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7177. "id": "appStore",
  7178. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7179. "onresize": function () { }
  7180. }, {
  7181. closecallback: function () { }
  7182. }, { "style": { "height": "36px" } }).form; //创建窗体
  7183. _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); } }
  7184. break;
  7185. case "sassPlatform":
  7186. _formdiv = new U.UF.UI.form(
  7187. "Sass通用后台管理",
  7188. $$("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 }), {
  7189. "id": "sassPlatform",
  7190. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7191. "onresize": function () { }
  7192. }, {
  7193. closecallback: function () { }
  7194. }, { "style": { "height": "36px" } }).form; //创建窗体
  7195. _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); } }
  7196. break;
  7197. case "EDU":
  7198. _formdiv = new U.UF.UI.form(
  7199. "EDU",
  7200. $$("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" }), {
  7201. "id": "EDU",
  7202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7203. "onresize": function () { }
  7204. }, {
  7205. closecallback: function () { }
  7206. }, { "style": { "height": "36px" } }).form; //创建窗体
  7207. _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); } }
  7208. break;
  7209. case "knowledge":
  7210. _formdiv = new U.UF.UI.form(
  7211. "知识库",
  7212. $$("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 }), {
  7213. "id": "knowledge",
  7214. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7215. "onresize": function () { }
  7216. }, {
  7217. closecallback: function () { }
  7218. }, { "style": { "height": "36px" } }).form; //创建窗体
  7219. _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); } }
  7220. break;
  7221. case "userExamine":
  7222. _formdiv = new U.UF.UI.form(
  7223. "账号申请",
  7224. $$("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" }), {
  7225. "id": "userExamine",
  7226. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  7227. "onresize": function () { }
  7228. }, {
  7229. closecallback: function () { }
  7230. }, { "style": { "height": "36px" } }).form; //创建窗体
  7231. break;
  7232. }
  7233. //U.MD.D.I.openClick(str);
  7234. //如果有任务栏信息
  7235. if (_taskbar) {
  7236. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7237. }
  7238. if(iframeBool){
  7239. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  7240. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  7241. // console.log("iframe进入");
  7242. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7243. // };
  7244. setTimeout(() => {
  7245. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  7246. }, 2000);
  7247. }
  7248. }
  7249. // U.MD.D.I.openClick = function(str){
  7250. // var click = '';
  7251. // switch(str){
  7252. // case 'friend':
  7253. // click = '我的好友';
  7254. // break;
  7255. // case 'domain':
  7256. // click = '域名管理';
  7257. // break;
  7258. // case 'disk':
  7259. // click = '我的云盘';
  7260. // break;
  7261. // case 'word':
  7262. // click = 'Word';
  7263. // break;
  7264. // case 'excel':
  7265. // click = 'Execl';
  7266. // break;
  7267. // case 'txt':
  7268. // click = '文本文件';
  7269. // break;
  7270. // case 'lookupFriend':
  7271. // click = '查找好友';
  7272. // break;
  7273. // case 'ftp':
  7274. // click = 'FTP';
  7275. // break;
  7276. // case 'group':
  7277. // click = '群组';
  7278. // break;
  7279. // case 'set':
  7280. // click = '我的设置';
  7281. // break;
  7282. // case 'systemSet':
  7283. // click = '系统设置';
  7284. // break;
  7285. // case 'boomYun':
  7286. // click = '互联办公';
  7287. // break;
  7288. // case 'xz':
  7289. // click = '云端下载';
  7290. // break;
  7291. // case 'client':
  7292. // click = '有思浏览器';
  7293. // break;
  7294. // case 'backEndProgramming':
  7295. // click = '在线后台编程';
  7296. // break;
  7297. // case 'frontEndProgramming':
  7298. // click = '在线前端编程';
  7299. // break;
  7300. // default: break;
  7301. // }
  7302. // if(U.MD.D.I.Ip && click){
  7303. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  7304. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  7305. // })
  7306. // }
  7307. // }
  7308. /**
  7309. *函数作用:ajax简易函数,使用post格式
  7310. *@param url {data} 后台地址
  7311. *@param data {data} 参数json
  7312. *@param fn {data} 回调函数
  7313. *
  7314. */
  7315. // U.MD.D.I.Mysqlrequest = function(url,fn){
  7316. // var xhr = new XMLHttpRequest();
  7317. // xhr.open("GET",url,true);
  7318. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  7319. // xhr.onreadystatechange = function(){
  7320. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  7321. // fn.call(this,xhr.responseText);
  7322. // }
  7323. // };
  7324. // xhr.send();
  7325. // }
  7326. /*判断是否是内网IP*/
  7327. // U.MD.D.I.isInnerIPFn = function(str){
  7328. // var curPageUrl = str;
  7329. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  7330. // curPageUrl =curPageUrl.replace(reg1,'');
  7331. // // console.log('curPageUrl-1 '+curPageUrl);
  7332. // var reg2 = /\:+/g;//替换冒号为一点
  7333. // curPageUrl =curPageUrl.replace(reg2,'.');
  7334. // // console.log('curPageUrl-2 '+curPageUrl);
  7335. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7336. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7337. // if(curPageUrl[2] != '16'){
  7338. // return ipAddress;
  7339. // }else{
  7340. // return false;
  7341. // }
  7342. // }
  7343. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7344. // //compatibility for firefox and chrome
  7345. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7346. // var pc = new myPeerConnection({
  7347. // iceServers: []
  7348. // }),
  7349. // noop = function() {},
  7350. // localIPs = {},
  7351. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7352. // key;
  7353. // function iterateIP(ip) {
  7354. // if (!localIPs[ip]) onNewIP(ip);
  7355. // localIPs[ip] = true;
  7356. // }
  7357. // //create a bogus data channel
  7358. // pc.createDataChannel("");
  7359. // // create offer and set local description
  7360. // pc.createOffer().then(function(sdp) {
  7361. // sdp.sdp.split('\n').forEach(function(line) {
  7362. // if (line.indexOf('candidate') < 0) return;
  7363. // line.match(ipRegex).forEach(iterateIP);
  7364. // });
  7365. // pc.setLocalDescription(sdp, noop, noop);
  7366. // }).catch(function(reason) {
  7367. // // An error occurred, so handle the failure to connect
  7368. // });
  7369. // //sten for candidate events
  7370. // pc.onicecandidate = function(ice) {
  7371. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7372. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7373. // };
  7374. // }
  7375. // U.MD.D.I.getUserIpBool = function(callback){
  7376. // U.MD.D.I.getUserIP(function(ip){
  7377. // alert("Got IP! :" + ip);
  7378. // });
  7379. //}
  7380. //#endregion
  7381. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7382. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7383. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7384. _userinfo = US.userInfo, //登录用户信息
  7385. _userid = US.userInfo.userid //登录用户id
  7386. let _iframe;
  7387. let _cid = cid,
  7388. _stage = stage,
  7389. _task = task,
  7390. _tool = tool;
  7391. var _jie = $$("div", {
  7392. "style": {
  7393. "position": "absolute",
  7394. "bottom": "50px",
  7395. "right": "50px",
  7396. "zIndex": "9999",
  7397. "backgroundColor": "#2268bc",
  7398. "color": "#fff",
  7399. "padding": "12px 20px",
  7400. "cursor": "pointer",
  7401. "borderRadius": "4px",
  7402. },
  7403. "innerHTML": "提交作业"
  7404. })
  7405. let aTool = ''
  7406. let _loading = document.createElement('div')
  7407. _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;"
  7408. // _loading.id = "";
  7409. let _lchild = document.createElement('div')
  7410. let _limg = document.createElement('img')
  7411. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7412. _limg.style = "width: 26px;margin-right: 10px;"
  7413. _lchild.appendChild(_limg)
  7414. let _lspan = document.createElement('span')
  7415. _lspan.innerHTML = "上传中..."
  7416. _lchild.appendChild(_lspan)
  7417. _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%);"
  7418. _loading.appendChild(_lchild)
  7419. var _box = $$('div', {
  7420. "style": {
  7421. "position": "relative",
  7422. "width": "100%",
  7423. "height": "100%",
  7424. },
  7425. })
  7426. _box.appendChild(_loading)
  7427. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7428. switch (str) {
  7429. case "whiteboard":
  7430. aTool = 1;
  7431. _iframe = $$("iframe", {
  7432. "frameborder": "no",
  7433. "border": "0",
  7434. "scrolling ": "no",
  7435. "style": {
  7436. "cssText": "border:0;width:100%;height:100%"
  7437. },
  7438. "src": "https://beta.iwb.cocorobo.cn/"
  7439. })
  7440. _box.appendChild(_iframe);
  7441. _box.appendChild(_jie);
  7442. _formdiv = new U.UF.UI.form(
  7443. "电子白板",
  7444. _box, {
  7445. "id": "whiteboard" + cid + stage + task + tool,
  7446. "style": {
  7447. "width": "90%",
  7448. "height": "90%",
  7449. "overflow": 'hidden'
  7450. },
  7451. "onresize": function () { }
  7452. }, {
  7453. closecallback: function () { }
  7454. }, {
  7455. "style": {
  7456. "height": "36px"
  7457. }
  7458. }).form; //创建窗体
  7459. _taskbar = {
  7460. "id": str + _formdiv.id,
  7461. "style": {
  7462. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7463. },
  7464. "name": "电子白板",
  7465. "forms": _formdiv,
  7466. "click": function () {
  7467. U.MD.D.I.openApplication(str, obj, info);
  7468. }
  7469. }
  7470. break;
  7471. case "mind":
  7472. aTool = 3;
  7473. _iframe = $$("iframe", {
  7474. "frameborder": "no",
  7475. "border": "0",
  7476. "scrolling ": "no",
  7477. "style": {
  7478. "cssText": "border:0;width:100%;height:100%"
  7479. },
  7480. "src": "/kityminder-editor/dist/index.html"
  7481. })
  7482. _box.appendChild(_iframe);
  7483. _box.appendChild(_jie);
  7484. _formdiv = new U.UF.UI.form(
  7485. "思维导图",
  7486. _box, { //"/jsmind/example/demo.html"
  7487. "id": "mind" + cid + stage + task + tool,
  7488. "style": {
  7489. "width": "90%",
  7490. "height": "90%",
  7491. "overflow": 'hidden'
  7492. },
  7493. "onresize": function () { }
  7494. }, {
  7495. closecallback: function () { }
  7496. }, {
  7497. "style": {
  7498. "height": "36px"
  7499. }
  7500. }).form; //创建窗体
  7501. _taskbar = {
  7502. "id": str + _formdiv.id,
  7503. "style": {
  7504. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7505. },
  7506. "name": "思维导图",
  7507. "forms": _formdiv,
  7508. "click": function () {
  7509. U.MD.D.I.openApplication(str, obj, info);
  7510. }
  7511. }
  7512. break;
  7513. case "MindMap":
  7514. aTool = 3;
  7515. _iframe = $$("iframe", {
  7516. "frameborder": "no",
  7517. "border": "0",
  7518. "scrolling ": "no",
  7519. "style": {
  7520. "cssText": "border:0;width:100%;height:100%"
  7521. },
  7522. "src": "//cloud.cocorobo.cn/mind/"
  7523. })
  7524. _box.appendChild(_iframe);
  7525. _box.appendChild(_jie);
  7526. _formdiv = new U.UF.UI.form(
  7527. "思维导图",
  7528. _box, { //"/jsmind/example/demo.html"
  7529. "id": "mind" + cid + stage + task + tool,
  7530. "style": {
  7531. "width": "90%",
  7532. "height": "90%",
  7533. "overflow": 'hidden'
  7534. },
  7535. "onresize": function () { }
  7536. }, {
  7537. closecallback: function () { }
  7538. }, {
  7539. "style": {
  7540. "height": "36px"
  7541. }
  7542. }).form; //创建窗体
  7543. _taskbar = {
  7544. "id": str + _formdiv.id,
  7545. "style": {
  7546. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7547. },
  7548. "name": "思维导图",
  7549. "forms": _formdiv,
  7550. "click": function () {
  7551. U.MD.D.I.openApplication(str, obj, info);
  7552. }
  7553. }
  7554. break;
  7555. case "doc":
  7556. aTool = 6;
  7557. _iframe = $$("iframe", {
  7558. "frameborder": "no",
  7559. "border": "0",
  7560. "scrolling ": "no",
  7561. "style": {
  7562. "cssText": "border:0;width:100%;height:100%"
  7563. },
  7564. "src": "/Office/Word/WordEditArea.htm"
  7565. })
  7566. _box.appendChild(_iframe);
  7567. _box.appendChild(_jie);
  7568. _formdiv = new U.UF.UI.form(
  7569. "协同文档",
  7570. _box, {
  7571. "id": "doc" + cid + stage + task + tool,
  7572. "style": {
  7573. "width": "90%",
  7574. "height": "90%",
  7575. "overflow": 'hidden'
  7576. },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, {
  7581. "style": {
  7582. "height": "36px"
  7583. }
  7584. }).form; //创建窗体
  7585. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7586. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7587. })
  7588. _taskbar = {
  7589. "id": str + _formdiv.id,
  7590. "style": {
  7591. "backgroundImage": "url(/img/icon/doc.png)"
  7592. },
  7593. "name": "协同文档",
  7594. "forms": _formdiv,
  7595. "click": function () {
  7596. U.MD.D.I.openApplication(str, obj, info);
  7597. }
  7598. }
  7599. break;
  7600. case "mindNetwork": //好友打开
  7601. aTool = 7;
  7602. _iframe = $$("iframe", {
  7603. "webkitallowfullscreen": "",
  7604. "mozallowfullscreen": "",
  7605. "allowfullscreen": "",
  7606. "frameborder": "no",
  7607. "border": "0",
  7608. "scrolling ": "no",
  7609. "style": {
  7610. "cssText": "border:0; width:100%; height:100%;"
  7611. },
  7612. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7613. })
  7614. _box.appendChild(_iframe);
  7615. _box.appendChild(_jie);
  7616. _formdiv = new U.UF.UI.form(
  7617. "思维网格",
  7618. _box, {
  7619. "id": "mindNetwork" + cid + stage + task + tool,
  7620. "style": {
  7621. "width": "90%",
  7622. "height": "90%",
  7623. "overflow": 'hidden'
  7624. },
  7625. "onresize": function () { }
  7626. }, {
  7627. closecallback: function () { }
  7628. }, {
  7629. "style": {
  7630. "height": "36px"
  7631. }
  7632. }).form; //创建窗体
  7633. _taskbar = {
  7634. "id": str + _formdiv.id,
  7635. "style": {
  7636. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7637. },
  7638. "name": "思维网格",
  7639. "forms": _formdiv,
  7640. "click": function () {
  7641. U.MD.D.I.openApplication(str, obj, info);
  7642. }
  7643. }
  7644. break;
  7645. case "courseDesign":
  7646. _iframe = $$("iframe", {
  7647. "webkitallowfullscreen": "",
  7648. "mozallowfullscreen": "",
  7649. "allowfullscreen": "",
  7650. "frameborder": "no",
  7651. "border": "0",
  7652. "scrolling ": "no",
  7653. "style": {
  7654. "cssText": "border:0; width:100%; height:100%;"
  7655. },
  7656. "src": "/course-design-vue"
  7657. })
  7658. _box.appendChild(_iframe);
  7659. _box.appendChild(_jie);
  7660. _formdiv = new U.UF.UI.form(
  7661. "项目设计",
  7662. _box, {
  7663. "id": "courseDesign" + cid + stage + task + tool,
  7664. "style": {
  7665. "width": "90%",
  7666. "height": "90%",
  7667. "overflow": 'hidden'
  7668. },
  7669. "onresize": function () { }
  7670. }, {
  7671. closecallback: function () { }
  7672. }, {
  7673. "style": {
  7674. "height": "36px"
  7675. }
  7676. }).form; //创建窗体
  7677. _taskbar = {
  7678. "id": str + _formdiv.id,
  7679. "style": {
  7680. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7681. },
  7682. "name": "项目设计",
  7683. "forms": _formdiv,
  7684. "click": function () {
  7685. U.MD.D.I.openApplication(str, obj, info);
  7686. }
  7687. }
  7688. break;
  7689. }
  7690. const script1 = document.createElement("script");
  7691. script1.type = "text/javascript";
  7692. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7693. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7694. const script2 = document.createElement("script");
  7695. script2.type = "text/javascript";
  7696. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7697. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7698. const script3 = document.createElement("script");
  7699. script3.type = "text/javascript";
  7700. script3.charset = "UTF-8";
  7701. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7702. const script4 = document.createElement("script");
  7703. script4.type = "text/javascript";
  7704. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7705. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7706. if (_iframe) {
  7707. if (str == 'doc') {
  7708. _iframe = _formdiv.querySelector('iframe')
  7709. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7710. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7711. _iframe.contentWindow.document.body.appendChild(script1);
  7712. _iframe.contentWindow.document.body.appendChild(script2);
  7713. // _iframe.contentWindow.document.body.appendChild(script3);
  7714. _iframe.contentWindow.document.body.appendChild(script4);
  7715. })
  7716. if (onloadListener) {
  7717. _iframe.contentDocument.location.reload()
  7718. } else {
  7719. _iframe.contentDocument.location.reload()
  7720. }
  7721. } else if (str == 'courseDesign') {
  7722. U.UF.DL.iframeLoad(_iframe, function () {
  7723. // _iframe.contentWindow.U.MD.O.W.load();
  7724. // _iframe.contentWindow.document.body.appendChild(script1);
  7725. _iframe.contentWindow.document.body.appendChild(script2);
  7726. _iframe.contentWindow.document.body.appendChild(script4);
  7727. })
  7728. } else if (str == 'mind') {
  7729. _iframe = _formdiv.querySelector('iframe')
  7730. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7731. //
  7732. _iframe.contentWindow.document.body.appendChild(script1);
  7733. _iframe.contentWindow.document.body.appendChild(script2);
  7734. _iframe.contentWindow.document.body.appendChild(script4);
  7735. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7736. })
  7737. if (onloadListener) {
  7738. _iframe.contentDocument.location.reload()
  7739. } else {
  7740. _iframe.contentDocument.location.reload()
  7741. }
  7742. } else if (str == 'whiteboard') {
  7743. _iframe = _formdiv.querySelector('iframe')
  7744. let onloadListener = _iframe.onload = () => {
  7745. _iframe.contentWindow.document.body.appendChild(script1);
  7746. _iframe.contentWindow.document.body.appendChild(script2);
  7747. _iframe.contentWindow.document.body.appendChild(script4);
  7748. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7749. };
  7750. // if (onloadListener) {
  7751. // try {
  7752. // _iframe.src += "?cocorobo="+new Date().getTime()
  7753. // _iframe.contentWindow.document.location.reload()
  7754. // } catch (error) {
  7755. // }
  7756. // } else {
  7757. // _iframe.contentDocument.location.reload()
  7758. // }
  7759. } else {
  7760. _iframe.onload = () => {
  7761. _iframe.contentWindow.document.body.appendChild(script1);
  7762. _iframe.contentWindow.document.body.appendChild(script2);
  7763. // _iframe.contentWindow.document.body.appendChild(script3);
  7764. _iframe.contentWindow.document.body.appendChild(script4);
  7765. };
  7766. }
  7767. _jie.onclick = async () => {
  7768. let text = ''
  7769. if (aTool == 1) {
  7770. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7771. } else if (aTool == 6) {
  7772. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7773. } else if (aTool == 3) {
  7774. text = await U.MD.D.I.getEditorContent(_iframe);
  7775. }
  7776. _loading.style.display = 'flex'
  7777. console.log(_loading);
  7778. var _ajs = _iframe.contentWindow.document.createElement("script");
  7779. _ajs.type = "text/javascript";
  7780. _ajs.innerHTML =
  7781. // 'console.log(' + _loading + ');\n' +
  7782. 'var _js = document.createElement("script");\n' +
  7783. '_js.type="text/javascript";\n' +
  7784. '_js.charset="UTF-8";\n' +
  7785. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7786. "_js.onload = function(){\n" +
  7787. ' var a = document.getElementsByTagName("img")\n' +
  7788. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7789. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7790. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7791. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7792. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7793. "beforeUpload_shishi(file," +
  7794. "'" +
  7795. _userid +
  7796. "'" +
  7797. ", " +
  7798. "'" +
  7799. _cid +
  7800. "'" +
  7801. ", " +
  7802. "'" +
  7803. _stage +
  7804. "'" +
  7805. ", " +
  7806. "'" +
  7807. _task +
  7808. "'" +
  7809. ", " +
  7810. "'" +
  7811. _tool +
  7812. "'" +
  7813. ", " +
  7814. "'" +
  7815. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7816. "'" +
  7817. ", " +
  7818. "'" +
  7819. aTool +
  7820. "'" +
  7821. ", " +
  7822. "`" +
  7823. text +
  7824. "`" +
  7825. ")\n" +
  7826. " });\n" +
  7827. "}\n" +
  7828. "document.head.appendChild(_js);\n";
  7829. _iframe.contentWindow.document.head.appendChild(_ajs);
  7830. }
  7831. }
  7832. //U.MD.D.I.openClick(str);
  7833. //如果有任务栏信息
  7834. // if (_taskbar) {
  7835. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7836. // }
  7837. }
  7838. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7839. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7840. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7841. _userinfo = US.userInfo, //登录用户信息
  7842. _userid = US.userInfo.userid //登录用户id
  7843. let _iframe;
  7844. let _cid = cid,
  7845. _stage = stage,
  7846. _task = task,
  7847. _tool = tool;
  7848. var _jie = $$("div", {
  7849. "style": {
  7850. "position": "absolute",
  7851. "bottom": "50px",
  7852. "right": "50px",
  7853. "zIndex": "9999",
  7854. "backgroundColor": "#2268bc",
  7855. "color": "#fff",
  7856. "padding": "12px 20px",
  7857. "cursor": "pointer",
  7858. "borderRadius": "4px",
  7859. },
  7860. "innerHTML": "提交作业"
  7861. })
  7862. let aTool = ''
  7863. let _loading = document.createElement('div')
  7864. _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;"
  7865. // _loading.id = "";
  7866. let _lchild = document.createElement('div')
  7867. let _limg = document.createElement('img')
  7868. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7869. _limg.style = "width: 26px;margin-right: 10px;"
  7870. _lchild.appendChild(_limg)
  7871. let _lspan = document.createElement('span')
  7872. _lspan.innerHTML = "上传中..."
  7873. _lchild.appendChild(_lspan)
  7874. _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%);"
  7875. _loading.appendChild(_lchild)
  7876. let _box = $$('div', {
  7877. "style": {
  7878. "position": "relative",
  7879. "width": "100%",
  7880. "height": "100%",
  7881. },
  7882. })
  7883. _box.appendChild(_loading)
  7884. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7885. switch (str) {
  7886. case "whiteboard":
  7887. aTool = 1;
  7888. _iframe = $$("iframe", {
  7889. "frameborder": "no",
  7890. "border": "0",
  7891. "scrolling ": "no",
  7892. "style": {
  7893. "cssText": "border:0;width:100%;height:100%"
  7894. },
  7895. "src": "https://beta.iwb.cocorobo.cn/"
  7896. })
  7897. _box.appendChild(_iframe);
  7898. _box.appendChild(_jie);
  7899. _formdiv = new U.UF.UI.form(
  7900. "电子白板",
  7901. _box, {
  7902. "id": "whiteboard" + cid + stage + task + tool,
  7903. "style": {
  7904. "width": "90%",
  7905. "height": "90%",
  7906. "overflow": 'hidden'
  7907. },
  7908. "onresize": function () { }
  7909. }, {
  7910. closecallback: function () { }
  7911. }, {
  7912. "style": {
  7913. "height": "36px"
  7914. }
  7915. }).form; //创建窗体
  7916. _taskbar = {
  7917. "id": str + _formdiv.id,
  7918. "style": {
  7919. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7920. },
  7921. "name": "电子白板",
  7922. "forms": _formdiv,
  7923. "click": function () {
  7924. U.MD.D.I.openApplication(str, obj, info);
  7925. }
  7926. }
  7927. break;
  7928. case "mind":
  7929. aTool = 3;
  7930. _iframe = $$("iframe", {
  7931. "frameborder": "no",
  7932. "border": "0",
  7933. "scrolling ": "no",
  7934. "style": {
  7935. "cssText": "border:0;width:100%;height:100%"
  7936. },
  7937. "src": "/kityminder-editor/dist/index.html"
  7938. })
  7939. _box.appendChild(_iframe);
  7940. _box.appendChild(_jie);
  7941. _formdiv = new U.UF.UI.form(
  7942. "思维导图",
  7943. _box, { //"/jsmind/example/demo.html"
  7944. "id": "mind" + cid + stage + task + tool,
  7945. "style": {
  7946. "width": "90%",
  7947. "height": "90%",
  7948. "overflow": 'hidden'
  7949. },
  7950. "onresize": function () { }
  7951. }, {
  7952. closecallback: function () { }
  7953. }, {
  7954. "style": {
  7955. "height": "36px"
  7956. }
  7957. }).form; //创建窗体
  7958. _taskbar = {
  7959. "id": str + _formdiv.id,
  7960. "style": {
  7961. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7962. },
  7963. "name": "思维导图",
  7964. "forms": _formdiv,
  7965. "click": function () {
  7966. U.MD.D.I.openApplication(str, obj, info);
  7967. }
  7968. }
  7969. break;
  7970. case "MindMap":
  7971. aTool = 3;
  7972. _iframe = $$("iframe", {
  7973. "frameborder": "no",
  7974. "border": "0",
  7975. "scrolling ": "no",
  7976. "style": {
  7977. "cssText": "border:0;width:100%;height:100%"
  7978. },
  7979. "src": "//cloud.cocorobo.cn/mind/"
  7980. })
  7981. _box.appendChild(_iframe);
  7982. _box.appendChild(_jie);
  7983. _formdiv = new U.UF.UI.form(
  7984. "思维导图",
  7985. _box, { //"/jsmind/example/demo.html"
  7986. "id": "mind" + cid + stage + task + tool,
  7987. "style": {
  7988. "width": "90%",
  7989. "height": "90%",
  7990. "overflow": 'hidden'
  7991. },
  7992. "onresize": function () { }
  7993. }, {
  7994. closecallback: function () { }
  7995. }, {
  7996. "style": {
  7997. "height": "36px"
  7998. }
  7999. }).form; //创建窗体
  8000. _taskbar = {
  8001. "id": str + _formdiv.id,
  8002. "style": {
  8003. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8004. },
  8005. "name": "思维导图",
  8006. "forms": _formdiv,
  8007. "click": function () {
  8008. U.MD.D.I.openApplication(str, obj, info);
  8009. }
  8010. }
  8011. break;
  8012. case "doc":
  8013. aTool = 6;
  8014. _iframe = $$("iframe", {
  8015. "frameborder": "no",
  8016. "border": "0",
  8017. "scrolling ": "no",
  8018. "style": {
  8019. "cssText": "border:0;width:100%;height:100%"
  8020. },
  8021. "src": "/Office/Word/WordEditArea.htm"
  8022. })
  8023. _box.appendChild(_iframe);
  8024. _box.appendChild(_jie);
  8025. _formdiv = new U.UF.UI.form(
  8026. "协同文档",
  8027. _box, {
  8028. "id": "doc" + cid + stage + task + tool,
  8029. "style": {
  8030. "width": "90%",
  8031. "height": "90%",
  8032. "overflow": 'hidden'
  8033. },
  8034. "onresize": function () { }
  8035. }, {
  8036. closecallback: function () { }
  8037. }, {
  8038. "style": {
  8039. "height": "36px"
  8040. }
  8041. }).form; //创建窗体
  8042. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8043. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8044. })
  8045. _taskbar = {
  8046. "id": str + _formdiv.id,
  8047. "style": {
  8048. "backgroundImage": "url(/img/icon/doc.png)"
  8049. },
  8050. "name": "协同文档",
  8051. "forms": _formdiv,
  8052. "click": function () {
  8053. U.MD.D.I.openApplication(str, obj, info);
  8054. }
  8055. }
  8056. break;
  8057. case "mindNetwork": //好友打开
  8058. aTool = 7;
  8059. _iframe = $$("iframe", {
  8060. "webkitallowfullscreen": "",
  8061. "mozallowfullscreen": "",
  8062. "allowfullscreen": "",
  8063. "frameborder": "no",
  8064. "border": "0",
  8065. "scrolling ": "no",
  8066. "style": {
  8067. "cssText": "border:0; width:100%; height:100%;"
  8068. },
  8069. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8070. })
  8071. _box.appendChild(_iframe);
  8072. _box.appendChild(_jie);
  8073. _formdiv = new U.UF.UI.form(
  8074. "思维网格",
  8075. _box, {
  8076. "id": "mindNetwork" + cid + stage + task + tool,
  8077. "style": {
  8078. "width": "90%",
  8079. "height": "90%",
  8080. "overflow": 'hidden'
  8081. },
  8082. "onresize": function () { }
  8083. }, {
  8084. closecallback: function () { }
  8085. }, {
  8086. "style": {
  8087. "height": "36px"
  8088. }
  8089. }).form; //创建窗体
  8090. _taskbar = {
  8091. "id": str + _formdiv.id,
  8092. "style": {
  8093. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8094. },
  8095. "name": "思维网格",
  8096. "forms": _formdiv,
  8097. "click": function () {
  8098. U.MD.D.I.openApplication(str, obj, info);
  8099. }
  8100. }
  8101. break;
  8102. case "courseDesign":
  8103. _iframe = $$("iframe", {
  8104. "webkitallowfullscreen": "",
  8105. "mozallowfullscreen": "",
  8106. "allowfullscreen": "",
  8107. "frameborder": "no",
  8108. "border": "0",
  8109. "scrolling ": "no",
  8110. "style": {
  8111. "cssText": "border:0; width:100%; height:100%;"
  8112. },
  8113. "src": "/course-design-vue"
  8114. })
  8115. _box.appendChild(_iframe);
  8116. _box.appendChild(_jie);
  8117. _formdiv = new U.UF.UI.form(
  8118. "项目设计",
  8119. _box, {
  8120. "id": "courseDesign" + cid + stage + task + tool,
  8121. "style": {
  8122. "width": "90%",
  8123. "height": "90%",
  8124. "overflow": 'hidden'
  8125. },
  8126. "onresize": function () { }
  8127. }, {
  8128. closecallback: function () { }
  8129. }, {
  8130. "style": {
  8131. "height": "36px"
  8132. }
  8133. }).form; //创建窗体
  8134. _taskbar = {
  8135. "id": str + _formdiv.id,
  8136. "style": {
  8137. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8138. },
  8139. "name": "项目设计",
  8140. "forms": _formdiv,
  8141. "click": function () {
  8142. U.MD.D.I.openApplication(str, obj, info);
  8143. }
  8144. }
  8145. break;
  8146. }
  8147. const script1 = document.createElement("script");
  8148. script1.type = "text/javascript";
  8149. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8150. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8151. const script2 = document.createElement("script");
  8152. script2.type = "text/javascript";
  8153. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8154. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8155. const script3 = document.createElement("script");
  8156. script3.type = "text/javascript";
  8157. script3.charset = "UTF-8";
  8158. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8159. const script4 = document.createElement("script");
  8160. script4.type = "text/javascript";
  8161. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8162. script4.src = window.origin + "/js/Common/jietu2E.js";
  8163. if (_iframe) {
  8164. if (str == 'doc') {
  8165. _iframe = _formdiv.querySelector('iframe')
  8166. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8167. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8168. _iframe.contentWindow.document.body.appendChild(script1);
  8169. _iframe.contentWindow.document.body.appendChild(script2);
  8170. // _iframe.contentWindow.document.body.appendChild(script3);
  8171. _iframe.contentWindow.document.body.appendChild(script4);
  8172. })
  8173. if (onloadListener) {
  8174. _iframe.contentDocument.location.reload()
  8175. } else {
  8176. _iframe.contentDocument.location.reload()
  8177. }
  8178. } else if (str == 'courseDesign') {
  8179. U.UF.DL.iframeLoad(_iframe, function () {
  8180. // _iframe.contentWindow.U.MD.O.W.load();
  8181. // _iframe.contentWindow.document.body.appendChild(script1);
  8182. _iframe.contentWindow.document.body.appendChild(script2);
  8183. _iframe.contentWindow.document.body.appendChild(script4);
  8184. })
  8185. } else if (str == 'mind') {
  8186. _iframe = _formdiv.querySelector('iframe')
  8187. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8188. //
  8189. _iframe.contentWindow.document.body.appendChild(script1);
  8190. _iframe.contentWindow.document.body.appendChild(script2);
  8191. _iframe.contentWindow.document.body.appendChild(script4);
  8192. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8193. })
  8194. if (onloadListener) {
  8195. _iframe.contentDocument.location.reload()
  8196. } else {
  8197. _iframe.contentDocument.location.reload()
  8198. }
  8199. } else if (str == 'whiteboard') {
  8200. _iframe = _formdiv.querySelector('iframe')
  8201. let onloadListener = _iframe.onload = () => {
  8202. _iframe.contentWindow.document.body.appendChild(script1);
  8203. _iframe.contentWindow.document.body.appendChild(script2);
  8204. _iframe.contentWindow.document.body.appendChild(script4);
  8205. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8206. };
  8207. // if (onloadListener) {
  8208. // try {
  8209. // _iframe.src += "?cocorobo="+new Date().getTime()
  8210. // _iframe.contentWindow.document.location.reload()
  8211. // } catch (error) {
  8212. // }
  8213. // } else {
  8214. // _iframe.contentDocument.location.reload()
  8215. // }
  8216. } else {
  8217. _iframe.onload = () => {
  8218. _iframe.contentWindow.document.body.appendChild(script1);
  8219. _iframe.contentWindow.document.body.appendChild(script2);
  8220. // _iframe.contentWindow.document.body.appendChild(script3);
  8221. _iframe.contentWindow.document.body.appendChild(script4);
  8222. };
  8223. }
  8224. _jie.onclick = async () => {
  8225. let text = ''
  8226. if (aTool == 1) {
  8227. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8228. } else if (aTool == 6) {
  8229. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8230. } else if (aTool == 3) {
  8231. text = await U.MD.D.I.getEditorContent(_iframe);
  8232. }
  8233. _loading.style.display = 'flex'
  8234. console.log(_loading);
  8235. var _ajs = _iframe.contentWindow.document.createElement("script");
  8236. _ajs.type = "text/javascript";
  8237. _ajs.innerHTML =
  8238. // 'console.log(' + _loading + ');\n' +
  8239. 'var _js = document.createElement("script");\n' +
  8240. '_js.type="text/javascript";\n' +
  8241. '_js.charset="UTF-8";\n' +
  8242. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8243. "_js.onload = function(){\n" +
  8244. ' var a = document.getElementsByTagName("img")\n' +
  8245. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8246. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8247. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8248. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8249. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8250. "beforeUpload_shishi(file," +
  8251. "'" +
  8252. _userid +
  8253. "'" +
  8254. ", " +
  8255. "'" +
  8256. _cid +
  8257. "'" +
  8258. ", " +
  8259. "'" +
  8260. _stage +
  8261. "'" +
  8262. ", " +
  8263. "'" +
  8264. _task +
  8265. "'" +
  8266. ", " +
  8267. "'" +
  8268. _tool +
  8269. "'" +
  8270. ", " +
  8271. "'" +
  8272. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  8273. "'" +
  8274. ", " +
  8275. "'" +
  8276. aTool +
  8277. "'" +
  8278. ", " +
  8279. "`" +
  8280. text +
  8281. "`" +
  8282. ")\n" +
  8283. " });\n" +
  8284. "}\n" +
  8285. "document.head.appendChild(_js);\n";
  8286. _iframe.contentWindow.document.head.appendChild(_ajs);
  8287. }
  8288. }
  8289. //U.MD.D.I.openClick(str);
  8290. //如果有任务栏信息
  8291. // if (_taskbar) {
  8292. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8293. // }
  8294. }
  8295. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  8296. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8297. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8298. _userid = student.userid, //登录用户id
  8299. _username = student.student //用户名字
  8300. let _iframe;
  8301. let _cid = cid,
  8302. _stage = stage,
  8303. _task = task,
  8304. _tool = tool;
  8305. var _jie = $$("div", {
  8306. "style": {
  8307. "position": "absolute",
  8308. "bottom": "50px",
  8309. "right": "50px",
  8310. "zIndex": "9999",
  8311. "backgroundColor": "#2268bc",
  8312. "color": "#fff",
  8313. "padding": "12px 20px",
  8314. "cursor": "pointer",
  8315. "borderRadius": "4px",
  8316. },
  8317. "innerHTML": "提交作业"
  8318. })
  8319. let aTool = ''
  8320. let _loading = document.createElement('div')
  8321. _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;"
  8322. // _loading.id = "";
  8323. let _lchild = document.createElement('div')
  8324. let _limg = document.createElement('img')
  8325. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8326. _limg.style = "width: 26px;margin-right: 10px;"
  8327. _lchild.appendChild(_limg)
  8328. let _lspan = document.createElement('span')
  8329. _lspan.innerHTML = "上传中..."
  8330. _lchild.appendChild(_lspan)
  8331. _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%);"
  8332. _loading.appendChild(_lchild)
  8333. var _box = $$('div', {
  8334. "style": {
  8335. "position": "relative",
  8336. "width": "100%",
  8337. "height": "100%",
  8338. },
  8339. })
  8340. _box.appendChild(_loading)
  8341. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8342. switch (str) {
  8343. case "whiteboard":
  8344. aTool = 1;
  8345. _iframe = $$("iframe", {
  8346. "frameborder": "no",
  8347. "border": "0",
  8348. "scrolling ": "no",
  8349. "style": {
  8350. "cssText": "border:0;width:100%;height:100%"
  8351. },
  8352. "src": "https://beta.iwb.cocorobo.cn/"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "电子白板-" + _username,
  8358. _box, {
  8359. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8360. "style": {
  8361. "width": "90%",
  8362. "height": "90%",
  8363. "overflow": 'hidden'
  8364. },
  8365. "onresize": function () { }
  8366. }, {
  8367. closecallback: function () { }
  8368. }, {
  8369. "style": {
  8370. "height": "36px"
  8371. }
  8372. }).form; //创建窗体
  8373. _taskbar = {
  8374. "id": str + _formdiv.id,
  8375. "style": {
  8376. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8377. },
  8378. "name": "电子白板",
  8379. "forms": _formdiv,
  8380. "click": function () {
  8381. U.MD.D.I.openApplication(str, obj, info);
  8382. }
  8383. }
  8384. break;
  8385. case "mind":
  8386. aTool = 3;
  8387. _iframe = $$("iframe", {
  8388. "frameborder": "no",
  8389. "border": "0",
  8390. "scrolling ": "no",
  8391. "style": {
  8392. "cssText": "border:0;width:100%;height:100%"
  8393. },
  8394. "src": "/kityminder-editor/dist/index.html"
  8395. })
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维导图-" + _username,
  8400. _box, { //"/jsmind/example/demo.html"
  8401. "id": "mind" + cid + stage + task + tool + _userid,
  8402. "style": {
  8403. "width": "90%",
  8404. "height": "90%",
  8405. "overflow": 'hidden'
  8406. },
  8407. "onresize": function () { }
  8408. }, {
  8409. closecallback: function () { }
  8410. }, {
  8411. "style": {
  8412. "height": "36px"
  8413. }
  8414. }).form; //创建窗体
  8415. _taskbar = {
  8416. "id": str + _formdiv.id,
  8417. "style": {
  8418. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8419. },
  8420. "name": "思维导图",
  8421. "forms": _formdiv,
  8422. "click": function () {
  8423. U.MD.D.I.openApplication(str, obj, info);
  8424. }
  8425. }
  8426. break;
  8427. case "MindMap":
  8428. aTool = 3;
  8429. _iframe = $$("iframe", {
  8430. "frameborder": "no",
  8431. "border": "0",
  8432. "scrolling ": "no",
  8433. "style": {
  8434. "cssText": "border:0;width:100%;height:100%"
  8435. },
  8436. "src": "//cloud.cocorobo.cn/mind/"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "思维导图-" + _username,
  8442. _box, { //"/jsmind/example/demo.html"
  8443. "id": "mind" + cid + stage + task + tool + _userid,
  8444. "style": {
  8445. "width": "90%",
  8446. "height": "90%",
  8447. "overflow": 'hidden'
  8448. },
  8449. "onresize": function () { }
  8450. }, {
  8451. closecallback: function () { }
  8452. }, {
  8453. "style": {
  8454. "height": "36px"
  8455. }
  8456. }).form; //创建窗体
  8457. _taskbar = {
  8458. "id": str + _formdiv.id,
  8459. "style": {
  8460. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8461. },
  8462. "name": "思维导图",
  8463. "forms": _formdiv,
  8464. "click": function () {
  8465. U.MD.D.I.openApplication(str, obj, info);
  8466. }
  8467. }
  8468. break;
  8469. case "doc":
  8470. aTool = 6;
  8471. _iframe = $$("iframe", {
  8472. "frameborder": "no",
  8473. "border": "0",
  8474. "scrolling ": "no",
  8475. "style": {
  8476. "cssText": "border:0;width:100%;height:100%"
  8477. },
  8478. "src": "/Office/Word/WordEditArea.htm"
  8479. })
  8480. _box.appendChild(_iframe);
  8481. _box.appendChild(_jie);
  8482. _formdiv = new U.UF.UI.form(
  8483. "协同文档-" + _username,
  8484. _box, {
  8485. "id": "doc" + cid + stage + task + tool + _userid,
  8486. "style": {
  8487. "width": "90%",
  8488. "height": "90%",
  8489. "overflow": 'hidden'
  8490. },
  8491. "onresize": function () { }
  8492. }, {
  8493. closecallback: function () { }
  8494. }, {
  8495. "style": {
  8496. "height": "36px"
  8497. }
  8498. }).form; //创建窗体
  8499. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8500. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8501. })
  8502. _taskbar = {
  8503. "id": str + _formdiv.id,
  8504. "style": {
  8505. "backgroundImage": "url(/img/icon/doc.png)"
  8506. },
  8507. "name": "协同文档",
  8508. "forms": _formdiv,
  8509. "click": function () {
  8510. U.MD.D.I.openApplication(str, obj, info);
  8511. }
  8512. }
  8513. break;
  8514. case "mindNetwork": //好友打开
  8515. aTool = 7;
  8516. _iframe = $$("iframe", {
  8517. "webkitallowfullscreen": "",
  8518. "mozallowfullscreen": "",
  8519. "allowfullscreen": "",
  8520. "frameborder": "no",
  8521. "border": "0",
  8522. "scrolling ": "no",
  8523. "style": {
  8524. "cssText": "border:0; width:100%; height:100%;"
  8525. },
  8526. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8527. })
  8528. _box.appendChild(_iframe);
  8529. _box.appendChild(_jie);
  8530. _formdiv = new U.UF.UI.form(
  8531. "思维网格-" + _username,
  8532. _box, {
  8533. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8534. "style": {
  8535. "width": "90%",
  8536. "height": "90%",
  8537. "overflow": 'hidden'
  8538. },
  8539. "onresize": function () { }
  8540. }, {
  8541. closecallback: function () { }
  8542. }, {
  8543. "style": {
  8544. "height": "36px"
  8545. }
  8546. }).form; //创建窗体
  8547. _taskbar = {
  8548. "id": str + _formdiv.id,
  8549. "style": {
  8550. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8551. },
  8552. "name": "思维网格",
  8553. "forms": _formdiv,
  8554. "click": function () {
  8555. U.MD.D.I.openApplication(str, obj, info);
  8556. }
  8557. }
  8558. break;
  8559. case "courseDesign":
  8560. _iframe = $$("iframe", {
  8561. "webkitallowfullscreen": "",
  8562. "mozallowfullscreen": "",
  8563. "allowfullscreen": "",
  8564. "frameborder": "no",
  8565. "border": "0",
  8566. "scrolling ": "no",
  8567. "style": {
  8568. "cssText": "border:0; width:100%; height:100%;"
  8569. },
  8570. "src": "/course-design-vue"
  8571. })
  8572. _box.appendChild(_iframe);
  8573. _box.appendChild(_jie);
  8574. _formdiv = new U.UF.UI.form(
  8575. "项目设计-" + _username,
  8576. _box, {
  8577. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8578. "style": {
  8579. "width": "90%",
  8580. "height": "90%",
  8581. "overflow": 'hidden'
  8582. },
  8583. "onresize": function () { }
  8584. }, {
  8585. closecallback: function () { }
  8586. }, {
  8587. "style": {
  8588. "height": "36px"
  8589. }
  8590. }).form; //创建窗体
  8591. _taskbar = {
  8592. "id": str + _formdiv.id,
  8593. "style": {
  8594. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8595. },
  8596. "name": "项目设计",
  8597. "forms": _formdiv,
  8598. "click": function () {
  8599. U.MD.D.I.openApplication(str, obj, info);
  8600. }
  8601. }
  8602. break;
  8603. }
  8604. const script1 = document.createElement("script");
  8605. script1.type = "text/javascript";
  8606. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8607. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8608. const script2 = document.createElement("script");
  8609. script2.type = "text/javascript";
  8610. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8611. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8612. const script3 = document.createElement("script");
  8613. script3.type = "text/javascript";
  8614. script3.charset = "UTF-8";
  8615. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8616. const script4 = document.createElement("script");
  8617. script4.type = "text/javascript";
  8618. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8619. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8620. if (_iframe) {
  8621. if (str == 'doc') {
  8622. _iframe = _formdiv.querySelector('iframe')
  8623. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8624. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8625. _iframe.contentWindow.document.body.appendChild(script1);
  8626. _iframe.contentWindow.document.body.appendChild(script2);
  8627. // _iframe.contentWindow.document.body.appendChild(script3);
  8628. _iframe.contentWindow.document.body.appendChild(script4);
  8629. })
  8630. if (onloadListener) {
  8631. _iframe.contentDocument.location.reload()
  8632. } else {
  8633. _iframe.contentDocument.location.reload()
  8634. }
  8635. } else if (str == 'courseDesign') {
  8636. U.UF.DL.iframeLoad(_iframe, function () {
  8637. // _iframe.contentWindow.U.MD.O.W.load();
  8638. // _iframe.contentWindow.document.body.appendChild(script1);
  8639. _iframe.contentWindow.document.body.appendChild(script2);
  8640. _iframe.contentWindow.document.body.appendChild(script4);
  8641. })
  8642. } else if (str == 'mind') {
  8643. _iframe = _formdiv.querySelector('iframe')
  8644. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8645. //
  8646. _iframe.contentWindow.document.body.appendChild(script1);
  8647. _iframe.contentWindow.document.body.appendChild(script2);
  8648. _iframe.contentWindow.document.body.appendChild(script4);
  8649. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8650. })
  8651. if (onloadListener) {
  8652. _iframe.contentDocument.location.reload()
  8653. } else {
  8654. _iframe.contentDocument.location.reload()
  8655. }
  8656. } else if (str == 'whiteboard') {
  8657. _iframe = _formdiv.querySelector('iframe')
  8658. let onloadListener = _iframe.onload = () => {
  8659. _iframe.contentWindow.document.body.appendChild(script1);
  8660. _iframe.contentWindow.document.body.appendChild(script2);
  8661. _iframe.contentWindow.document.body.appendChild(script4);
  8662. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8663. };
  8664. // if (onloadListener) {
  8665. // try {
  8666. // _iframe.src += "?cocorobo="+new Date().getTime()
  8667. // _iframe.contentWindow.document.location.reload()
  8668. // } catch (error) {
  8669. // }
  8670. // } else {
  8671. // _iframe.contentDocument.location.reload()
  8672. // }
  8673. } else {
  8674. _iframe.onload = () => {
  8675. _iframe.contentWindow.document.body.appendChild(script1);
  8676. _iframe.contentWindow.document.body.appendChild(script2);
  8677. // _iframe.contentWindow.document.body.appendChild(script3);
  8678. _iframe.contentWindow.document.body.appendChild(script4);
  8679. };
  8680. }
  8681. _jie.onclick = async () => {
  8682. let text = ''
  8683. if (aTool == 1) {
  8684. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8685. } else if (aTool == 6) {
  8686. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8687. } else if (aTool == 3) {
  8688. text = await U.MD.D.I.getEditorContent(_iframe);
  8689. }
  8690. _loading.style.display = 'flex'
  8691. console.log(_loading);
  8692. var _ajs = _iframe.contentWindow.document.createElement("script");
  8693. _ajs.type = "text/javascript";
  8694. _ajs.innerHTML =
  8695. // 'console.log(' + _loading + ');\n' +
  8696. 'var _js = document.createElement("script");\n' +
  8697. '_js.type="text/javascript";\n' +
  8698. '_js.charset="UTF-8";\n' +
  8699. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8700. "_js.onload = function(){\n" +
  8701. ' var a = document.getElementsByTagName("img")\n' +
  8702. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8703. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8704. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8705. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8706. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8707. "beforeUpload_shishi(file," +
  8708. "'" +
  8709. _userid +
  8710. "'" +
  8711. ", " +
  8712. "'" +
  8713. _cid +
  8714. "'" +
  8715. ", " +
  8716. "'" +
  8717. _stage +
  8718. "'" +
  8719. ", " +
  8720. "'" +
  8721. _task +
  8722. "'" +
  8723. ", " +
  8724. "'" +
  8725. _tool +
  8726. "'" +
  8727. ", " +
  8728. "'" +
  8729. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8730. "'" +
  8731. ", " +
  8732. "'" +
  8733. aTool +
  8734. "'" +
  8735. ", " +
  8736. "`" +
  8737. text +
  8738. "`" +
  8739. ")\n" +
  8740. " });\n" +
  8741. "}\n" +
  8742. "document.head.appendChild(_js);\n";
  8743. _iframe.contentWindow.document.head.appendChild(_ajs);
  8744. }
  8745. }
  8746. }
  8747. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8748. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8749. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8750. _userid = student.userid, //登录用户id
  8751. _username = student.student //用户名字
  8752. let _iframe;
  8753. let _cid = cid,
  8754. _stage = stage,
  8755. _task = task,
  8756. _tool = tool;
  8757. var _jie = $$("div", {
  8758. "style": {
  8759. "position": "absolute",
  8760. "bottom": "50px",
  8761. "right": "50px",
  8762. "zIndex": "9999",
  8763. "backgroundColor": "#2268bc",
  8764. "color": "#fff",
  8765. "padding": "12px 20px",
  8766. "cursor": "pointer",
  8767. "borderRadius": "4px",
  8768. },
  8769. "innerHTML": "提交作业"
  8770. })
  8771. let aTool = ''
  8772. let _loading = document.createElement('div')
  8773. _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;"
  8774. // _loading.id = "";
  8775. let _lchild = document.createElement('div')
  8776. let _limg = document.createElement('img')
  8777. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8778. _limg.style = "width: 26px;margin-right: 10px;"
  8779. _lchild.appendChild(_limg)
  8780. let _lspan = document.createElement('span')
  8781. _lspan.innerHTML = "上传中..."
  8782. _lchild.appendChild(_lspan)
  8783. _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%);"
  8784. _loading.appendChild(_lchild)
  8785. var _box = $$('div', {
  8786. "style": {
  8787. "position": "relative",
  8788. "width": "100%",
  8789. "height": "100%",
  8790. },
  8791. })
  8792. _box.appendChild(_loading)
  8793. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8794. switch (str) {
  8795. case "whiteboard":
  8796. aTool = 1;
  8797. _iframe = $$("iframe", {
  8798. "frameborder": "no",
  8799. "border": "0",
  8800. "scrolling ": "no",
  8801. "style": {
  8802. "cssText": "border:0;width:100%;height:100%"
  8803. },
  8804. "src": "https://beta.iwb.cocorobo.cn/"
  8805. })
  8806. _box.appendChild(_iframe);
  8807. _box.appendChild(_jie);
  8808. _formdiv = new U.UF.UI.form(
  8809. "电子白板-" + _username,
  8810. _box, {
  8811. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8812. "style": {
  8813. "width": "90%",
  8814. "height": "90%",
  8815. "overflow": 'hidden'
  8816. },
  8817. "onresize": function () { }
  8818. }, {
  8819. closecallback: function () { }
  8820. }, {
  8821. "style": {
  8822. "height": "36px"
  8823. }
  8824. }).form; //创建窗体
  8825. _taskbar = {
  8826. "id": str + _formdiv.id,
  8827. "style": {
  8828. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8829. },
  8830. "name": "电子白板",
  8831. "forms": _formdiv,
  8832. "click": function () {
  8833. U.MD.D.I.openApplication(str, obj, info);
  8834. }
  8835. }
  8836. break;
  8837. case "mind":
  8838. aTool = 3;
  8839. _iframe = $$("iframe", {
  8840. "frameborder": "no",
  8841. "border": "0",
  8842. "scrolling ": "no",
  8843. "style": {
  8844. "cssText": "border:0;width:100%;height:100%"
  8845. },
  8846. "src": "/kityminder-editor/dist/index.html"
  8847. })
  8848. _box.appendChild(_iframe);
  8849. _box.appendChild(_jie);
  8850. _formdiv = new U.UF.UI.form(
  8851. "思维导图-" + _username,
  8852. _box, { //"/jsmind/example/demo.html"
  8853. "id": "mind" + cid + stage + task + tool + _userid,
  8854. "style": {
  8855. "width": "90%",
  8856. "height": "90%",
  8857. "overflow": 'hidden'
  8858. },
  8859. "onresize": function () { }
  8860. }, {
  8861. closecallback: function () { }
  8862. }, {
  8863. "style": {
  8864. "height": "36px"
  8865. }
  8866. }).form; //创建窗体
  8867. _taskbar = {
  8868. "id": str + _formdiv.id,
  8869. "style": {
  8870. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8871. },
  8872. "name": "思维导图",
  8873. "forms": _formdiv,
  8874. "click": function () {
  8875. U.MD.D.I.openApplication(str, obj, info);
  8876. }
  8877. }
  8878. break;
  8879. case "MindMap":
  8880. aTool = 3;
  8881. _iframe = $$("iframe", {
  8882. "frameborder": "no",
  8883. "border": "0",
  8884. "scrolling ": "no",
  8885. "style": {
  8886. "cssText": "border:0;width:100%;height:100%"
  8887. },
  8888. "src": "//cloud.cocorobo.cn/mind/"
  8889. })
  8890. _box.appendChild(_iframe);
  8891. _box.appendChild(_jie);
  8892. _formdiv = new U.UF.UI.form(
  8893. "思维导图-" + _username,
  8894. _box, { //"/jsmind/example/demo.html"
  8895. "id": "mind" + cid + stage + task + tool + _userid,
  8896. "style": {
  8897. "width": "90%",
  8898. "height": "90%",
  8899. "overflow": 'hidden'
  8900. },
  8901. "onresize": function () { }
  8902. }, {
  8903. closecallback: function () { }
  8904. }, {
  8905. "style": {
  8906. "height": "36px"
  8907. }
  8908. }).form; //创建窗体
  8909. _taskbar = {
  8910. "id": str + _formdiv.id,
  8911. "style": {
  8912. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8913. },
  8914. "name": "思维导图",
  8915. "forms": _formdiv,
  8916. "click": function () {
  8917. U.MD.D.I.openApplication(str, obj, info);
  8918. }
  8919. }
  8920. break;
  8921. case "doc":
  8922. aTool = 6;
  8923. _iframe = $$("iframe", {
  8924. "frameborder": "no",
  8925. "border": "0",
  8926. "scrolling ": "no",
  8927. "style": {
  8928. "cssText": "border:0;width:100%;height:100%"
  8929. },
  8930. "src": "/Office/Word/WordEditArea.htm"
  8931. })
  8932. _box.appendChild(_iframe);
  8933. _box.appendChild(_jie);
  8934. _formdiv = new U.UF.UI.form(
  8935. "协同文档-" + _username,
  8936. _box, {
  8937. "id": "doc" + cid + stage + task + tool + _userid,
  8938. "style": {
  8939. "width": "90%",
  8940. "height": "90%",
  8941. "overflow": 'hidden'
  8942. },
  8943. "onresize": function () { }
  8944. }, {
  8945. closecallback: function () { }
  8946. }, {
  8947. "style": {
  8948. "height": "36px"
  8949. }
  8950. }).form; //创建窗体
  8951. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8952. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8953. })
  8954. _taskbar = {
  8955. "id": str + _formdiv.id,
  8956. "style": {
  8957. "backgroundImage": "url(/img/icon/doc.png)"
  8958. },
  8959. "name": "协同文档",
  8960. "forms": _formdiv,
  8961. "click": function () {
  8962. U.MD.D.I.openApplication(str, obj, info);
  8963. }
  8964. }
  8965. break;
  8966. case "mindNetwork": //好友打开
  8967. aTool = 7;
  8968. _iframe = $$("iframe", {
  8969. "webkitallowfullscreen": "",
  8970. "mozallowfullscreen": "",
  8971. "allowfullscreen": "",
  8972. "frameborder": "no",
  8973. "border": "0",
  8974. "scrolling ": "no",
  8975. "style": {
  8976. "cssText": "border:0; width:100%; height:100%;"
  8977. },
  8978. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8979. })
  8980. _box.appendChild(_iframe);
  8981. _box.appendChild(_jie);
  8982. _formdiv = new U.UF.UI.form(
  8983. "思维网格-" + _username,
  8984. _box, {
  8985. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8986. "style": {
  8987. "width": "90%",
  8988. "height": "90%",
  8989. "overflow": 'hidden'
  8990. },
  8991. "onresize": function () { }
  8992. }, {
  8993. closecallback: function () { }
  8994. }, {
  8995. "style": {
  8996. "height": "36px"
  8997. }
  8998. }).form; //创建窗体
  8999. _taskbar = {
  9000. "id": str + _formdiv.id,
  9001. "style": {
  9002. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9003. },
  9004. "name": "思维网格",
  9005. "forms": _formdiv,
  9006. "click": function () {
  9007. U.MD.D.I.openApplication(str, obj, info);
  9008. }
  9009. }
  9010. break;
  9011. case "courseDesign":
  9012. _iframe = $$("iframe", {
  9013. "webkitallowfullscreen": "",
  9014. "mozallowfullscreen": "",
  9015. "allowfullscreen": "",
  9016. "frameborder": "no",
  9017. "border": "0",
  9018. "scrolling ": "no",
  9019. "style": {
  9020. "cssText": "border:0; width:100%; height:100%;"
  9021. },
  9022. "src": "/course-design-vue"
  9023. })
  9024. _box.appendChild(_iframe);
  9025. _box.appendChild(_jie);
  9026. _formdiv = new U.UF.UI.form(
  9027. "项目设计-" + _username,
  9028. _box, {
  9029. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9030. "style": {
  9031. "width": "90%",
  9032. "height": "90%",
  9033. "overflow": 'hidden'
  9034. },
  9035. "onresize": function () { }
  9036. }, {
  9037. closecallback: function () { }
  9038. }, {
  9039. "style": {
  9040. "height": "36px"
  9041. }
  9042. }).form; //创建窗体
  9043. _taskbar = {
  9044. "id": str + _formdiv.id,
  9045. "style": {
  9046. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9047. },
  9048. "name": "项目设计",
  9049. "forms": _formdiv,
  9050. "click": function () {
  9051. U.MD.D.I.openApplication(str, obj, info);
  9052. }
  9053. }
  9054. break;
  9055. }
  9056. const script1 = document.createElement("script");
  9057. script1.type = "text/javascript";
  9058. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9059. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9060. const script2 = document.createElement("script");
  9061. script2.type = "text/javascript";
  9062. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9063. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9064. const script3 = document.createElement("script");
  9065. script3.type = "text/javascript";
  9066. script3.charset = "UTF-8";
  9067. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9068. const script4 = document.createElement("script");
  9069. script4.type = "text/javascript";
  9070. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9071. script4.src = window.origin + "/js/Common/jietu2E.js";
  9072. if (_iframe) {
  9073. if (str == 'doc') {
  9074. _iframe = _formdiv.querySelector('iframe')
  9075. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9076. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9077. _iframe.contentWindow.document.body.appendChild(script1);
  9078. _iframe.contentWindow.document.body.appendChild(script2);
  9079. // _iframe.contentWindow.document.body.appendChild(script3);
  9080. _iframe.contentWindow.document.body.appendChild(script4);
  9081. })
  9082. if (onloadListener) {
  9083. _iframe.contentDocument.location.reload()
  9084. } else {
  9085. _iframe.contentDocument.location.reload()
  9086. }
  9087. } else if (str == 'courseDesign') {
  9088. U.UF.DL.iframeLoad(_iframe, function () {
  9089. // _iframe.contentWindow.U.MD.O.W.load();
  9090. // _iframe.contentWindow.document.body.appendChild(script1);
  9091. _iframe.contentWindow.document.body.appendChild(script2);
  9092. _iframe.contentWindow.document.body.appendChild(script4);
  9093. })
  9094. } else if (str == 'mind') {
  9095. _iframe = _formdiv.querySelector('iframe')
  9096. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9097. //
  9098. _iframe.contentWindow.document.body.appendChild(script1);
  9099. _iframe.contentWindow.document.body.appendChild(script2);
  9100. _iframe.contentWindow.document.body.appendChild(script4);
  9101. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9102. })
  9103. if (onloadListener) {
  9104. _iframe.contentDocument.location.reload()
  9105. } else {
  9106. _iframe.contentDocument.location.reload()
  9107. }
  9108. } else if (str == 'whiteboard') {
  9109. _iframe = _formdiv.querySelector('iframe')
  9110. let onloadListener = _iframe.onload = () => {
  9111. _iframe.contentWindow.document.body.appendChild(script1);
  9112. _iframe.contentWindow.document.body.appendChild(script2);
  9113. _iframe.contentWindow.document.body.appendChild(script4);
  9114. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9115. };
  9116. // if (onloadListener) {
  9117. // try {
  9118. // _iframe.src += "?cocorobo="+new Date().getTime()
  9119. // _iframe.contentWindow.document.location.reload()
  9120. // } catch (error) {
  9121. // }
  9122. // } else {
  9123. // _iframe.contentDocument.location.reload()
  9124. // }
  9125. } else {
  9126. _iframe.onload = () => {
  9127. _iframe.contentWindow.document.body.appendChild(script1);
  9128. _iframe.contentWindow.document.body.appendChild(script2);
  9129. // _iframe.contentWindow.document.body.appendChild(script3);
  9130. _iframe.contentWindow.document.body.appendChild(script4);
  9131. };
  9132. }
  9133. _jie.onclick = async () => {
  9134. let text = ''
  9135. if (aTool == 1) {
  9136. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9137. } else if (aTool == 6) {
  9138. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9139. } else if (aTool == 3) {
  9140. text = await U.MD.D.I.getEditorContent(_iframe);
  9141. }
  9142. _loading.style.display = 'flex'
  9143. console.log(_loading);
  9144. var _ajs = _iframe.contentWindow.document.createElement("script");
  9145. _ajs.type = "text/javascript";
  9146. _ajs.innerHTML =
  9147. // 'console.log(' + _loading + ');\n' +
  9148. 'var _js = document.createElement("script");\n' +
  9149. '_js.type="text/javascript";\n' +
  9150. '_js.charset="UTF-8";\n' +
  9151. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9152. "_js.onload = function(){\n" +
  9153. ' var a = document.getElementsByTagName("img")\n' +
  9154. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9155. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9156. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9157. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9158. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9159. "beforeUpload_shishi(file," +
  9160. "'" +
  9161. _userid +
  9162. "'" +
  9163. ", " +
  9164. "'" +
  9165. _cid +
  9166. "'" +
  9167. ", " +
  9168. "'" +
  9169. _stage +
  9170. "'" +
  9171. ", " +
  9172. "'" +
  9173. _task +
  9174. "'" +
  9175. ", " +
  9176. "'" +
  9177. _tool +
  9178. "'" +
  9179. ", " +
  9180. "'" +
  9181. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  9182. "'" +
  9183. ", " +
  9184. "'" +
  9185. aTool +
  9186. "'" +
  9187. ", " +
  9188. "`" +
  9189. text +
  9190. "`" +
  9191. ")\n" +
  9192. " });\n" +
  9193. "}\n" +
  9194. "document.head.appendChild(_js);\n";
  9195. _iframe.contentWindow.document.head.appendChild(_ajs);
  9196. }
  9197. }
  9198. }
  9199. U.MD.D.I.getEditorContent = function (iframe) {
  9200. return new Promise((resolve, reject) => {
  9201. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  9202. console.log(content);
  9203. resolve(content)
  9204. });
  9205. });
  9206. }
  9207. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  9208. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  9209. // if (res.value[0].length > 0) {
  9210. // // resolve(res.value[0][0].text);
  9211. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  9212. // $(fileInput).val('');
  9213. // });
  9214. // }
  9215. // }, [], { "type": "GET", "withCredentials": true });
  9216. var xmlhttp;
  9217. var Mac, Sn, DeviceId
  9218. if (window.XMLHttpRequest) {
  9219. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9220. xmlhttp = new XMLHttpRequest();
  9221. } else {
  9222. // IE6, IE5 浏览器执行代码
  9223. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9224. }
  9225. xmlhttp.onreadystatechange = function () {
  9226. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9227. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9228. // resolve(res.value[0][0].text);
  9229. if (type == '2') {
  9230. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9231. } else if (type == '3') {
  9232. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9233. }
  9234. } else {
  9235. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  9236. }
  9237. }
  9238. }
  9239. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9240. xmlhttp.send();
  9241. }
  9242. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  9243. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9244. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9245. _userinfo = US.userInfo, //登录用户信息
  9246. _userid = US.userInfo.userid //登录用户id
  9247. let _iframe;
  9248. let _cid = cid,
  9249. _stage = stage,
  9250. _task = task,
  9251. _tool = tool;
  9252. var _jie = $$("div", {
  9253. "style": {
  9254. "position": "absolute",
  9255. "bottom": "50px",
  9256. "right": "50px",
  9257. "zIndex": "9999",
  9258. "backgroundColor": "#2268bc",
  9259. "color": "#fff",
  9260. "padding": "12px 20px",
  9261. "cursor": "pointer",
  9262. "borderRadius": "4px",
  9263. },
  9264. "innerHTML": "确认并提交"
  9265. })
  9266. let aTool = ''
  9267. let _loading = document.createElement('div')
  9268. _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;"
  9269. // _loading.id = "";
  9270. let _lchild = document.createElement('div')
  9271. let _limg = document.createElement('img')
  9272. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9273. _limg.style = "width: 26px;margin-right: 10px;"
  9274. _lchild.appendChild(_limg)
  9275. let _lspan = document.createElement('span')
  9276. _lspan.innerHTML = "上传中..."
  9277. _lchild.appendChild(_lspan)
  9278. _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%);"
  9279. _loading.appendChild(_lchild)
  9280. var _box = $$('div', {
  9281. "style": {
  9282. "position": "relative",
  9283. "width": "100%",
  9284. "height": "100%",
  9285. },
  9286. })
  9287. _box.appendChild(_loading)
  9288. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  9289. switch (str) {
  9290. case "whiteboard":
  9291. aTool = 1;
  9292. _iframe = $$("iframe", {
  9293. "frameborder": "no",
  9294. "border": "0",
  9295. "scrolling ": "no",
  9296. "style": {
  9297. "cssText": "border:0;width:100%;height:100%"
  9298. },
  9299. "src": "https://beta.iwb.cocorobo.cn/"
  9300. })
  9301. _box.appendChild(_iframe);
  9302. _box.appendChild(_jie);
  9303. _formdiv = new U.UF.UI.form(
  9304. "电子白板",
  9305. _box, {
  9306. "id": "whiteboards" + cid + stage + task + tool,
  9307. "style": {
  9308. "width": "90%",
  9309. "height": "90%",
  9310. "overflow": 'hidden'
  9311. },
  9312. "onresize": function () { }
  9313. }, {
  9314. closecallback: function () { }
  9315. }, {
  9316. "style": {
  9317. "height": "36px"
  9318. }
  9319. }).form; //创建窗体
  9320. _taskbar = {
  9321. "id": str + _formdiv.id,
  9322. "style": {
  9323. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9324. },
  9325. "name": "电子白板",
  9326. "forms": _formdiv,
  9327. "click": function () {
  9328. U.MD.D.I.openApplication(str, obj, info);
  9329. }
  9330. }
  9331. break;
  9332. case "mind":
  9333. aTool = 3;
  9334. _iframe = $$("iframe", {
  9335. "frameborder": "no",
  9336. "border": "0",
  9337. "scrolling ": "no",
  9338. "style": {
  9339. "cssText": "border:0;width:100%;height:100%"
  9340. },
  9341. "src": "/kityminder-editor/dist/index.html"
  9342. });
  9343. _box.appendChild(_iframe);
  9344. _box.appendChild(_jie);
  9345. _formdiv = new U.UF.UI.form(
  9346. "思维导图",
  9347. _box, { //"/jsmind/example/demo.html"
  9348. "id": "minds" + cid + stage + task + tool,
  9349. "style": {
  9350. "width": "90%",
  9351. "height": "90%",
  9352. "overflow": 'hidden'
  9353. },
  9354. "onresize": function () { }
  9355. }, {
  9356. closecallback: function () { }
  9357. }, {
  9358. "style": {
  9359. "height": "36px"
  9360. }
  9361. }).form; //创建窗体
  9362. _taskbar = {
  9363. "id": str + _formdiv.id,
  9364. "style": {
  9365. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9366. },
  9367. "name": "思维导图",
  9368. "forms": _formdiv,
  9369. "click": function () {
  9370. U.MD.D.I.openApplication(str, obj, info);
  9371. }
  9372. }
  9373. break;
  9374. case "doc":
  9375. aTool = 6;
  9376. _iframe = $$("iframe", {
  9377. "frameborder": "no",
  9378. "border": "0",
  9379. "scrolling ": "no",
  9380. "style": {
  9381. "cssText": "border:0;width:100%;height:100%"
  9382. },
  9383. "src": "/Office/Word/WordEditArea.htm"
  9384. })
  9385. _box.appendChild(_iframe);
  9386. _box.appendChild(_jie);
  9387. _formdiv = new U.UF.UI.form(
  9388. "协同文档",
  9389. _box, {
  9390. "id": "docs" + cid + stage + task + tool,
  9391. "style": {
  9392. "width": "90%",
  9393. "height": "90%",
  9394. "overflow": 'hidden'
  9395. },
  9396. "onresize": function () { }
  9397. }, {
  9398. closecallback: function () { }
  9399. }, {
  9400. "style": {
  9401. "height": "36px"
  9402. }
  9403. }).form; //创建窗体
  9404. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9405. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9406. })
  9407. _taskbar = {
  9408. "id": str + _formdiv.id,
  9409. "style": {
  9410. "backgroundImage": "url(/img/icon/doc.png)"
  9411. },
  9412. "name": "协同文档",
  9413. "forms": _formdiv,
  9414. "click": function () {
  9415. U.MD.D.I.openApplication(str, obj, info);
  9416. }
  9417. }
  9418. break;
  9419. }
  9420. const script1 = document.createElement("script");
  9421. script1.type = "text/javascript";
  9422. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9423. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9424. const script2 = document.createElement("script");
  9425. script2.type = "text/javascript";
  9426. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9427. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9428. const script3 = document.createElement("script");
  9429. script3.type = "text/javascript";
  9430. script3.charset = "UTF-8";
  9431. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9432. const script4 = document.createElement("script");
  9433. script4.type = "text/javascript";
  9434. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9435. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9436. if (_iframe) {
  9437. if (str == 'doc') {
  9438. _iframe = _formdiv.querySelector('iframe')
  9439. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9440. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9441. _iframe.contentWindow.document.body.appendChild(script1);
  9442. _iframe.contentWindow.document.body.appendChild(script2);
  9443. // _iframe.contentWindow.document.body.appendChild(script3);
  9444. _iframe.contentWindow.document.body.appendChild(script4);
  9445. })
  9446. if (onloadListener) {
  9447. _iframe.contentDocument.location.reload()
  9448. } else {
  9449. _iframe.contentDocument.location.reload()
  9450. }
  9451. } else if (str == 'mind') {
  9452. _iframe = _formdiv.querySelector('iframe')
  9453. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9454. _iframe.contentWindow.document.body.appendChild(script1);
  9455. _iframe.contentWindow.document.body.appendChild(script2);
  9456. _iframe.contentWindow.document.body.appendChild(script4);
  9457. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9458. })
  9459. if (onloadListener) {
  9460. _iframe.contentDocument.location.reload()
  9461. } else {
  9462. _iframe.contentDocument.location.reload()
  9463. }
  9464. } else {
  9465. _iframe.onload = () => {
  9466. _iframe.contentWindow.document.body.appendChild(script1);
  9467. _iframe.contentWindow.document.body.appendChild(script2);
  9468. // _iframe.contentWindow.document.body.appendChild(script3);
  9469. _iframe.contentWindow.document.body.appendChild(script4);
  9470. };
  9471. }
  9472. _jie.onclick = async () => {
  9473. let text = ''
  9474. if (aTool == 6) {
  9475. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9476. } else if (aTool == 3) {
  9477. text = await U.MD.D.I.getEditorContent(_iframe);
  9478. }
  9479. _loading.style.display = 'flex'
  9480. console.log(_loading);
  9481. var _ajs = _iframe.contentWindow.document.createElement("script");
  9482. _ajs.type = "text/javascript";
  9483. _ajs.innerHTML =
  9484. // 'console.log(' + _loading + ');\n' +
  9485. 'var _js = document.createElement("script");\n' +
  9486. '_js.type="text/javascript";\n' +
  9487. '_js.charset="UTF-8";\n' +
  9488. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9489. "_js.onload = function(){\n" +
  9490. ' var a = document.getElementsByTagName("img")\n' +
  9491. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9492. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9493. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9494. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9495. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9496. "beforeUpload_shishi(file," +
  9497. "'" +
  9498. _userid +
  9499. "'" +
  9500. ", " +
  9501. "'" +
  9502. _cid +
  9503. "'" +
  9504. ", " +
  9505. "'" +
  9506. _stage +
  9507. "'" +
  9508. ", " +
  9509. "'" +
  9510. _task +
  9511. "'" +
  9512. ", " +
  9513. "'" +
  9514. _tool +
  9515. "'" +
  9516. ", " +
  9517. "'" +
  9518. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9519. "'" +
  9520. ", " +
  9521. "'" +
  9522. aTool +
  9523. "'" +
  9524. ", " +
  9525. "`" +
  9526. text +
  9527. "`" +
  9528. ")\n" +
  9529. " });\n" +
  9530. "}\n" +
  9531. "document.head.appendChild(_js);\n";
  9532. _iframe.contentWindow.document.head.appendChild(_ajs);
  9533. }
  9534. }
  9535. //U.MD.D.I.openClick(str);
  9536. //如果有任务栏信息
  9537. // if (_taskbar) {
  9538. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9539. // }
  9540. }
  9541. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9542. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9543. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9544. _userinfo = US.userInfo, //登录用户信息
  9545. _userid = US.userInfo.userid //登录用户id
  9546. let _iframe;
  9547. let _cid = cid,
  9548. _stage = stage,
  9549. _task = task,
  9550. _tool = tool;
  9551. var _jie = $$("div", {
  9552. "style": {
  9553. "position": "absolute",
  9554. "bottom": "50px",
  9555. "right": "50px",
  9556. "zIndex": "9999",
  9557. "backgroundColor": "#2268bc",
  9558. "color": "#fff",
  9559. "padding": "12px 20px",
  9560. "cursor": "pointer",
  9561. "borderRadius": "4px",
  9562. },
  9563. "innerHTML": "确认并提交"
  9564. })
  9565. let aTool = ''
  9566. let _loading = document.createElement('div')
  9567. _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;"
  9568. // _loading.id = "";
  9569. let _lchild = document.createElement('div')
  9570. let _limg = document.createElement('img')
  9571. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9572. _limg.style = "width: 26px;margin-right: 10px;"
  9573. _lchild.appendChild(_limg)
  9574. let _lspan = document.createElement('span')
  9575. _lspan.innerHTML = "上传中..."
  9576. _lchild.appendChild(_lspan)
  9577. _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%);"
  9578. _loading.appendChild(_lchild)
  9579. var _box = $$('div', {
  9580. "style": {
  9581. "position": "relative",
  9582. "width": "100%",
  9583. "height": "100%",
  9584. },
  9585. })
  9586. _box.appendChild(_loading)
  9587. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9588. switch (str) {
  9589. case "whiteboard":
  9590. aTool = 1;
  9591. _iframe = $$("iframe", {
  9592. "frameborder": "no",
  9593. "border": "0",
  9594. "scrolling ": "no",
  9595. "style": {
  9596. "cssText": "border:0;width:100%;height:100%"
  9597. },
  9598. "src": "https://beta.iwb.cocorobo.cn/"
  9599. })
  9600. _box.appendChild(_iframe);
  9601. _box.appendChild(_jie);
  9602. _formdiv = new U.UF.UI.form(
  9603. "电子白板",
  9604. _box, {
  9605. "id": "whiteboards" + cid + stage + task + tool,
  9606. "style": {
  9607. "width": "90%",
  9608. "height": "90%",
  9609. "overflow": 'hidden'
  9610. },
  9611. "onresize": function () { }
  9612. }, {
  9613. closecallback: function () { }
  9614. }, {
  9615. "style": {
  9616. "height": "36px"
  9617. }
  9618. }).form; //创建窗体
  9619. _taskbar = {
  9620. "id": str + _formdiv.id,
  9621. "style": {
  9622. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9623. },
  9624. "name": "电子白板",
  9625. "forms": _formdiv,
  9626. "click": function () {
  9627. U.MD.D.I.openApplication(str, obj, info);
  9628. }
  9629. }
  9630. break;
  9631. case "mind":
  9632. aTool = 3;
  9633. _iframe = $$("iframe", {
  9634. "frameborder": "no",
  9635. "border": "0",
  9636. "scrolling ": "no",
  9637. "style": {
  9638. "cssText": "border:0;width:100%;height:100%"
  9639. },
  9640. "src": "/kityminder-editor/dist/index.html"
  9641. });
  9642. _box.appendChild(_iframe);
  9643. _box.appendChild(_jie);
  9644. _formdiv = new U.UF.UI.form(
  9645. "思维导图",
  9646. _box, { //"/jsmind/example/demo.html"
  9647. "id": "minds" + cid + stage + task + tool,
  9648. "style": {
  9649. "width": "90%",
  9650. "height": "90%",
  9651. "overflow": 'hidden'
  9652. },
  9653. "onresize": function () { }
  9654. }, {
  9655. closecallback: function () { }
  9656. }, {
  9657. "style": {
  9658. "height": "36px"
  9659. }
  9660. }).form; //创建窗体
  9661. _taskbar = {
  9662. "id": str + _formdiv.id,
  9663. "style": {
  9664. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9665. },
  9666. "name": "思维导图",
  9667. "forms": _formdiv,
  9668. "click": function () {
  9669. U.MD.D.I.openApplication(str, obj, info);
  9670. }
  9671. }
  9672. break;
  9673. case "doc":
  9674. aTool = 6;
  9675. _iframe = $$("iframe", {
  9676. "frameborder": "no",
  9677. "border": "0",
  9678. "scrolling ": "no",
  9679. "style": {
  9680. "cssText": "border:0;width:100%;height:100%"
  9681. },
  9682. "src": "/Office/Word/WordEditArea.htm"
  9683. })
  9684. _box.appendChild(_iframe);
  9685. _box.appendChild(_jie);
  9686. _formdiv = new U.UF.UI.form(
  9687. "协同文档",
  9688. _box, {
  9689. "id": "docs" + cid + stage + task + tool,
  9690. "style": {
  9691. "width": "90%",
  9692. "height": "90%",
  9693. "overflow": 'hidden'
  9694. },
  9695. "onresize": function () { }
  9696. }, {
  9697. closecallback: function () { }
  9698. }, {
  9699. "style": {
  9700. "height": "36px"
  9701. }
  9702. }).form; //创建窗体
  9703. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9704. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9705. })
  9706. _taskbar = {
  9707. "id": str + _formdiv.id,
  9708. "style": {
  9709. "backgroundImage": "url(/img/icon/doc.png)"
  9710. },
  9711. "name": "协同文档",
  9712. "forms": _formdiv,
  9713. "click": function () {
  9714. U.MD.D.I.openApplication(str, obj, info);
  9715. }
  9716. }
  9717. break;
  9718. }
  9719. const script1 = document.createElement("script");
  9720. script1.type = "text/javascript";
  9721. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9722. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9723. const script2 = document.createElement("script");
  9724. script2.type = "text/javascript";
  9725. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9726. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9727. const script3 = document.createElement("script");
  9728. script3.type = "text/javascript";
  9729. script3.charset = "UTF-8";
  9730. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9731. const script4 = document.createElement("script");
  9732. script4.type = "text/javascript";
  9733. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9734. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9735. if (_iframe) {
  9736. if (str == 'doc') {
  9737. _iframe = _formdiv.querySelector('iframe')
  9738. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9739. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9740. _iframe.contentWindow.document.body.appendChild(script1);
  9741. _iframe.contentWindow.document.body.appendChild(script2);
  9742. // _iframe.contentWindow.document.body.appendChild(script3);
  9743. _iframe.contentWindow.document.body.appendChild(script4);
  9744. })
  9745. if (onloadListener) {
  9746. _iframe.contentDocument.location.reload()
  9747. } else {
  9748. _iframe.contentDocument.location.reload()
  9749. }
  9750. } else if (str == 'mind') {
  9751. _iframe = _formdiv.querySelector('iframe')
  9752. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9753. _iframe.contentWindow.document.body.appendChild(script1);
  9754. _iframe.contentWindow.document.body.appendChild(script2);
  9755. _iframe.contentWindow.document.body.appendChild(script4);
  9756. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9757. })
  9758. if (onloadListener) {
  9759. _iframe.contentDocument.location.reload()
  9760. } else {
  9761. _iframe.contentDocument.location.reload()
  9762. }
  9763. } else {
  9764. _iframe.onload = () => {
  9765. _iframe.contentWindow.document.body.appendChild(script1);
  9766. _iframe.contentWindow.document.body.appendChild(script2);
  9767. // _iframe.contentWindow.document.body.appendChild(script3);
  9768. _iframe.contentWindow.document.body.appendChild(script4);
  9769. };
  9770. }
  9771. _jie.onclick = async () => {
  9772. let text = ''
  9773. if (aTool == 6) {
  9774. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9775. } else if (aTool == 3) {
  9776. text = await U.MD.D.I.getEditorContent(_iframe);
  9777. }
  9778. _loading.style.display = 'flex'
  9779. console.log(_loading);
  9780. var _ajs = _iframe.contentWindow.document.createElement("script");
  9781. _ajs.type = "text/javascript";
  9782. _ajs.innerHTML =
  9783. // 'console.log(' + _loading + ');\n' +
  9784. 'var _js = document.createElement("script");\n' +
  9785. '_js.type="text/javascript";\n' +
  9786. '_js.charset="UTF-8";\n' +
  9787. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9788. "_js.onload = function(){\n" +
  9789. ' var a = document.getElementsByTagName("img")\n' +
  9790. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9791. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9792. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9793. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9794. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9795. "beforeUpload_shishi(file," +
  9796. "'" +
  9797. _userid +
  9798. "'" +
  9799. ", " +
  9800. "'" +
  9801. _cid +
  9802. "'" +
  9803. ", " +
  9804. "'" +
  9805. _stage +
  9806. "'" +
  9807. ", " +
  9808. "'" +
  9809. _task +
  9810. "'" +
  9811. ", " +
  9812. "'" +
  9813. _tool +
  9814. "'" +
  9815. ", " +
  9816. "'" +
  9817. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9818. "'" +
  9819. ", " +
  9820. "'" +
  9821. aTool +
  9822. "'" +
  9823. ", " +
  9824. "`" +
  9825. text +
  9826. "`" +
  9827. ")\n" +
  9828. " });\n" +
  9829. "}\n" +
  9830. "document.head.appendChild(_js);\n";
  9831. _iframe.contentWindow.document.head.appendChild(_ajs);
  9832. }
  9833. }
  9834. //U.MD.D.I.openClick(str);
  9835. //如果有任务栏信息
  9836. // if (_taskbar) {
  9837. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9838. // }
  9839. }
  9840. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9841. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9842. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9843. _userinfo = US.userInfo, //登录用户信息
  9844. _userid = US.userInfo.userid //登录用户id
  9845. let _iframe;
  9846. let _cid = cid,
  9847. _stage = stage,
  9848. _task = task,
  9849. _tool = tool;
  9850. var _jie = $$("div", {
  9851. "style": {
  9852. "position": "absolute",
  9853. "bottom": "50px",
  9854. "right": "50px",
  9855. "zIndex": "9999",
  9856. "backgroundColor": "#2268bc",
  9857. "color": "#fff",
  9858. "padding": "12px 20px",
  9859. "cursor": "pointer",
  9860. "borderRadius": "4px",
  9861. },
  9862. "innerHTML": "上传模板"
  9863. })
  9864. let aTool = ''
  9865. let _loading = document.createElement('div')
  9866. _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;"
  9867. // _loading.id = "";
  9868. let _lchild = document.createElement('div')
  9869. let _limg = document.createElement('img')
  9870. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9871. _limg.style = "width: 26px;margin-right: 10px;"
  9872. _lchild.appendChild(_limg)
  9873. let _lspan = document.createElement('span')
  9874. _lspan.innerHTML = "上传中..."
  9875. _lchild.appendChild(_lspan)
  9876. _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%);"
  9877. _loading.appendChild(_lchild)
  9878. var _box = $$('div', {
  9879. "style": {
  9880. "position": "relative",
  9881. "width": "100%",
  9882. "height": "100%",
  9883. },
  9884. })
  9885. _box.appendChild(_loading)
  9886. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9887. switch (str) {
  9888. case "whiteboard":
  9889. aTool = 1;
  9890. _iframe = $$("iframe", {
  9891. "frameborder": "no",
  9892. "border": "0",
  9893. "scrolling ": "no",
  9894. "style": {
  9895. "cssText": "border:0;width:100%;height:100%"
  9896. },
  9897. "src": "https://beta.iwb.cocorobo.cn/"
  9898. })
  9899. _box.appendChild(_iframe);
  9900. _box.appendChild(_jie);
  9901. _formdiv = new U.UF.UI.form(
  9902. "电子白板",
  9903. _box, {
  9904. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9905. "style": {
  9906. "width": "90%",
  9907. "height": "90%",
  9908. "overflow": 'hidden'
  9909. },
  9910. "onresize": function () { }
  9911. }, {
  9912. closecallback: function () { }
  9913. }, {
  9914. "style": {
  9915. "height": "36px"
  9916. }
  9917. }).form; //创建窗体
  9918. _taskbar = {
  9919. "id": str + _formdiv.id,
  9920. "style": {
  9921. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9922. },
  9923. "name": "电子白板",
  9924. "forms": _formdiv,
  9925. "click": function () {
  9926. U.MD.D.I.openApplication(str, obj, info);
  9927. }
  9928. }
  9929. break;
  9930. case "mind":
  9931. aTool = 3;
  9932. _iframe = $$("iframe", {
  9933. "frameborder": "no",
  9934. "border": "0",
  9935. "scrolling ": "no",
  9936. "style": {
  9937. "cssText": "border:0;width:100%;height:100%"
  9938. },
  9939. "src": "/kityminder-editor/dist/index.html"
  9940. });
  9941. _box.appendChild(_iframe);
  9942. _box.appendChild(_jie);
  9943. _formdiv = new U.UF.UI.form(
  9944. "思维导图",
  9945. _box, { //"/jsmind/example/demo.html"
  9946. "id": "minds_Yu" + cid + stage + task + tool,
  9947. "style": {
  9948. "width": "90%",
  9949. "height": "90%",
  9950. "overflow": 'hidden'
  9951. },
  9952. "onresize": function () { }
  9953. }, {
  9954. closecallback: function () { }
  9955. }, {
  9956. "style": {
  9957. "height": "36px"
  9958. }
  9959. }).form; //创建窗体
  9960. _taskbar = {
  9961. "id": str + _formdiv.id,
  9962. "style": {
  9963. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9964. },
  9965. "name": "思维导图",
  9966. "forms": _formdiv,
  9967. "click": function () {
  9968. U.MD.D.I.openApplication(str, obj, info);
  9969. }
  9970. }
  9971. break;
  9972. case "doc":
  9973. aTool = 6;
  9974. _iframe = $$("iframe", {
  9975. "frameborder": "no",
  9976. "border": "0",
  9977. "scrolling ": "no",
  9978. "style": {
  9979. "cssText": "border:0;width:100%;height:100%"
  9980. },
  9981. "src": "/Office/Word/WordEditArea.htm"
  9982. })
  9983. _box.appendChild(_iframe);
  9984. _box.appendChild(_jie);
  9985. _formdiv = new U.UF.UI.form(
  9986. "协同文档",
  9987. _box, {
  9988. "id": "docs_Yu" + cid + stage + task + tool,
  9989. "style": {
  9990. "width": "90%",
  9991. "height": "90%",
  9992. "overflow": 'hidden'
  9993. },
  9994. "onresize": function () { }
  9995. }, {
  9996. closecallback: function () { }
  9997. }, {
  9998. "style": {
  9999. "height": "36px"
  10000. }
  10001. }).form; //创建窗体
  10002. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10003. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10004. })
  10005. _taskbar = {
  10006. "id": str + _formdiv.id,
  10007. "style": {
  10008. "backgroundImage": "url(/img/icon/doc.png)"
  10009. },
  10010. "name": "协同文档",
  10011. "forms": _formdiv,
  10012. "click": function () {
  10013. U.MD.D.I.openApplication(str, obj, info);
  10014. }
  10015. }
  10016. break;
  10017. case "CocoPi":
  10018. aTool = 57;
  10019. _iframe = $$("iframe", {
  10020. "allowpaymentrequest": "allowpaymentrequest",
  10021. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10022. "webkitallowfullscreen": "",
  10023. "mozallowfullscreen": "",
  10024. "frameborder": "no",
  10025. "border": "0",
  10026. "scrolling ": "no",
  10027. "style": {
  10028. "cssText": "border:0;width:100%;height:100%"
  10029. },
  10030. "src": "https://pi.cocorobo.cn/"
  10031. })
  10032. _box.appendChild(_iframe);
  10033. _box.appendChild(_jie);
  10034. _formdiv = new U.UF.UI.form(
  10035. "CocoPi",
  10036. _box, {
  10037. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10038. "style": {
  10039. "width": "90%",
  10040. "height": "90%",
  10041. "overflow": 'hidden'
  10042. },
  10043. "onresize": function () { }
  10044. }, {
  10045. closecallback: function () { }
  10046. }, {
  10047. "style": {
  10048. "height": "36px"
  10049. }
  10050. }).form; //创建窗体
  10051. _taskbar = {
  10052. "id": str + _formdiv.id,
  10053. "style": {
  10054. "backgroundImage": "url(/img/icon/cocopi.png)"
  10055. },
  10056. "name": "CocoPi",
  10057. "forms": _formdiv,
  10058. "click": function () {
  10059. U.MD.D.I.openApplication(str, obj, info);
  10060. }
  10061. }
  10062. break;
  10063. }
  10064. if (_iframe) {
  10065. if (str == 'doc') {
  10066. _iframe = _formdiv.querySelector('iframe')
  10067. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10068. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10069. })
  10070. if (onloadListener) {
  10071. _iframe.contentDocument.location.reload()
  10072. } else {
  10073. _iframe.contentDocument.location.reload()
  10074. }
  10075. } else if (str == 'mind') {
  10076. _iframe = _formdiv.querySelector('iframe')
  10077. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10078. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10079. })
  10080. if (onloadListener) {
  10081. _iframe.contentDocument.location.reload()
  10082. } else {
  10083. _iframe.contentDocument.location.reload()
  10084. }
  10085. } else if (str == 'whiteboard') {
  10086. _iframe = _formdiv.querySelector('iframe')
  10087. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10088. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  10089. })
  10090. // if (onloadListener) {
  10091. // try {
  10092. // _iframe.src += "?cocorobo="+new Date().getTime()
  10093. // _iframe.contentWindow.document.location.reload()
  10094. // } catch (error) {
  10095. // }
  10096. // } else {
  10097. // _iframe.contentDocument.location.reload()
  10098. // }
  10099. } else if (str == 'CocoPi') {
  10100. _iframe = _formdiv.querySelector('iframe')
  10101. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10102. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  10103. })
  10104. if (onloadListener) {
  10105. _iframe.contentDocument.location.reload()
  10106. } else {
  10107. _iframe.contentDocument.location.reload()
  10108. }
  10109. } else {
  10110. _iframe.onload = () => { };
  10111. }
  10112. _jie.onclick = async () => {
  10113. let text = ''
  10114. let type = '2'
  10115. if (aTool == 1) {
  10116. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10117. type = '3'
  10118. } else if (aTool == 6) {
  10119. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10120. type = '1'
  10121. } else if (aTool == 3) {
  10122. text = await U.MD.D.I.getEditorContent(_iframe);
  10123. type = '2'
  10124. } else if (aTool == 57) {
  10125. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  10126. type = '4'
  10127. }
  10128. _loading.style.display = 'flex'
  10129. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  10130. }
  10131. }
  10132. //U.MD.D.I.openClick(str);
  10133. //如果有任务栏信息
  10134. // if (_taskbar) {
  10135. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10136. // }
  10137. }
  10138. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  10139. var xmlhttp;
  10140. var Mac, Sn, DeviceId
  10141. if (window.XMLHttpRequest) {
  10142. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10143. xmlhttp = new XMLHttpRequest();
  10144. } else {
  10145. // IE6, IE5 浏览器执行代码
  10146. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10147. }
  10148. xmlhttp.onreadystatechange = function () {
  10149. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10150. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10151. // resolve(res.value[0][0].text);
  10152. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10153. }
  10154. }
  10155. }
  10156. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10157. xmlhttp.send();
  10158. }
  10159. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  10160. var xmlhttp;
  10161. var Mac, Sn, DeviceId
  10162. if (window.XMLHttpRequest) {
  10163. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10164. xmlhttp = new XMLHttpRequest();
  10165. } else {
  10166. // IE6, IE5 浏览器执行代码
  10167. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10168. }
  10169. xmlhttp.onreadystatechange = function () {
  10170. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10171. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10172. // resolve(res.value[0][0].text);
  10173. if (type == '2') {
  10174. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10175. } else if (type == '3') {
  10176. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10177. } else if (type == '4') {
  10178. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  10179. }
  10180. } else {
  10181. if (type == '2') {
  10182. iframe.contentWindow.editor.minder.importData('json', '')
  10183. } else if (type == '3') {
  10184. iframe.contentWindow.h.app.updateScene({ elements: [] })
  10185. } else if (type == '4') {
  10186. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10187. }
  10188. }
  10189. }
  10190. }
  10191. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10192. xmlhttp.send();
  10193. }
  10194. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  10195. var xmlhttp;
  10196. var Mac, Sn, DeviceId
  10197. if (window.XMLHttpRequest) {
  10198. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10199. xmlhttp = new XMLHttpRequest();
  10200. } else {
  10201. // IE6, IE5 浏览器执行代码
  10202. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10203. }
  10204. xmlhttp.onreadystatechange = function () {
  10205. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10206. if (xmlhttp.response) {
  10207. // resolve(res.value[0][0].text);
  10208. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  10209. // $(fileInput).val('');
  10210. // });
  10211. span.innerHTML = '上传成功'
  10212. setTimeout(() => {
  10213. loading.style.display = 'none'
  10214. }, 1000);
  10215. }
  10216. }
  10217. }
  10218. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  10219. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  10220. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  10221. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  10222. // 设置请求头,表示请求体的编码格式
  10223. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  10224. // 设置请求体,使用url-encoded格式的数据
  10225. }
  10226. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  10227. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10228. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10229. _userinfo = US.userInfo, //登录用户信息
  10230. _userid = US.userInfo.userid //登录用户id
  10231. let _iframe;
  10232. let _cid = cid,
  10233. _stage = stage,
  10234. _task = task,
  10235. _tool = tool;
  10236. var _jie = $$("div", {
  10237. "style": {
  10238. "position": "absolute",
  10239. "bottom": "50px",
  10240. "right": "50px",
  10241. "zIndex": "9999",
  10242. "backgroundColor": "#2268bc",
  10243. "color": "#fff",
  10244. "padding": "12px 20px",
  10245. "cursor": "pointer",
  10246. "borderRadius": "4px",
  10247. },
  10248. "innerHTML": "提交作业"
  10249. })
  10250. let aTool = ''
  10251. let _loading = document.createElement('div')
  10252. _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;"
  10253. // _loading.id = "";
  10254. let _lchild = document.createElement('div')
  10255. let _limg = document.createElement('img')
  10256. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10257. _limg.style = "width: 26px;margin-right: 10px;"
  10258. _lchild.appendChild(_limg)
  10259. let _lspan = document.createElement('span')
  10260. _lspan.innerHTML = "上传中..."
  10261. _lchild.appendChild(_lspan)
  10262. _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%);"
  10263. _loading.appendChild(_lchild)
  10264. var _box = $$('div', {
  10265. "style": {
  10266. "position": "relative",
  10267. "width": "100%",
  10268. "height": "100%",
  10269. },
  10270. })
  10271. _box.appendChild(_loading)
  10272. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  10273. switch (str) {
  10274. case "CocoPi":
  10275. aTool = 57;
  10276. _iframe = $$("iframe", {
  10277. "allowpaymentrequest": "allowpaymentrequest",
  10278. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10279. "webkitallowfullscreen": "",
  10280. "mozallowfullscreen": "",
  10281. "frameborder": "no",
  10282. "border": "0",
  10283. "scrolling ": "no",
  10284. "style": {
  10285. "cssText": "border:0;width:100%;height:100%"
  10286. },
  10287. "src": "https://pi.cocorobo.cn/"
  10288. })
  10289. _box.appendChild(_iframe);
  10290. _box.appendChild(_jie);
  10291. _formdiv = new U.UF.UI.form(
  10292. "CocoPi",
  10293. _box, {
  10294. "id": "CocoPi_Upload" + cid + stage + task + tool,
  10295. "style": {
  10296. "width": "90%",
  10297. "height": "90%",
  10298. "overflow": 'hidden'
  10299. },
  10300. "onresize": function () { }
  10301. }, {
  10302. closecallback: function () { }
  10303. }, {
  10304. "style": {
  10305. "height": "36px"
  10306. }
  10307. }).form; //创建窗体
  10308. _taskbar = {
  10309. "id": str + _formdiv.id,
  10310. "style": {
  10311. "backgroundImage": "url(/img/icon/cocopi.png)"
  10312. },
  10313. "name": "CocoPi",
  10314. "forms": _formdiv,
  10315. "click": function () {
  10316. U.MD.D.I.openApplication(str, obj, info);
  10317. }
  10318. }
  10319. break;
  10320. }
  10321. if (_iframe) {
  10322. if (str == 'CocoPi') {
  10323. _iframe = _formdiv.querySelector('iframe')
  10324. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10325. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10326. })
  10327. if (onloadListener) {
  10328. _iframe.contentDocument.location.reload()
  10329. } else {
  10330. _iframe.contentDocument.location.reload()
  10331. }
  10332. }
  10333. _jie.onclick = async () => {
  10334. let text = ''
  10335. if (aTool == 57) {
  10336. text = _iframe.contentWindow.getLoadXmlStr()
  10337. }
  10338. _loading.style.display = 'flex'
  10339. console.log(_loading);
  10340. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10341. _loading.style.display = 'none'
  10342. let _div = document.createElement('div')
  10343. _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;"
  10344. let _inner = document.createElement('div')
  10345. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10346. _inner.innerHTML = "上传成功"
  10347. _div.appendChild(_inner)
  10348. _iframe.contentWindow.window.document.body.appendChild(_div)
  10349. _div.onclick = () => {
  10350. _iframe.contentWindow.window.document.body.removeChild(_div)
  10351. }
  10352. setTimeout(() => {
  10353. _iframe.contentWindow.window.document.body.removeChild(_div)
  10354. }, 1000);
  10355. }, [], { "type": "POST", "withCredentials": true });
  10356. }
  10357. }
  10358. }
  10359. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10360. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10361. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10362. _userid = student.userid, //登录用户id
  10363. _username = student.student //用户名字
  10364. let _iframe;
  10365. let _cid = cid,
  10366. _stage = stage,
  10367. _task = task,
  10368. _tool = tool;
  10369. var _jie = $$("div", {
  10370. "style": {
  10371. "position": "absolute",
  10372. "bottom": "50px",
  10373. "right": "50px",
  10374. "zIndex": "9999",
  10375. "backgroundColor": "#2268bc",
  10376. "color": "#fff",
  10377. "padding": "12px 20px",
  10378. "cursor": "pointer",
  10379. "borderRadius": "4px",
  10380. },
  10381. "innerHTML": "提交作业"
  10382. })
  10383. let aTool = ''
  10384. let _loading = document.createElement('div')
  10385. _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;"
  10386. // _loading.id = "";
  10387. let _lchild = document.createElement('div')
  10388. let _limg = document.createElement('img')
  10389. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10390. _limg.style = "width: 26px;margin-right: 10px;"
  10391. _lchild.appendChild(_limg)
  10392. let _lspan = document.createElement('span')
  10393. _lspan.innerHTML = "上传中..."
  10394. _lchild.appendChild(_lspan)
  10395. _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%);"
  10396. _loading.appendChild(_lchild)
  10397. var _box = $$('div', {
  10398. "style": {
  10399. "position": "relative",
  10400. "width": "100%",
  10401. "height": "100%",
  10402. },
  10403. })
  10404. _box.appendChild(_loading)
  10405. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10406. switch (str) {
  10407. case "CocoPi":
  10408. aTool = 57;
  10409. _iframe = $$("iframe", {
  10410. "allowpaymentrequest": "allowpaymentrequest",
  10411. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10412. "webkitallowfullscreen": "",
  10413. "mozallowfullscreen": "",
  10414. "frameborder": "no",
  10415. "border": "0",
  10416. "scrolling ": "no",
  10417. "style": {
  10418. "cssText": "border:0;width:100%;height:100%"
  10419. },
  10420. "src": "https://pi.cocorobo.cn/"
  10421. })
  10422. _box.appendChild(_iframe);
  10423. _box.appendChild(_jie);
  10424. _formdiv = new U.UF.UI.form(
  10425. "CocoPi-" + _username,
  10426. _box, {
  10427. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10428. "style": {
  10429. "width": "90%",
  10430. "height": "90%",
  10431. "overflow": 'hidden'
  10432. },
  10433. "onresize": function () { }
  10434. }, {
  10435. closecallback: function () { }
  10436. }, {
  10437. "style": {
  10438. "height": "36px"
  10439. }
  10440. }).form; //创建窗体
  10441. _taskbar = {
  10442. "id": str + _formdiv.id,
  10443. "style": {
  10444. "backgroundImage": "url(/img/icon/cocopi.png)"
  10445. },
  10446. "name": "CocoPi",
  10447. "forms": _formdiv,
  10448. "click": function () {
  10449. U.MD.D.I.openApplication(str, obj, info);
  10450. }
  10451. }
  10452. break;
  10453. }
  10454. if (_iframe) {
  10455. if (str == 'CocoPi') {
  10456. _iframe = _formdiv.querySelector('iframe')
  10457. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10458. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10459. })
  10460. if (onloadListener) {
  10461. _iframe.contentDocument.location.reload()
  10462. } else {
  10463. _iframe.contentDocument.location.reload()
  10464. }
  10465. }
  10466. _jie.onclick = async () => {
  10467. let text = ''
  10468. if (aTool == 57) {
  10469. text = _iframe.contentWindow.getLoadXmlStr()
  10470. }
  10471. _loading.style.display = 'flex'
  10472. console.log(_loading);
  10473. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10474. _loading.style.display = 'none'
  10475. let _div = document.createElement('div')
  10476. _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;"
  10477. let _inner = document.createElement('div')
  10478. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10479. _inner.innerHTML = "上传成功"
  10480. _div.appendChild(_inner)
  10481. _iframe.contentWindow.window.document.body.appendChild(_div)
  10482. _div.onclick = () => {
  10483. _iframe.contentWindow.window.document.body.removeChild(_div)
  10484. }
  10485. setTimeout(() => {
  10486. _iframe.contentWindow.window.document.body.removeChild(_div)
  10487. }, 1000);
  10488. }, [], { "type": "POST", "withCredentials": true });
  10489. }
  10490. }
  10491. }
  10492. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10493. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10494. if (res.value[0].length > 0) {
  10495. if (atool == 57) {
  10496. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10497. }
  10498. } else {
  10499. if (atool == 57) {
  10500. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10501. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10502. }
  10503. }
  10504. }, [], { "type": "POST", "withCredentials": true });
  10505. }