DeskTop.js 762 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952
  1. /*
  2. 此处为桌面系统启动应用区域
  3. */
  4. Namespace.register("U.MD.D.I"); //桌面应用处理
  5. //判断图片是否在拖拽,如果是拖拽图标的过程是不会打开图片的
  6. U.MD.D.I.IsDrag;
  7. U.MD.D.I.Ip;
  8. //教师桌面图标的全局变量
  9. U.MD.D.I.teacherDeskIcon = [
  10. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  11. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  12. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  13. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  14. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  15. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  16. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  17. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  18. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  19. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  20. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  21. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  22. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  23. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  24. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  25. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  26. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  27. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  28. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  29. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  30. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  31. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  32. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  33. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  34. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  35. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  36. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  37. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  38. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  39. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  40. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  41. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  42. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  43. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  44. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  45. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  46. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  47. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  48. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  49. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  50. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  51. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  52. ];
  53. //极简模式
  54. U.MD.D.I.easyDeskIcon = [
  55. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/easy/project.png)", "width": '114px', 'height': '114px' } },
  56. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/easy/study.png)", "width": '114px', 'height': '114px' } },
  57. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/easy/evaluate.png)", "width": '114px', 'height': '114px' } },
  58. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/easy/class.png)", "width": '114px', 'height': '114px' } },
  59. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } },
  60. ];
  61. //教师桌面图标的全局变量
  62. U.MD.D.I.teacherDeskIcon2 = [
  63. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  64. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  65. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  66. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  67. // { "Name": "项目管理", "Url": "studentStudyS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  68. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  69. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  70. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  71. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  72. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  73. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  74. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  75. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  76. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  77. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  78. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  79. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  80. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  81. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  82. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  83. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  84. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  85. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  86. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  87. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  88. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  89. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  90. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  91. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  92. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  93. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  94. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  95. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  96. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  97. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  98. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  99. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  100. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  101. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  102. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  103. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  104. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  105. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  106. ];
  107. U.MD.D.I.studentDeskIcon = [
  108. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  110. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  111. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  112. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  113. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  114. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  115. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  116. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  117. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  118. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  119. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  120. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  121. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  122. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  123. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  124. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  125. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  126. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  127. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  128. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  129. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  130. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  131. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  132. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  133. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  134. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  135. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  136. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  137. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  138. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  139. ];
  140. U.MD.D.I.studentDeskIcon2 = [
  141. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  142. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  143. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  144. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  145. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  146. ]
  147. U.MD.D.I.studentDeskIcon3 = [
  148. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  149. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  151. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  152. ]
  153. U.MD.D.I.schoolDeskIcon = [
  154. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  155. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  156. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  157. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  158. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  159. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  160. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  161. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  162. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  163. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  164. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  165. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  166. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  167. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  168. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  169. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  170. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  171. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  172. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  173. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  174. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  175. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  176. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  177. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  178. ];
  179. U.MD.D.I.orgDeskIcon = [
  180. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  181. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  182. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  183. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  184. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  185. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  187. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  188. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  189. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  190. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  191. ];
  192. U.MD.D.I.orgStemDeskIcon = [
  193. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  194. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  195. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  196. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  197. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  198. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  199. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  200. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  201. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  202. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  203. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  204. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  205. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  206. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  207. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  209. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  210. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  211. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  212. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  213. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  214. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  215. ];
  216. U.MD.D.I.szulsDeskIcon = [
  217. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  218. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  219. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  220. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  221. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  222. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  223. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  224. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  225. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  226. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  227. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  228. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  229. ];
  230. U.MD.D.I.hanDeskIcon = [
  231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  234. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  235. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  236. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  237. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  238. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  239. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  240. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  241. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  242. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  243. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  244. ];
  245. U.MD.D.I.GMteacherDeskIcon = [
  246. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  247. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  248. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  249. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  250. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  251. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  252. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  253. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  254. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  255. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  256. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  257. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  258. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  259. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  260. ];
  261. U.MD.D.I.GMstudentDeskIcon = [
  262. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  263. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  264. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  265. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  266. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  267. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  268. ];
  269. //松山湖
  270. U.MD.D.I.SONGteacherDeskIcon = [
  271. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  272. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  273. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  274. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  275. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  276. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  277. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  278. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  279. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  280. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  281. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  282. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  283. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  284. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  285. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  286. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  287. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  288. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  289. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  290. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  291. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  292. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  293. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  294. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  295. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  296. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  297. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  298. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  299. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  300. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  301. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  302. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  303. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  304. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  305. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  306. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  308. ];
  309. U.MD.D.I.tcStudentDeskIcon = [
  310. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  311. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  312. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  313. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  314. ];
  315. U.MD.D.I.tcTeacherDeskIcon = [
  316. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  317. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  318. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  319. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  320. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  321. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  322. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  323. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  324. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  325. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  326. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  327. ];
  328. U.MD.D.I.tcOrganizerDeskIcon = [
  329. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  330. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  331. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  332. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  333. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  334. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  335. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  336. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  337. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  338. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  339. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  341. ];
  342. U.MD.D.I.szscStudentDeskIcon = [
  343. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  344. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  345. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  346. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  347. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  348. ];
  349. U.MD.D.I.szscTeacherDeskIcon = [
  350. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  352. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  353. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  354. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  355. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  356. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  357. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  358. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  359. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  361. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  362. ];
  363. U.MD.D.I.szscOrganizerDeskIcon = [
  364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  366. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  367. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  368. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  369. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  370. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  371. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  372. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  374. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  375. ];
  376. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  381. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  383. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  384. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  385. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  386. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  387. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  388. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  389. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  390. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  391. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  392. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  394. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  395. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  396. ];
  397. U.MD.D.I.wankeAdminDeskIcon = [
  398. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  399. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  400. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  401. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  402. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  403. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  404. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  408. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  409. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  410. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  411. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  412. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  413. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  414. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  415. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  416. ];
  417. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  425. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  426. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  427. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  428. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  429. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  430. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  431. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  432. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  433. ];
  434. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  435. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  436. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  437. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  438. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  439. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  440. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  441. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  442. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  443. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  444. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  445. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  446. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  447. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  448. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  449. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  450. ];
  451. //明德教师桌面图标的全局变量
  452. U.MD.D.I.MingdeTeacherDeskIcon = [
  453. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  454. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  455. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  456. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  457. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  458. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  459. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  460. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  461. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  462. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  463. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  464. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  465. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  466. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  467. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  468. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  469. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  470. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  471. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  472. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  473. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  474. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  475. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  476. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  477. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  478. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  479. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  480. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  481. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  482. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  485. ];
  486. //97c4ee8b-d010-4042-986d-e9d3c217264f
  487. //教师桌面图标的全局变量
  488. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  489. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  490. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  491. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  492. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  493. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  494. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  495. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  496. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  498. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  499. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  500. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  501. ];
  502. //福田
  503. U.MD.D.I.futianTeacherDeskIcon = [
  504. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  505. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  506. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  507. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  508. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  509. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  510. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  511. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  512. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  513. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  514. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  515. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  516. ];
  517. //福田
  518. U.MD.D.I.futianAdminDeskIcon = [
  519. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  520. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  521. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  522. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  523. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  524. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  525. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  526. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  527. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  528. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  530. ];
  531. //lotech
  532. U.MD.D.I.lotechTeacherDeskIcon = [
  533. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  534. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  535. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  536. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  537. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  538. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  539. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  540. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  541. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  542. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  543. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  544. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  545. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  546. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  547. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  548. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  549. ];
  550. //龙华中心小学教师桌面图标的全局变量
  551. U.MD.D.I.longhuateacherDeskIcon = [
  552. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  553. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  554. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  555. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  556. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  557. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  558. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  559. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  560. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  561. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  562. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  563. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  564. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  565. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  566. ];
  567. //教科院实小教师桌面图标的全局变量
  568. U.MD.D.I.siesteacherDeskIcon = [
  569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  571. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  572. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  573. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  574. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  575. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  576. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  577. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  578. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  579. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  580. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  581. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  582. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  583. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  585. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  586. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  587. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  588. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  589. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  590. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  591. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  592. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  593. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  594. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  595. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  596. ];
  597. //教科院实小教师桌面图标的全局变量
  598. U.MD.D.I.siesStudentDeskIcon = [
  599. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  600. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  601. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  602. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  603. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  604. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  605. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  606. ];
  607. //中山小学教师桌面图标的全局变量
  608. U.MD.D.I.guzmsteacherDeskIcon = [
  609. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  610. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  611. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  612. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  613. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  614. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  615. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  616. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  617. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  618. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  619. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  620. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  621. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  622. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  623. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  624. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  625. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  626. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  627. ];
  628. //中山小学学生桌面图标的全局变量
  629. U.MD.D.I.guzmsStudentDeskIcon = [
  630. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  631. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  633. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  634. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  635. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  636. ];
  637. //福田
  638. U.MD.D.I.gdjgTeacherDeskIcon = [
  639. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  640. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  641. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  642. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  643. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  644. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  645. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  646. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  647. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  648. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  649. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  650. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  651. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  652. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  653. ];
  654. //gdjg
  655. U.MD.D.I.gdjgAdminDeskIcon = [
  656. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  657. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  658. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  660. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  661. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  662. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  663. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  664. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  665. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  666. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  667. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  668. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  669. ];
  670. //hk
  671. U.MD.D.I.hkteacherDeskIcon = [
  672. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  673. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  674. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  675. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  676. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  677. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  678. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  679. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  680. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  681. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  682. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  683. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  684. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  685. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  686. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  687. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  688. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  689. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  690. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  691. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  692. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  693. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  694. ];
  695. //ricoh
  696. U.MD.D.I.ricohteacherDeskIcon = [
  697. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  698. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  699. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  700. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  701. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  702. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  703. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  705. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  706. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  707. ];
  708. //hk
  709. U.MD.D.I.hkStudentDeskIcon = [
  710. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  711. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  712. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  713. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  715. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  717. ];
  718. //hk
  719. U.MD.D.I.tycyteacherDeskIcon = [
  720. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  721. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  722. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  723. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  727. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  730. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  731. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  732. ];
  733. //hk
  734. U.MD.D.I.tycyStudentDeskIcon = [
  735. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  739. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  740. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  741. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  742. ];
  743. //hk
  744. U.MD.D.I.ckcpsteacherDeskIcon = [
  745. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  746. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  747. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  748. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  749. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  750. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  751. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  752. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  755. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  756. ];
  757. //hk
  758. U.MD.D.I.ckcpsStudentDeskIcon = [
  759. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  761. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  762. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  763. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  764. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  765. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  766. ];
  767. //hk
  768. U.MD.D.I.hkaceteacherDeskIcon = [
  769. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  770. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  771. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  772. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  773. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  774. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  775. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  776. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  777. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  778. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  779. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  780. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  781. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  782. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  783. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  784. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  785. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  786. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  788. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  789. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  790. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  791. ];
  792. //hk
  793. U.MD.D.I.hkaceStudentDeskIcon = [
  794. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  798. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  799. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  800. ];
  801. //香海正覺蓮社佛教正覺中學
  802. U.MD.D.I.hkZJLSteacherDeskIcon = [
  803. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  804. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  805. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  806. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  807. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  808. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  809. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  810. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  811. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  812. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  813. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  814. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  816. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //香海正覺蓮社佛教正覺中學
  821. U.MD.D.I.hkZJLSStudentDeskIcon = [
  822. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  824. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  825. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  826. ];
  827. //云海
  828. U.MD.D.I.yunhaiTeacherDeskIcon = [
  829. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  830. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  831. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  832. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  833. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  834. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  835. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  836. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  837. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  838. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  839. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  840. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  841. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  842. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  843. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  844. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  845. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  846. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  847. ];
  848. //福田
  849. U.MD.D.I.heyuanTeacherDeskIcon = [
  850. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  851. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  852. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  853. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  854. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  855. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  861. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  862. ];
  863. //福田
  864. U.MD.D.I.heyuanAdminDeskIcon = [
  865. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  866. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  867. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  868. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  869. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  870. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  871. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  872. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  873. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  874. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  875. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  876. ];
  877. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  878. U.MD.D.I.szherTeacherDeskIcon = [
  879. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  880. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  881. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  882. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  883. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  884. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  885. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  886. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  887. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  888. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  889. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  890. ];
  891. //dsei
  892. U.MD.D.I.dseiTeacherDeskIcon = [
  893. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  894. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  895. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  896. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  897. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  898. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  899. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  900. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  901. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  902. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  903. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  904. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  905. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  906. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  907. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  908. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  909. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  910. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  911. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  912. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  913. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  914. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  915. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  916. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  917. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  918. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  919. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  920. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  921. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  922. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  923. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  924. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  925. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  926. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  927. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  928. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  929. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  930. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  931. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  932. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  933. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  934. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  935. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  936. ];
  937. //dsei
  938. U.MD.D.I.dseiAdminDeskIcon = [
  939. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  940. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  941. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  942. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  943. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  944. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  945. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  946. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  947. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  948. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  949. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  950. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  951. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  952. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  953. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  954. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  955. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  956. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  957. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  958. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  959. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  960. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  961. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  962. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  963. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  964. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  965. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  966. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  967. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  968. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  969. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  970. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  971. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  972. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  973. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  974. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  975. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  976. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  977. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  978. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  979. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  980. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  981. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  982. ];
  983. //dsei
  984. U.MD.D.I.dseiStudentDeskIcon = [
  985. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  986. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  987. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  988. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  989. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  990. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  991. ];
  992. //未来教育基地
  993. U.MD.D.I.szjkyTeacherDeskIcon = [
  994. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  995. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  996. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  997. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  998. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  999. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1000. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1001. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1002. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1003. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1004. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1005. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1006. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1007. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1008. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1009. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1010. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1011. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1012. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1013. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1014. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1015. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1016. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1017. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1018. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1019. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1020. ];
  1021. //未来教育基地
  1022. U.MD.D.I.szjkyAdminDeskIcon = [
  1023. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1024. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1025. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1026. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1027. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1028. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1029. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1030. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1031. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1032. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1033. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1034. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1035. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1036. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1037. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1038. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1039. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1040. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1041. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1042. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1043. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1044. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1045. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1046. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1047. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1048. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1049. ];
  1050. //未来教育基地
  1051. U.MD.D.I.szjkyStudentDeskIcon = [
  1052. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1053. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1054. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1055. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1056. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1057. ];
  1058. //成华教育局
  1059. U.MD.D.I.chjyjTeacherDeskIcon = [
  1060. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1061. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1062. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1063. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1064. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1065. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1066. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1067. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1068. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1069. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1070. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1071. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1072. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1073. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1074. ];
  1075. //成华教育局chjyj
  1076. U.MD.D.I.chjyjAdminDeskIcon = [
  1077. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1078. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1079. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1080. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1081. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1082. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1083. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1084. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1085. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1089. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1091. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1092. ];
  1093. //成华教育局chjyj
  1094. U.MD.D.I.chjyjStudentDeskIcon = [
  1095. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1096. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1097. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1098. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1099. ];
  1100. //tpc
  1101. U.MD.D.I.tpcStudentDeskIcon = [
  1102. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1104. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1105. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1106. ];
  1107. //tpc
  1108. U.MD.D.I.tpcTeacherDeskIcon = [
  1109. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1110. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1111. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1112. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1113. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1114. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1115. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1116. ];
  1117. //tpc
  1118. U.MD.D.I.tpcAdminDeskIcon = [
  1119. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1120. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1121. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1122. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1123. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1124. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1125. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1126. ];
  1127. //THU-IOE
  1128. U.MD.D.I.thuioeTeacherDeskIcon = [
  1129. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1130. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1131. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1132. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1133. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1134. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1135. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1136. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1137. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1138. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1139. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1140. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1141. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1142. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1143. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1144. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1145. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1146. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1147. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1148. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1149. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1150. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1151. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1152. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1153. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1154. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1155. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1156. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1157. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1158. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1159. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1160. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1161. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1162. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1163. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1164. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1165. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1166. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1167. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1168. ];
  1169. //THU-IOE
  1170. U.MD.D.I.thuioeStudentDeskIcon = [
  1171. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1172. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1173. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1174. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1175. ];
  1176. //jccssyl
  1177. U.MD.D.I.jccssylTeacherDeskIcon = [
  1178. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1179. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1180. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1182. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1183. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1184. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1185. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1186. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1187. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1188. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1189. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1190. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1191. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1192. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1193. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1194. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1195. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1196. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1197. ];
  1198. //jccssyl
  1199. U.MD.D.I.jccssylStudentDeskIcon = [
  1200. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1201. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1202. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1203. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1204. ];
  1205. //cale
  1206. U.MD.D.I.caleTeacherDeskIcon = [
  1207. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1208. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1209. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1210. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1211. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1212. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1213. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1214. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1215. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1216. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1217. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1218. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1219. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1220. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1221. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1222. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1223. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1224. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1225. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1226. ];
  1227. //cale
  1228. U.MD.D.I.caleStudentDeskIcon = [
  1229. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1230. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1231. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1232. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1233. ];
  1234. //lqwmsgzs
  1235. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1236. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1237. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1241. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1242. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1243. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1244. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1245. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1246. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1247. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1248. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1249. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1250. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1251. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1252. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1253. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1254. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1255. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1256. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1257. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1258. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1259. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1260. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1261. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1262. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1263. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1264. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1265. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1266. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1267. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1268. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1270. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1271. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1272. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1273. ];
  1274. //lqwmsgzs
  1275. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1276. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1277. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1278. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1279. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1280. ];
  1281. //盐田区幼儿园
  1282. U.MD.D.I.ytyTeacherDeskIcon = [
  1283. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1284. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1285. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1286. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1287. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1288. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1289. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1290. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1291. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1292. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1293. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1294. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1295. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1296. ];
  1297. //盐田区幼儿园
  1298. U.MD.D.I.ytyStudentDeskIcon = [
  1299. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1300. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1301. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1302. ];
  1303. //scnuai
  1304. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1305. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1306. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1307. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1308. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1309. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1310. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1311. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1312. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1313. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1314. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1315. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1316. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1317. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1321. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1322. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1323. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1324. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1325. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1326. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1327. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1328. ];
  1329. //scnuai
  1330. U.MD.D.I.scnuaiAdminDeskIcon = [
  1331. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1332. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1333. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1334. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1335. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1336. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1337. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1338. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1339. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1340. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1341. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1342. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1343. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1344. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1346. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1347. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1348. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1349. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1350. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1351. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1352. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1353. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1354. ];
  1355. //scnuai
  1356. U.MD.D.I.scnuaiStudentDeskIcon = [
  1357. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1359. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1360. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1361. ];
  1362. //cocobiz
  1363. U.MD.D.I.cocobizteacherDeskIcon = [
  1364. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1365. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1366. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1367. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1368. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1369. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1370. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1371. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1372. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1373. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1374. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1375. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1376. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1377. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1378. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1382. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1383. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1384. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1385. ];
  1386. //cocobiz
  1387. U.MD.D.I.cocobizStudentDeskIcon = [
  1388. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1389. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1390. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1391. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1392. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1393. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1394. ];
  1395. //xxzjky
  1396. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1397. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1398. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1399. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1400. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1401. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1402. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1403. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1404. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1405. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1406. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1407. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1408. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1409. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1410. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1411. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1412. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1413. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1414. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1415. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1416. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1417. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1418. ];
  1419. //xxzjky
  1420. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1421. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1425. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1426. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1427. ];
  1428. //nsfx
  1429. U.MD.D.I.nsfxTeacherDeskIcon = [
  1430. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1431. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1432. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1433. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1434. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1435. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1436. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1437. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1438. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1439. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1440. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1441. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1442. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1444. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1445. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1446. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1447. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1448. ];
  1449. //nsfx
  1450. U.MD.D.I.nsfxStudentDeskIcon = [
  1451. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1452. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1453. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1454. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1455. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1456. ];
  1457. //stia
  1458. U.MD.D.I.stiaTeacherDeskIcon = [
  1459. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1460. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1461. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1462. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1463. // { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1464. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1465. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1466. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1467. // { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1468. // { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1469. // { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1470. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1471. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1472. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1473. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1474. ];
  1475. //stia
  1476. U.MD.D.I.stiaStudentDeskIcon = [
  1477. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1478. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1479. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1480. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1481. ];
  1482. //szdjg
  1483. U.MD.D.I.szdjgTeacherDeskIcon = [
  1484. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1485. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. ];
  1487. //szdjg
  1488. U.MD.D.I.szdjgStudentDeskIcon = [
  1489. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //010607
  1495. U.MD.D.I.x010607TeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1504. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1505. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1506. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1507. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1508. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1509. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1510. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1511. ];
  1512. //010607
  1513. U.MD.D.I.x010607StudentDeskIcon = [
  1514. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1515. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1516. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1517. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1518. ];
  1519. //010608
  1520. U.MD.D.I.x010608TeacherDeskIcon = [
  1521. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1522. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1523. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1524. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1525. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1526. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1527. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1528. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1529. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1530. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1531. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1532. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1533. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1534. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1535. ];
  1536. //010608
  1537. U.MD.D.I.x010608StudentDeskIcon = [
  1538. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1539. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1540. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1542. ];
  1543. //xhly
  1544. U.MD.D.I.xhlyTeacherDeskIcon = [
  1545. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1546. ];
  1547. //010608
  1548. U.MD.D.I.xhlyStudentDeskIcon = [
  1549. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1550. ];
  1551. //北师大
  1552. U.MD.D.I.BSDNSteacherDeskIcon = [
  1553. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1554. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1555. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1556. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1557. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1558. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1559. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1560. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1561. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1562. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1563. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1564. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1565. ];
  1566. //北师大
  1567. U.MD.D.I.BSDNSstudentDeskIcon = [
  1568. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1569. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1570. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1572. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1573. ];
  1574. //CUHK_EDU
  1575. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1576. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1577. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1578. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1579. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1580. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1581. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1582. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1583. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1584. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1585. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1586. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1587. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1588. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1589. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1590. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1591. ];
  1592. //CUHK_EDU
  1593. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //010503
  1600. U.MD.D.I.x010503TeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1604. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1605. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1606. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1607. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1608. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1609. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1610. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1611. ];
  1612. //010503
  1613. U.MD.D.I.x010503StudentDeskIcon = [
  1614. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1615. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1616. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1617. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1618. ];
  1619. //SPROUT Lab
  1620. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1621. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1622. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1623. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1624. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1625. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1626. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1627. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1628. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1629. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1630. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1631. ];
  1632. //SPROUT Lab
  1633. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1634. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1635. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1636. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1637. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1638. ];
  1639. //010204
  1640. U.MD.D.I.x010204TeacherDeskIcon = [
  1641. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1642. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1643. ];
  1644. //010204
  1645. U.MD.D.I.x010204StudentDeskIcon = [
  1646. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1647. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1648. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1649. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1650. ];
  1651. //trail
  1652. U.MD.D.I.trailTeacherDeskIcon = [
  1653. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1654. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1655. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1656. ];
  1657. //trail
  1658. U.MD.D.I.trailStudentDeskIcon = [
  1659. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1660. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1661. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1662. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1663. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1664. ];
  1665. //trial
  1666. U.MD.D.I.trialTeacherDeskIcon = [
  1667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1672. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1673. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  1674. ];
  1675. //trial
  1676. U.MD.D.I.trialStudentDeskIcon = [
  1677. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1678. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1679. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1680. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1681. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1682. ];
  1683. //010504
  1684. U.MD.D.I.x010504TeacherDeskIcon = [
  1685. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1686. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1687. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1688. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1689. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1690. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1691. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1692. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1693. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1696. ];
  1697. //010504
  1698. U.MD.D.I.x010504StudentDeskIcon = [
  1699. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1700. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1703. ];
  1704. //010505
  1705. U.MD.D.I.x010505TeacherDeskIcon = [
  1706. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1707. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1708. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1709. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1710. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1711. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1712. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1714. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1715. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1716. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1717. ];
  1718. //010505
  1719. U.MD.D.I.x010505StudentDeskIcon = [
  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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //SCNUET
  1726. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1730. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1731. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1732. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1733. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1734. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1735. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1736. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1737. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1738. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1739. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1740. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1741. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1742. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1743. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1744. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1745. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1746. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1747. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1748. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1749. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1750. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1751. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1752. ];
  1753. //SCNUET
  1754. U.MD.D.I.SCNUETAdminDeskIcon = [
  1755. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1756. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1757. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1758. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1759. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1760. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1761. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1762. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1763. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1764. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1765. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1766. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1767. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1768. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1769. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1770. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1771. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1772. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1773. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1774. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1775. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1776. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1777. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1778. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1779. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1780. ];
  1781. //SCNUET
  1782. U.MD.D.I.SCNUETStudentDeskIcon = [
  1783. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1784. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1785. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1786. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1787. ];
  1788. //x020201
  1789. U.MD.D.I.x020201TeacherDeskIcon = [
  1790. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1791. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1792. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1793. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1794. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1795. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1796. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1797. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1798. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1799. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1800. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1801. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1802. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1803. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1804. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1805. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1806. ];
  1807. //x020201
  1808. U.MD.D.I.x020201AdminDeskIcon = [
  1809. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1810. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1811. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1812. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1813. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1814. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1815. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1816. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1817. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1818. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1819. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1820. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1821. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1824. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1825. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1826. ];
  1827. //020201
  1828. U.MD.D.I.x020201StudentDeskIcon = [
  1829. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1830. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1831. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1832. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1833. ];
  1834. //010611
  1835. U.MD.D.I.x010611TeacherDeskIcon = [
  1836. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1837. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1838. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1839. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1840. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1841. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1842. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1843. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1844. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1845. ];
  1846. //010611
  1847. U.MD.D.I.x010611StudentDeskIcon = [
  1848. { "Name": "项目管理", "Url": "studentCourse", "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": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1851. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1852. ];
  1853. //010612
  1854. U.MD.D.I.x010612TeacherDeskIcon = [
  1855. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1856. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1857. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1858. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1859. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1860. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1863. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1864. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1865. ];
  1866. //010612
  1867. U.MD.D.I.x010612StudentDeskIcon = [
  1868. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1869. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1870. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1871. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1872. ];
  1873. //tianyuan
  1874. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1875. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1876. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1877. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1878. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1879. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1880. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1881. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1882. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1883. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1884. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1885. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  1886. ];
  1887. //010611
  1888. U.MD.D.I.tianyuanStudentDeskIcon = [
  1889. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1890. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1891. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1892. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1893. ];
  1894. //320101
  1895. U.MD.D.I.x320101TeacherDeskIcon = [
  1896. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1897. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1898. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1899. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1900. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1901. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1902. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1903. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1904. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1905. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1906. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1907. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1908. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1909. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1910. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1911. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1912. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1913. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1914. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1915. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1916. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1917. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1918. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1919. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1920. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1921. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1922. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1923. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1924. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1925. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1926. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1927. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1928. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1929. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1930. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1931. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1932. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1933. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1934. ];
  1935. //320101
  1936. U.MD.D.I.x320101StudentDeskIcon = [
  1937. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1938. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1939. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1940. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1941. ];
  1942. //szsy
  1943. U.MD.D.I.szsyTeacherDeskIcon = [
  1944. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1945. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1946. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1947. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1948. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1949. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1950. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1951. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1952. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1953. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1954. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1955. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1956. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1957. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1958. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1959. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1960. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1961. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1962. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1963. ];
  1964. //szsy
  1965. U.MD.D.I.szsyStudentDeskIcon = [
  1966. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1967. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1968. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1969. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1970. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1971. ];
  1972. //010404
  1973. U.MD.D.I.x010404TeacherDeskIcon = [
  1974. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1975. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1976. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1977. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1978. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1979. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1980. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1981. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1982. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1983. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1984. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1985. ];
  1986. //010404
  1987. U.MD.D.I.x010404StudentDeskIcon = [
  1988. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1990. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1991. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1992. ];
  1993. //cocorobo demo
  1994. U.MD.D.I.demoCocoTeacherDeskIcon = [
  1995. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1996. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1997. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1998. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1999. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2000. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2001. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2002. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2003. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2004. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2005. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2006. ];
  2007. //cocorobo demo
  2008. U.MD.D.I.demoCocoStudentDeskIcon = [
  2009. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2010. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2011. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2012. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2013. ];
  2014. //MOAI
  2015. U.MD.D.I.MOAITeacherDeskIcon = [
  2016. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2017. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2018. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2019. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2020. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2021. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2022. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2023. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2024. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2025. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2026. ];
  2027. //MOAI 学生端
  2028. U.MD.D.I.MOAIStudentDeskIcon = [
  2029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2031. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2032. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2033. ];
  2034. //PREPAI
  2035. U.MD.D.I.PREPAITeacherDeskIcon = [
  2036. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2037. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2038. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2039. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2040. ];
  2041. //PREPAI 学生端
  2042. U.MD.D.I.PREPAIStudentDeskIcon = [
  2043. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2044. ];
  2045. //深圳外国语学校(集团)初中部
  2046. U.MD.D.I.x010511TeacherDeskIcon = [
  2047. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2048. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2049. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2050. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2051. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2052. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2053. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2054. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2055. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2056. ];
  2057. //深圳外国语学校(集团)初中部 学生端
  2058. U.MD.D.I.x010511StudentDeskIcon = [
  2059. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2060. ];
  2061. //深圳大学附属实验中学
  2062. U.MD.D.I.x010103TeacherDeskIcon = [
  2063. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2064. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2065. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2066. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2067. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2068. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2069. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2070. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2071. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2072. ];
  2073. //深圳大学附属实验中学 学生端
  2074. U.MD.D.I.x010103StudentDeskIcon = [
  2075. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2076. ];
  2077. //智理集团
  2078. U.MD.D.I.zlteacherDeskIcon = [
  2079. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  2080. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2081. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  2082. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2083. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  2084. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  2085. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  2086. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  2087. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2089. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2090. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2091. ];
  2092. //智理集团
  2093. U.MD.D.I.zlstudentDeskIcon = [
  2094. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  2095. ];
  2096. //#region 桌面初始化a
  2097. /**
  2098. * 初始化桌面的起始函数
  2099. *
  2100. */
  2101. U.MD.D.I.init = function () {
  2102. if ($("#U_MD_D_K")[0]) {
  2103. //初始化桌面图标
  2104. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  2105. // var clickUrl = ':12588/requestIp.php';
  2106. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  2107. // U.MD.D.I.Ip = data;
  2108. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  2109. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  2110. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  2111. // })
  2112. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  2113. // })
  2114. }
  2115. }
  2116. /**
  2117. * 模式切换
  2118. *
  2119. */
  2120. U.MD.D.I.ModeCheck = function (type) {
  2121. if (US.Config.type == type) {
  2122. return
  2123. }
  2124. US.Config.type = type
  2125. $('.U_PBL_Check .active')[0].className = ''
  2126. if (type == 1) {
  2127. $('.U_PBL_Check div')[0].className = 'active'
  2128. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  2129. } else {
  2130. $('.U_PBL_Check div')[1].className = 'active'
  2131. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  2132. }
  2133. //初始化桌面图标
  2134. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  2135. if (type == 2) {
  2136. U.MD.D.I.openApplication("project")
  2137. }
  2138. }
  2139. /**
  2140. * 隐藏任务栏
  2141. *
  2142. * @param {element} 桌面元素
  2143. */
  2144. U.MD.D.I.hiddenTaskbar = function (el) {
  2145. //任务栏位置变小
  2146. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  2147. //桌面的位置变大
  2148. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2149. }
  2150. /**
  2151. * 隐藏任务栏
  2152. *
  2153. * @param {element} 桌面元素
  2154. */
  2155. U.MD.D.I.hiddenTaskbarout = function (el) {
  2156. //任务栏位置变小
  2157. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  2158. //任务栏位置变化
  2159. U.selectEl(el).css({ "bottom": "-60px" });
  2160. //桌面的位置变大
  2161. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  2162. }
  2163. }
  2164. /**
  2165. * 初始化打印桌面图标
  2166. *
  2167. * @param {element} 桌面元素
  2168. */
  2169. U.MD.D.I.initDesktopIcons = function (el, type) {
  2170. var i, //用于循环
  2171. _content, //桌面图标元素
  2172. _iconcontent, //桌面图标元素
  2173. _frag = $$("frag"), //定义一个碎片元素
  2174. _type = US.userInfo.type,
  2175. _org = US.userInfo.org,
  2176. _oid = US.userInfo.organizeid,
  2177. _role = US.userInfo.role,
  2178. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  2179. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  2180. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  2181. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  2182. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  2183. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  2184. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  2185. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  2186. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  2187. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  2188. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  2189. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  2190. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  2191. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  2192. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  2193. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  2194. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  2195. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  2196. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  2197. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  2198. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  2199. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  2200. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  2201. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  2202. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  2203. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  2204. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  2205. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  2206. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  2207. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  2208. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  2209. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  2210. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  2211. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  2212. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  2213. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  2214. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  2215. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  2216. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  2217. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  2218. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  2219. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  2220. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  2221. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  2222. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  2223. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  2224. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  2225. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  2226. _ricohTeacherDeskIconInfo = U.MD.D.I.ricohteacherDeskIcon, //hk
  2227. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  2228. _tycyTeacherDeskIconInfo = U.MD.D.I.tycyteacherDeskIcon, //hk
  2229. _tycyStudentDeskIconInfo = U.MD.D.I.tycyStudentDeskIcon, //hk
  2230. _ckcpsTeacherDeskIconInfo = U.MD.D.I.ckcpsteacherDeskIcon, //hk
  2231. _ckcpsStudentDeskIconInfo = U.MD.D.I.ckcpsStudentDeskIcon, //hk
  2232. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  2233. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  2234. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  2235. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  2236. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  2237. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  2238. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  2239. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  2240. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  2241. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  2242. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  2243. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  2244. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  2245. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  2246. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  2247. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  2248. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  2249. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  2250. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  2251. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  2252. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  2253. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  2254. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  2255. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  2256. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  2257. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  2258. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  2259. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  2260. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  2261. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  2262. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  2263. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  2264. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  2265. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  2266. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  2267. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  2268. _x010612StudentDeskIconInfo = U.MD.D.I.x010612StudentDeskIcon, //010611
  2269. _x010612TeacherDeskIconInfo = U.MD.D.I.x010612TeacherDeskIcon, //010611
  2270. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  2271. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  2272. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  2273. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  2274. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  2275. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  2276. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  2277. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  2278. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  2279. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  2280. _x010505StudentDeskIconInfo = U.MD.D.I.x010505StudentDeskIcon, //010505
  2281. _x010505TeacherDeskIconInfo = U.MD.D.I.x010505TeacherDeskIcon, //010505
  2282. _x010404StudentDeskIconInfo = U.MD.D.I.x010404StudentDeskIcon, //010404
  2283. _x010404TeacherDeskIconInfo = U.MD.D.I.x010404TeacherDeskIcon, //010404
  2284. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  2285. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  2286. _x320101StudentDeskIconInfo = U.MD.D.I.x320101StudentDeskIcon, //320101
  2287. _x320101TeacherDeskIconInfo = U.MD.D.I.x320101TeacherDeskIcon, //320101
  2288. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  2289. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  2290. _trialStudentDeskIconInfo = U.MD.D.I.trialStudentDeskIcon, //trial
  2291. _trialTeacherDeskIconInfo = U.MD.D.I.trialTeacherDeskIcon, //trial
  2292. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  2293. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  2294. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  2295. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  2296. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  2297. _szsyTeacherDeskIconInfo = U.MD.D.I.szsyTeacherDeskIcon, //szsy
  2298. _szsyStudentDeskIconInfo = U.MD.D.I.szsyStudentDeskIcon, //szsy
  2299. _demoCocoTeacherDeskIconInfo = U.MD.D.I.demoCocoTeacherDeskIcon, //demoCoco
  2300. _demoCocoStudentDeskIconInfo = U.MD.D.I.demoCocoStudentDeskIcon, //demoCoco
  2301. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  2302. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  2303. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  2304. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  2305. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  2306. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  2307. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon, //szsc
  2308. _PREPAITeacherDeskIcon = U.MD.D.I.PREPAITeacherDeskIcon, //PREPAI
  2309. _PREPAIStudentDeskIcon = U.MD.D.I.PREPAIStudentDeskIcon, //PREPAI
  2310. _x010511TeacherDeskIcon = U.MD.D.I.x010511TeacherDeskIcon, //PREPAI
  2311. _x010511StudentDeskIcon = U.MD.D.I.x010511StudentDeskIcon, //PREPAI
  2312. _x010103TeacherDeskIcon = U.MD.D.I.x010103TeacherDeskIcon, //PREPAI
  2313. _x010103StudentDeskIcon = U.MD.D.I.x010103StudentDeskIcon, //PREPAI
  2314. _zlteacherDeskIconInfo = U.MD.D.I.zlteacherDeskIcon, //zl
  2315. _zlstudentDeskIconInfo = U.MD.D.I.zlstudentDeskIcon, //zl
  2316. _MOAITeacherDeskIcon = U.MD.D.I.MOAITeacherDeskIcon, //moai
  2317. _MOAIStudentDeskIcon = U.MD.D.I.MOAIStudentDeskIcon; //moai
  2318. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5', 'c7df0bd4-6e75-401a-a137-4e163aa62263', '9b46a3c9-7657-11ef-9b30-005056b86db5', '857af1c7-c8ee-4b04-85b5-fd182903adb7', '876030db-7a49-11ef-9b30-005056b86db5', 'b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5', '6c16df93-8849-11ef-9b30-005056b86db5', '72c16ee0-89fe-11ef-9b30-005056b86db5', '369222a8-cddd-11ed-9546-005056b86db5', '3fc7840d-a1c4-11ef-9b30-005056b86db5', '2c5d4971-ed9e-11ef-b508-005056924926', 'bc239322-ffb2-11ef-b508-005056924926', '91796dfb-8791-11ef-9b30-005056b86db5', '86fa8cd7-00c2-11f0-b508-005056924926', '8406b214-085f-11f0-b508-005056924926', '65ad80f0-16bb-11f0-a66a-005056924926', '9a8076a2-469a-11f0-b60f-005056924926', '17dbf412-92de-11f0-9838-005056924926', '31631344-92db-11f0-9838-005056924926'];
  2319. var _orgA = ["7ada499f-4ec7-11ed-8c78-005056b86db5", "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d", "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b", "150e3120-9195-11ed-b13d-005056b86db5", "ee40e8e3-e36c-4872-8105-cf395481012s", '97c4ee8b-d010-4042-986d-e9d3c217264f', 'ec0af97a-7c10-4259-a7eb-db9cc8174cdc', '4df1b570-f6ac-48fc-8d50-d0b157dae776', 'e632b86c-f89d-11ed-91d8-005056b86db5', 'b50cf65a-001c-11ee-91d8-005056b86db5', '578de748-05d2-11ee-91d8-005056b86db5', '54f09f1e-09f0-11ee-91d8-005056b86db5', '7b016f69-0f4f-11ee-91d8-005056b86db5', '1973f6c7-1561-11ee-91d8-005056b86db5', '2fa75e51-189a-11ee-91d8-005056b86db5', 'a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956', 'fbb00cc1-380b-4173-add4-59b3cf7682b5', '63060b4a-89dc-4f0c-bf04-a1de22d479ff', '777559d2-7239-11ee-b98c-005056b86db5', '03d24cf9-4fbc-4aeb-bb02-6f84f66e6344', '884c5665-a453-46f3-b7b6-01d575290aa9', 'c9a6de59-8b4f-4be1-8565-a08081f649d3', '7f280060-665e-4868-b68f-1eec9e1b4a07', 'f3b243b2-75e2-4b00-8f66-7644946a2a25', '16ace517-b5c7-4168-a9bb-a9e0035df840', '2fe1a080-4425-4620-b7a0-be2f3750ffd4', 'a5efd078-20f6-4185-bef9-6d1c688bee70', '23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6', 'ec84034b-8ea4-4d27-9cba-1adcb4720bb3', 'b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc', 'c8266c04-59e3-44de-bcf2-8f906e66e636', '7cc601a0-fafc-4116-a805-0adbacf7a38d', '62c166af-2f22-11f0-b60f-005056924926', 'eaee75a4-ff2e-11ef-b508-005056924926', "fa20a652-5f2a-11f0-bf32-005056924926", "eed08ac6-7269-11f0-9c7b-005056924926",'cf30095b-87d5-11f0-9c7b-005056924926'];
  2320. var liyuanOrg = ["3823a6a5-1b6e-11f0-a66a-005056924926", "3823a6a5-1b6e-11f0-a66a-005056924926", "292e34dc-1b6e-11f0-a66a-005056924926", "21d6b367-1b6e-11f0-a66a-005056924926", "1a1a172d-1b6e-11f0-a66a-005056924926", "1197f86b-1b6e-11f0-a66a-005056924926", "f235659b-1b6d-11f0-a66a-005056924926", "d87b62d3-1b6d-11f0-a66a-005056924926", "c25ea59b-1b6d-11f0-a66a-005056924926",]
  2321. //清楚桌面图标
  2322. el.innerHTML = "";
  2323. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  2324. _teacherDesktopIconInfo.push(
  2325. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2326. { "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)" } },
  2327. )
  2328. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  2329. }
  2330. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5' || _org == '4d3812ef-fa66-11ef-b508-005056924926' || _oid == "0df61e4c-fe2d-11ef-b508-005056924926" || _org == 'e775a5d7-039a-11f0-b508-005056924926' || _org == '4d3812ef-fa66-11ef-b508-005056924926') {
  2331. _teacherDesktopIconInfo.push(
  2332. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  2333. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  2334. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2335. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2336. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  2337. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  2338. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  2339. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2340. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2341. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2342. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  2343. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2344. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  2345. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  2346. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  2347. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  2348. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2349. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2350. { "Name": "EDU", "Url": "EDU", "style": { "cssText": "background-image:url(/img/icon/EDU.png)" } },
  2351. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2352. { "Name": "Sass", "Url": "sassPlatform", "style": { "cssText": "background-image:url(/img/icon/sassPlatForm.png)" } },
  2353. )
  2354. }
  2355. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  2356. _teacherDesktopIconInfo.push(
  2357. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2358. { "Name": "CocoFlow", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  2359. )
  2360. }
  2361. if (_oid == 'b650d914-f039-11ef-b508-005056924926') {//松坪学校
  2362. _nsfxTeacherDeskIconInfo.push(
  2363. { "Name": "知识库", "Url": "knowledge", "style": { "cssText": "background-image:url(/img/icon/knowledge.png)" } },
  2364. )
  2365. }
  2366. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  2367. // _teacherDesktopIconInfo.push(
  2368. // )
  2369. // }
  2370. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  2371. _teacherDesktopIconInfo.push(
  2372. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2373. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2374. )
  2375. }
  2376. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  2377. _teacherDesktopIconInfo.push(
  2378. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  2379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2380. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2381. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2382. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2383. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2384. )
  2385. _studentDesktopIconInfo.push(
  2386. )
  2387. }
  2388. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  2389. _teacherDesktopIconInfo.push(
  2390. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2391. )
  2392. _studentDesktopIconInfo.push(
  2393. )
  2394. }
  2395. //010606 组织
  2396. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2397. _teacherDesktopIconInfo.push(
  2398. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2399. )
  2400. _studentDesktopIconInfo.push(
  2401. )
  2402. }
  2403. //麒麟二中 和 民新小学
  2404. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2405. _teacherDesktopIconInfo.push(
  2406. )
  2407. }
  2408. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2409. _teacherDesktopIconInfo.push(
  2410. { "Name": "智能表单", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2411. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2412. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2413. )
  2414. }
  2415. if (_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _org == '62c166af-2f22-11f0-b60f-005056924926' && _role == '1') {
  2416. _hkTeacherDeskIconInfo.push(
  2417. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2418. )
  2419. }
  2420. //北师大附中(010601)
  2421. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2422. // _teacherDesktopIconInfo.push(
  2423. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2424. // )
  2425. // _studentDesktopIconInfo.push(
  2426. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2427. // )
  2428. // }
  2429. //樂善堂余近卿中學
  2430. if (_oid == "8d074a02-6057-11ef-b873-005056b86db5") {
  2431. _teacherDesktopIconInfo.push(
  2432. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2433. )
  2434. }
  2435. // Education Artificial Intelligence
  2436. if (_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0") {
  2437. _teacherDesktopIconInfo.push(
  2438. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2439. )
  2440. }
  2441. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2442. _teacherDesktopIconInfo.push(
  2443. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2444. )
  2445. }
  2446. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2447. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2448. _teacherDesktopIconInfo.push(
  2449. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2450. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2451. )
  2452. }
  2453. //麒麟二中
  2454. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2455. _studentDesktopIconInfo.push(
  2456. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2457. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2458. )
  2459. }
  2460. //万科双语
  2461. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2462. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2463. if (el.Name == '项目管理') {
  2464. el.Name = 'PBL项目'
  2465. }
  2466. return el
  2467. })
  2468. _studentDesktopIconInfo3.push(
  2469. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2470. )
  2471. }
  2472. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2473. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2474. return el.Name != '魔盒识字' && el.Name != '24点'
  2475. })
  2476. }
  2477. 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) {
  2478. _studentDesktopIconInfo.push(
  2479. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2480. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2481. )
  2482. }
  2483. //循环创建桌面图标
  2484. if (type == 1) {
  2485. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && liyuanOrg.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2486. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2487. _content = $$("div", {
  2488. className: "U_MD_D_KO",
  2489. "onmousedown": U.UF.C.closure(function (obj) {
  2490. //防止拖动图标即打开了桌面应用
  2491. U.MD.D.click(this, obj);
  2492. }, [_studentDesktopIconInfo[i]]),
  2493. "onclick": U.UF.C.closure(function (obj) {
  2494. //防止拖动图标即打开了桌面应用
  2495. U.MD.D.click(this, obj);
  2496. }, [_studentDesktopIconInfo[i]])
  2497. }, _frag); //
  2498. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2499. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2500. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2501. }
  2502. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2503. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2504. _content = $$("div", {
  2505. className: "U_MD_D_KO",
  2506. "onmousedown": U.UF.C.closure(function (obj) {
  2507. //防止拖动图标即打开了桌面应用
  2508. U.MD.D.click(this, obj);
  2509. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2510. "onclick": U.UF.C.closure(function (obj) {
  2511. //防止拖动图标即打开了桌面应用
  2512. U.MD.D.click(this, obj);
  2513. }, [_hkZJLSStudentDeskIconInfo[i]])
  2514. }, _frag); //
  2515. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2516. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2517. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2518. } //
  2519. } else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2520. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2521. _content = $$("div", {
  2522. className: "U_MD_D_KO",
  2523. "onmousedown": U.UF.C.closure(function (obj) {
  2524. //防止拖动图标即打开了桌面应用
  2525. U.MD.D.click(this, obj);
  2526. }, [_ytyStudentDeskIconInfo[i]]),
  2527. "onclick": U.UF.C.closure(function (obj) {
  2528. //防止拖动图标即打开了桌面应用
  2529. U.MD.D.click(this, obj);
  2530. }, [_ytyStudentDeskIconInfo[i]])
  2531. }, _frag); //
  2532. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2533. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2534. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2535. } //
  2536. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2537. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2538. _content = $$("div", {
  2539. className: "U_MD_D_KO",
  2540. "onmousedown": U.UF.C.closure(function (obj) {
  2541. //防止拖动图标即打开了桌面应用
  2542. U.MD.D.click(this, obj);
  2543. }, [_jccssylStudentDeskIconInfo[i]]),
  2544. "onclick": U.UF.C.closure(function (obj) {
  2545. //防止拖动图标即打开了桌面应用
  2546. U.MD.D.click(this, obj);
  2547. }, [_jccssylStudentDeskIconInfo[i]])
  2548. }, _frag); //
  2549. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2550. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2551. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2552. }
  2553. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2554. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2555. _content = $$("div", {
  2556. className: "U_MD_D_KO",
  2557. "onmousedown": U.UF.C.closure(function (obj) {
  2558. //防止拖动图标即打开了桌面应用
  2559. U.MD.D.click(this, obj);
  2560. }, [_scnuaiStudentDeskIconInfo[i]]),
  2561. "onclick": U.UF.C.closure(function (obj) {
  2562. //防止拖动图标即打开了桌面应用
  2563. U.MD.D.click(this, obj);
  2564. }, [_scnuaiStudentDeskIconInfo[i]])
  2565. }, _frag); //
  2566. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2567. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2568. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2569. }
  2570. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2571. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2572. _content = $$("div", {
  2573. className: "U_MD_D_KO",
  2574. "onmousedown": U.UF.C.closure(function (obj) {
  2575. //防止拖动图标即打开了桌面应用
  2576. U.MD.D.click(this, obj);
  2577. }, [_caleStudentDeskIconInfo[i]]),
  2578. "onclick": U.UF.C.closure(function (obj) {
  2579. //防止拖动图标即打开了桌面应用
  2580. U.MD.D.click(this, obj);
  2581. }, [_caleStudentDeskIconInfo[i]])
  2582. }, _frag); //
  2583. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2584. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2585. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2586. }
  2587. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2588. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2589. _content = $$("div", {
  2590. className: "U_MD_D_KO",
  2591. "onmousedown": U.UF.C.closure(function (obj) {
  2592. //防止拖动图标即打开了桌面应用
  2593. U.MD.D.click(this, obj);
  2594. }, [_thuioeStudentDeskIconInfo[i]]),
  2595. "onclick": U.UF.C.closure(function (obj) {
  2596. //防止拖动图标即打开了桌面应用
  2597. U.MD.D.click(this, obj);
  2598. }, [_thuioeStudentDeskIconInfo[i]])
  2599. }, _frag); //
  2600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2603. }
  2604. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2605. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2606. _content = $$("div", {
  2607. className: "U_MD_D_KO",
  2608. "onmousedown": U.UF.C.closure(function (obj) {
  2609. //防止拖动图标即打开了桌面应用
  2610. U.MD.D.click(this, obj);
  2611. }, [_tpcStudentDeskIconInfo[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_tpcStudentDeskIconInfo[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2620. } //
  2621. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2622. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2623. _content = $$("div", {
  2624. className: "U_MD_D_KO",
  2625. "onmousedown": U.UF.C.closure(function (obj) {
  2626. //防止拖动图标即打开了桌面应用
  2627. U.MD.D.click(this, obj);
  2628. }, [_chjyjStudentDeskIconInfo[i]]),
  2629. "onclick": U.UF.C.closure(function (obj) {
  2630. //防止拖动图标即打开了桌面应用
  2631. U.MD.D.click(this, obj);
  2632. }, [_chjyjStudentDeskIconInfo[i]])
  2633. }, _frag); //
  2634. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2635. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2636. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2637. }
  2638. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2639. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2640. _content = $$("div", {
  2641. className: "U_MD_D_KO",
  2642. "onmousedown": U.UF.C.closure(function (obj) {
  2643. //防止拖动图标即打开了桌面应用
  2644. U.MD.D.click(this, obj);
  2645. }, [_szjkyStudentDeskIconInfo[i]]),
  2646. "onclick": U.UF.C.closure(function (obj) {
  2647. //防止拖动图标即打开了桌面应用
  2648. U.MD.D.click(this, obj);
  2649. }, [_szjkyStudentDeskIconInfo[i]])
  2650. }, _frag); //
  2651. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2652. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2653. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2654. }
  2655. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2656. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2657. _content = $$("div", {
  2658. className: "U_MD_D_KO",
  2659. "onmousedown": U.UF.C.closure(function (obj) {
  2660. //防止拖动图标即打开了桌面应用
  2661. U.MD.D.click(this, obj);
  2662. }, [_x020201StudentDeskIconInfo[i]]),
  2663. "onclick": U.UF.C.closure(function (obj) {
  2664. //防止拖动图标即打开了桌面应用
  2665. U.MD.D.click(this, obj);
  2666. }, [_x020201StudentDeskIconInfo[i]])
  2667. }, _frag); //
  2668. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2669. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2670. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2671. }
  2672. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2673. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2674. _content = $$("div", {
  2675. className: "U_MD_D_KO",
  2676. "onmousedown": U.UF.C.closure(function (obj) {
  2677. //防止拖动图标即打开了桌面应用
  2678. U.MD.D.click(this, obj);
  2679. }, [_SCNUETStudentDeskIconInfo[i]]),
  2680. "onclick": U.UF.C.closure(function (obj) {
  2681. //防止拖动图标即打开了桌面应用
  2682. U.MD.D.click(this, obj);
  2683. }, [_SCNUETStudentDeskIconInfo[i]])
  2684. }, _frag); //
  2685. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2686. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2687. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2688. }
  2689. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2690. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2691. _content = $$("div", {
  2692. className: "U_MD_D_KO",
  2693. "onmousedown": U.UF.C.closure(function (obj) {
  2694. //防止拖动图标即打开了桌面应用
  2695. U.MD.D.click(this, obj);
  2696. }, [_dseiStudentDeskIconInfo[i]]),
  2697. "onclick": U.UF.C.closure(function (obj) {
  2698. //防止拖动图标即打开了桌面应用
  2699. U.MD.D.click(this, obj);
  2700. }, [_dseiStudentDeskIconInfo[i]])
  2701. }, _frag); //
  2702. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2703. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2704. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2705. }
  2706. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2707. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2708. _content = $$("div", {
  2709. className: "U_MD_D_KO",
  2710. "onmousedown": U.UF.C.closure(function (obj) {
  2711. //防止拖动图标即打开了桌面应用
  2712. U.MD.D.click(this, obj);
  2713. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2714. "onclick": U.UF.C.closure(function (obj) {
  2715. //防止拖动图标即打开了桌面应用
  2716. U.MD.D.click(this, obj);
  2717. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2718. }, _frag); //
  2719. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2720. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2721. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2722. }
  2723. } else if (_type == 2 && (_org == "7cc601a0-fafc-4116-a805-0adbacf7a38d")) {
  2724. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2725. _content = $$("div", {
  2726. className: "U_MD_D_KO",
  2727. "onmousedown": U.UF.C.closure(function (obj) {
  2728. //防止拖动图标即打开了桌面应用
  2729. U.MD.D.click(this, obj);
  2730. }, [_nsfxStudentDeskIconInfo[i]]),
  2731. "onclick": U.UF.C.closure(function (obj) {
  2732. //防止拖动图标即打开了桌面应用
  2733. U.MD.D.click(this, obj);
  2734. }, [_nsfxStudentDeskIconInfo[i]])
  2735. }, _frag); //
  2736. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2737. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2738. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2739. }
  2740. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2741. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2742. _content = $$("div", {
  2743. className: "U_MD_D_KO",
  2744. "onmousedown": U.UF.C.closure(function (obj) {
  2745. //防止拖动图标即打开了桌面应用
  2746. U.MD.D.click(this, obj);
  2747. }, [_stiaStudentDeskIconInfo[i]]),
  2748. "onclick": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_stiaStudentDeskIconInfo[i]])
  2752. }, _frag); //
  2753. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2754. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2755. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2756. }
  2757. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2758. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2759. _content = $$("div", {
  2760. className: "U_MD_D_KO",
  2761. "onmousedown": U.UF.C.closure(function (obj) {
  2762. //防止拖动图标即打开了桌面应用
  2763. U.MD.D.click(this, obj);
  2764. }, [_szdjgStudentDeskIconInfo[i]]),
  2765. "onclick": U.UF.C.closure(function (obj) {
  2766. //防止拖动图标即打开了桌面应用
  2767. U.MD.D.click(this, obj);
  2768. }, [_szdjgStudentDeskIconInfo[i]])
  2769. }, _frag); //
  2770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2773. }
  2774. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2775. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2776. _content = $$("div", {
  2777. className: "U_MD_D_KO",
  2778. "onmousedown": U.UF.C.closure(function (obj) {
  2779. //防止拖动图标即打开了桌面应用
  2780. U.MD.D.click(this, obj);
  2781. }, [_x010607StudentDeskIconInfo[i]]),
  2782. "onclick": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_x010607StudentDeskIconInfo[i]])
  2786. }, _frag); //
  2787. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2788. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2789. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2790. }
  2791. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2792. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2793. _content = $$("div", {
  2794. className: "U_MD_D_KO",
  2795. "onmousedown": U.UF.C.closure(function (obj) {
  2796. //防止拖动图标即打开了桌面应用
  2797. U.MD.D.click(this, obj);
  2798. }, [_xhlyStudentDeskIconInfo[i]]),
  2799. "onclick": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_xhlyStudentDeskIconInfo[i]])
  2803. }, _frag); //
  2804. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2805. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2806. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2807. }
  2808. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2809. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2810. _content = $$("div", {
  2811. className: "U_MD_D_KO",
  2812. "onmousedown": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2816. "onclick": U.UF.C.closure(function (obj) {
  2817. //防止拖动图标即打开了桌面应用
  2818. U.MD.D.click(this, obj);
  2819. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2820. }, _frag); //
  2821. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2822. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2823. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2824. }
  2825. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2826. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2827. _content = $$("div", {
  2828. className: "U_MD_D_KO",
  2829. "onmousedown": U.UF.C.closure(function (obj) {
  2830. //防止拖动图标即打开了桌面应用
  2831. U.MD.D.click(this, obj);
  2832. }, [_x010503StudentDeskIconInfo[i]]),
  2833. "onclick": U.UF.C.closure(function (obj) {
  2834. //防止拖动图标即打开了桌面应用
  2835. U.MD.D.click(this, obj);
  2836. }, [_x010503StudentDeskIconInfo[i]])
  2837. }, _frag); //
  2838. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2839. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2840. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2841. }
  2842. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  2843. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2844. _content = $$("div", {
  2845. className: "U_MD_D_KO",
  2846. "onmousedown": U.UF.C.closure(function (obj) {
  2847. //防止拖动图标即打开了桌面应用
  2848. U.MD.D.click(this, obj);
  2849. }, [_x010504StudentDeskIconInfo[i]]),
  2850. "onclick": U.UF.C.closure(function (obj) {
  2851. //防止拖动图标即打开了桌面应用
  2852. U.MD.D.click(this, obj);
  2853. }, [_x010504StudentDeskIconInfo[i]])
  2854. }, _frag); //
  2855. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2856. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2857. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2858. }
  2859. } else if (_type == 2 && (_oid == "8406b214-085f-11f0-b508-005056924926")) {
  2860. for (i = 0; i < _x010505StudentDeskIconInfo.length; i++) {
  2861. _content = $$("div", {
  2862. className: "U_MD_D_KO",
  2863. "onmousedown": U.UF.C.closure(function (obj) {
  2864. //防止拖动图标即打开了桌面应用
  2865. U.MD.D.click(this, obj);
  2866. }, [_x010505StudentDeskIconInfo[i]]),
  2867. "onclick": U.UF.C.closure(function (obj) {
  2868. //防止拖动图标即打开了桌面应用
  2869. U.MD.D.click(this, obj);
  2870. }, [_x010505StudentDeskIconInfo[i]])
  2871. }, _frag); //
  2872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505StudentDeskIconInfo[i].style }, _iconcontent);
  2874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505StudentDeskIconInfo[i].Name }, _iconcontent);
  2875. }
  2876. } else if (_type == 2 && (_oid == "bc239322-ffb2-11ef-b508-005056924926")) {
  2877. for (i = 0; i < _x010404StudentDeskIconInfo.length; i++) {
  2878. _content = $$("div", {
  2879. className: "U_MD_D_KO",
  2880. "onmousedown": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_x010404StudentDeskIconInfo[i]]),
  2884. "onclick": U.UF.C.closure(function (obj) {
  2885. //防止拖动图标即打开了桌面应用
  2886. U.MD.D.click(this, obj);
  2887. }, [_x010404StudentDeskIconInfo[i]])
  2888. }, _frag); //
  2889. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2890. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404StudentDeskIconInfo[i].style }, _iconcontent);
  2891. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404StudentDeskIconInfo[i].Name }, _iconcontent);
  2892. }
  2893. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2894. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2895. _content = $$("div", {
  2896. className: "U_MD_D_KO",
  2897. "onmousedown": U.UF.C.closure(function (obj) {
  2898. //防止拖动图标即打开了桌面应用
  2899. U.MD.D.click(this, obj);
  2900. }, [_x010204StudentDeskIconInfo[i]]),
  2901. "onclick": U.UF.C.closure(function (obj) {
  2902. //防止拖动图标即打开了桌面应用
  2903. U.MD.D.click(this, obj);
  2904. }, [_x010204StudentDeskIconInfo[i]])
  2905. }, _frag); //
  2906. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2907. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2908. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2909. }
  2910. } else if (_type == 2 && (_oid == "2c5d4971-ed9e-11ef-b508-005056924926")) {
  2911. for (i = 0; i < _x320101StudentDeskIconInfo.length; i++) {
  2912. _content = $$("div", {
  2913. className: "U_MD_D_KO",
  2914. "onmousedown": U.UF.C.closure(function (obj) {
  2915. //防止拖动图标即打开了桌面应用
  2916. U.MD.D.click(this, obj);
  2917. }, [_x320101StudentDeskIconInfo[i]]),
  2918. "onclick": U.UF.C.closure(function (obj) {
  2919. //防止拖动图标即打开了桌面应用
  2920. U.MD.D.click(this, obj);
  2921. }, [_x320101StudentDeskIconInfo[i]])
  2922. }, _frag); //
  2923. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2924. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101StudentDeskIconInfo[i].style }, _iconcontent);
  2925. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101StudentDeskIconInfo[i].Name }, _iconcontent);
  2926. }
  2927. } else if (_type == 2 && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  2928. for (i = 0; i < _MOAIStudentDeskIcon.length; i++) {
  2929. _content = $$("div", {
  2930. className: "U_MD_D_KO",
  2931. "onmousedown": U.UF.C.closure(function (obj) {
  2932. //防止拖动图标即打开了桌面应用
  2933. U.MD.D.click(this, obj);
  2934. }, [_MOAIStudentDeskIcon[i]]),
  2935. "onclick": U.UF.C.closure(function (obj) {
  2936. //防止拖动图标即打开了桌面应用
  2937. U.MD.D.click(this, obj);
  2938. }, [_MOAIStudentDeskIcon[i]])
  2939. }, _frag); //
  2940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAIStudentDeskIcon[i].style }, _iconcontent);
  2942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAIStudentDeskIcon[i].Name }, _iconcontent);
  2943. }
  2944. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2945. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2946. _content = $$("div", {
  2947. className: "U_MD_D_KO",
  2948. "onmousedown": U.UF.C.closure(function (obj) {
  2949. //防止拖动图标即打开了桌面应用
  2950. U.MD.D.click(this, obj);
  2951. }, [_trailStudentDeskIconInfo[i]]),
  2952. "onclick": U.UF.C.closure(function (obj) {
  2953. //防止拖动图标即打开了桌面应用
  2954. U.MD.D.click(this, obj);
  2955. }, [_trailStudentDeskIconInfo[i]])
  2956. }, _frag); //
  2957. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2958. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2959. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2960. }
  2961. } else if (_type == 2 && (_oid == "65ad80f0-16bb-11f0-a66a-005056924926")) {
  2962. for (i = 0; i < _trialStudentDeskIconInfo.length; i++) {
  2963. _content = $$("div", {
  2964. className: "U_MD_D_KO",
  2965. "onmousedown": U.UF.C.closure(function (obj) {
  2966. //防止拖动图标即打开了桌面应用
  2967. U.MD.D.click(this, obj);
  2968. }, [_trialStudentDeskIconInfo[i]]),
  2969. "onclick": U.UF.C.closure(function (obj) {
  2970. //防止拖动图标即打开了桌面应用
  2971. U.MD.D.click(this, obj);
  2972. }, [_trialStudentDeskIconInfo[i]])
  2973. }, _frag); //
  2974. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2975. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialStudentDeskIconInfo[i].style }, _iconcontent);
  2976. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialStudentDeskIconInfo[i].Name }, _iconcontent);
  2977. }
  2978. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2979. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2980. _content = $$("div", {
  2981. className: "U_MD_D_KO",
  2982. "onmousedown": U.UF.C.closure(function (obj) {
  2983. //防止拖动图标即打开了桌面应用
  2984. U.MD.D.click(this, obj);
  2985. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2986. "onclick": U.UF.C.closure(function (obj) {
  2987. //防止拖动图标即打开了桌面应用
  2988. U.MD.D.click(this, obj);
  2989. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2990. }, _frag); //
  2991. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2992. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2993. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2994. }
  2995. } else if (_type == 2 && (_org == "c8266c04-59e3-44de-bcf2-8f906e66e636")) {
  2996. for (i = 0; i < _szsyStudentDeskIconInfo.length; i++) {
  2997. _content = $$("div", {
  2998. className: "U_MD_D_KO",
  2999. "onmousedown": U.UF.C.closure(function (obj) {
  3000. //防止拖动图标即打开了桌面应用
  3001. U.MD.D.click(this, obj);
  3002. }, [_szsyStudentDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_szsyStudentDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyStudentDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyStudentDeskIconInfo[i].Name }, _iconcontent);
  3011. }
  3012. } else if (_type == 2 && (_org == "eed08ac6-7269-11f0-9c7b-005056924926")) {
  3013. for (i = 0; i < _PREPAIStudentDeskIcon.length; i++) {
  3014. _content = $$("div", {
  3015. className: "U_MD_D_KO",
  3016. "onmousedown": U.UF.C.closure(function (obj) {
  3017. //防止拖动图标即打开了桌面应用
  3018. U.MD.D.click(this, obj);
  3019. }, [_PREPAIStudentDeskIcon[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_PREPAIStudentDeskIcon[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAIStudentDeskIcon[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAIStudentDeskIcon[i].Name }, _iconcontent);
  3028. }
  3029. } else if (_type == 2 && (_oid == "17dbf412-92de-11f0-9838-005056924926")) {
  3030. for (i = 0; i < _x010511StudentDeskIcon.length; i++) {
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_x010511StudentDeskIcon[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_x010511StudentDeskIcon[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511StudentDeskIcon[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511StudentDeskIcon[i].Name }, _iconcontent);
  3045. }
  3046. } else if (_type == 2 && (_oid == "31631344-92db-11f0-9838-005056924926")) {
  3047. for (i = 0; i < _x010103StudentDeskIcon.length; i++) {
  3048. _content = $$("div", {
  3049. className: "U_MD_D_KO",
  3050. "onmousedown": U.UF.C.closure(function (obj) {
  3051. //防止拖动图标即打开了桌面应用
  3052. U.MD.D.click(this, obj);
  3053. }, [_x010103StudentDeskIcon[i]]),
  3054. "onclick": U.UF.C.closure(function (obj) {
  3055. //防止拖动图标即打开了桌面应用
  3056. U.MD.D.click(this, obj);
  3057. }, [_x010103StudentDeskIcon[i]])
  3058. }, _frag); //
  3059. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3060. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103StudentDeskIcon[i].style }, _iconcontent);
  3061. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103StudentDeskIcon[i].Name }, _iconcontent);
  3062. }
  3063. } else if (_type == 2 && (_org == "cf30095b-87d5-11f0-9c7b-005056924926")) {
  3064. for (i = 0; i < _zlstudentDeskIconInfo.length; i++) {
  3065. _content = $$("div", {
  3066. className: "U_MD_D_KO",
  3067. "onmousedown": U.UF.C.closure(function (obj) {
  3068. //防止拖动图标即打开了桌面应用
  3069. U.MD.D.click(this, obj);
  3070. }, [_zlstudentDeskIconInfo[i]]),
  3071. "onclick": U.UF.C.closure(function (obj) {
  3072. //防止拖动图标即打开了桌面应用
  3073. U.MD.D.click(this, obj);
  3074. }, [_zlstudentDeskIconInfo[i]])
  3075. }, _frag); //
  3076. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3077. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlstudentDeskIconInfo[i].style }, _iconcontent);
  3078. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlstudentDeskIconInfo[i].Name }, _iconcontent);
  3079. }
  3080. } else if (_type == 2 && (_org == "eaee75a4-ff2e-11ef-b508-005056924926")) {
  3081. for (i = 0; i < _demoCocoStudentDeskIconInfo.length; i++) {
  3082. _content = $$("div", {
  3083. className: "U_MD_D_KO",
  3084. "onmousedown": U.UF.C.closure(function (obj) {
  3085. //防止拖动图标即打开了桌面应用
  3086. U.MD.D.click(this, obj);
  3087. }, [_demoCocoStudentDeskIconInfo[i]]),
  3088. "onclick": U.UF.C.closure(function (obj) {
  3089. //防止拖动图标即打开了桌面应用
  3090. U.MD.D.click(this, obj);
  3091. }, [_demoCocoStudentDeskIconInfo[i]])
  3092. }, _frag); //
  3093. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3094. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoStudentDeskIconInfo[i].style }, _iconcontent);
  3095. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoStudentDeskIconInfo[i].Name }, _iconcontent);
  3096. }
  3097. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  3098. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  3099. _content = $$("div", {
  3100. className: "U_MD_D_KO",
  3101. "onmousedown": U.UF.C.closure(function (obj) {
  3102. //防止拖动图标即打开了桌面应用
  3103. U.MD.D.click(this, obj);
  3104. }, [_x010608StudentDeskIconInfo[i]]),
  3105. "onclick": U.UF.C.closure(function (obj) {
  3106. //防止拖动图标即打开了桌面应用
  3107. U.MD.D.click(this, obj);
  3108. }, [_x010608StudentDeskIconInfo[i]])
  3109. }, _frag); //
  3110. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3111. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  3112. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  3113. }
  3114. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  3115. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  3116. _content = $$("div", {
  3117. className: "U_MD_D_KO",
  3118. "onmousedown": U.UF.C.closure(function (obj) {
  3119. //防止拖动图标即打开了桌面应用
  3120. U.MD.D.click(this, obj);
  3121. }, [_x010611StudentDeskIconInfo[i]]),
  3122. "onclick": U.UF.C.closure(function (obj) {
  3123. //防止拖动图标即打开了桌面应用
  3124. U.MD.D.click(this, obj);
  3125. }, [_x010611StudentDeskIconInfo[i]])
  3126. }, _frag); //
  3127. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3128. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  3129. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  3130. }
  3131. } else if (_type == 2 && (_oid == "86fa8cd7-00c2-11f0-b508-005056924926")) {
  3132. for (i = 0; i < _x010612StudentDeskIconInfo.length; i++) {
  3133. _content = $$("div", {
  3134. className: "U_MD_D_KO",
  3135. "onmousedown": U.UF.C.closure(function (obj) {
  3136. //防止拖动图标即打开了桌面应用
  3137. U.MD.D.click(this, obj);
  3138. }, [_x010612StudentDeskIconInfo[i]]),
  3139. "onclick": U.UF.C.closure(function (obj) {
  3140. //防止拖动图标即打开了桌面应用
  3141. U.MD.D.click(this, obj);
  3142. }, [_x010612StudentDeskIconInfo[i]])
  3143. }, _frag); //
  3144. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3145. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612StudentDeskIconInfo[i].style }, _iconcontent);
  3146. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612StudentDeskIconInfo[i].Name }, _iconcontent);
  3147. }
  3148. } else if (_type == 2 && (_org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc")) {
  3149. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  3150. _content = $$("div", {
  3151. className: "U_MD_D_KO",
  3152. "onmousedown": U.UF.C.closure(function (obj) {
  3153. //防止拖动图标即打开了桌面应用
  3154. U.MD.D.click(this, obj);
  3155. }, [_tianyuantudentDeskIconInfo[i]]),
  3156. "onclick": U.UF.C.closure(function (obj) {
  3157. //防止拖动图标即打开了桌面应用
  3158. U.MD.D.click(this, obj);
  3159. }, [_tianyuantudentDeskIconInfo[i]])
  3160. }, _frag); //
  3161. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3162. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  3163. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  3164. }
  3165. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3166. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  3167. _content = $$("div", {
  3168. className: "U_MD_D_KO",
  3169. "onmousedown": U.UF.C.closure(function (obj) {
  3170. //防止拖动图标即打开了桌面应用
  3171. U.MD.D.click(this, obj);
  3172. }, [_siesStudentDeskIconInfo[i]]),
  3173. "onclick": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_siesStudentDeskIconInfo[i]])
  3177. }, _frag); //
  3178. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3179. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  3180. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  3181. }
  3182. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3183. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  3184. _content = $$("div", {
  3185. className: "U_MD_D_KO",
  3186. "onmousedown": U.UF.C.closure(function (obj) {
  3187. //防止拖动图标即打开了桌面应用
  3188. U.MD.D.click(this, obj);
  3189. }, [_guzmsStudentDeskIconInfo[i]]),
  3190. "onclick": U.UF.C.closure(function (obj) {
  3191. //防止拖动图标即打开了桌面应用
  3192. U.MD.D.click(this, obj);
  3193. }, [_guzmsStudentDeskIconInfo[i]])
  3194. }, _frag); //
  3195. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3196. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  3197. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  3198. }
  3199. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3200. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  3201. _content = $$("div", {
  3202. className: "U_MD_D_KO",
  3203. "onmousedown": U.UF.C.closure(function (obj) {
  3204. //防止拖动图标即打开了桌面应用
  3205. U.MD.D.click(this, obj);
  3206. }, [_hkStudentDeskIconInfo[i]]),
  3207. "onclick": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_hkStudentDeskIconInfo[i]])
  3211. }, _frag); //
  3212. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3213. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  3214. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  3215. }
  3216. } else if (_type == 2 && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3217. for (i = 0; i < _tycyStudentDeskIconInfo.length; i++) {
  3218. _content = $$("div", {
  3219. className: "U_MD_D_KO",
  3220. "onmousedown": U.UF.C.closure(function (obj) {
  3221. //防止拖动图标即打开了桌面应用
  3222. U.MD.D.click(this, obj);
  3223. }, [_tycyStudentDeskIconInfo[i]]),
  3224. "onclick": U.UF.C.closure(function (obj) {
  3225. //防止拖动图标即打开了桌面应用
  3226. U.MD.D.click(this, obj);
  3227. }, [_tycyStudentDeskIconInfo[i]])
  3228. }, _frag); //
  3229. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3230. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyStudentDeskIconInfo[i].style }, _iconcontent);
  3231. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyStudentDeskIconInfo[i].Name }, _iconcontent);
  3232. }
  3233. } else if (_type == 2 && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3234. for (i = 0; i < _ckcpsStudentDeskIconInfo.length; i++) {
  3235. _content = $$("div", {
  3236. className: "U_MD_D_KO",
  3237. "onmousedown": U.UF.C.closure(function (obj) {
  3238. //防止拖动图标即打开了桌面应用
  3239. U.MD.D.click(this, obj);
  3240. }, [_ckcpsStudentDeskIconInfo[i]]),
  3241. "onclick": U.UF.C.closure(function (obj) {
  3242. //防止拖动图标即打开了桌面应用
  3243. U.MD.D.click(this, obj);
  3244. }, [_ckcpsStudentDeskIconInfo[i]])
  3245. }, _frag); //
  3246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsStudentDeskIconInfo[i].style }, _iconcontent);
  3248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsStudentDeskIconInfo[i].Name }, _iconcontent);
  3249. }
  3250. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3251. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  3252. _content = $$("div", {
  3253. className: "U_MD_D_KO",
  3254. "onmousedown": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_hkaceStudentDeskIconInfo[i]]),
  3258. "onclick": U.UF.C.closure(function (obj) {
  3259. //防止拖动图标即打开了桌面应用
  3260. U.MD.D.click(this, obj);
  3261. }, [_hkaceStudentDeskIconInfo[i]])
  3262. }, _frag); //
  3263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  3265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  3266. }
  3267. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  3268. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  3269. _content = $$("div", {
  3270. className: "U_MD_D_KO",
  3271. "onmousedown": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_BSDNSstudentDesktopIconInfo[i]]),
  3275. "onclick": U.UF.C.closure(function (obj) {
  3276. //防止拖动图标即打开了桌面应用
  3277. U.MD.D.click(this, obj);
  3278. }, [_BSDNSstudentDesktopIconInfo[i]])
  3279. }, _frag); //
  3280. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3281. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  3282. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  3283. }
  3284. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3285. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  3286. _content = $$("div", {
  3287. className: "U_MD_D_KO",
  3288. "onmousedown": U.UF.C.closure(function (obj) {
  3289. //防止拖动图标即打开了桌面应用
  3290. U.MD.D.click(this, obj);
  3291. }, [_cocobizStudentDeskIconInfo[i]]),
  3292. "onclick": U.UF.C.closure(function (obj) {
  3293. //防止拖动图标即打开了桌面应用
  3294. U.MD.D.click(this, obj);
  3295. }, [_cocobizStudentDeskIconInfo[i]])
  3296. }, _frag); //
  3297. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3298. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  3299. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  3300. }
  3301. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3302. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  3303. _content = $$("div", {
  3304. className: "U_MD_D_KO",
  3305. "onmousedown": U.UF.C.closure(function (obj) {
  3306. //防止拖动图标即打开了桌面应用
  3307. U.MD.D.click(this, obj);
  3308. }, [_xxzjkyStudentDeskIconInfo[i]]),
  3309. "onclick": U.UF.C.closure(function (obj) {
  3310. //防止拖动图标即打开了桌面应用
  3311. U.MD.D.click(this, obj);
  3312. }, [_xxzjkyStudentDeskIconInfo[i]])
  3313. }, _frag); //
  3314. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3315. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  3316. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  3317. }
  3318. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  3319. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  3320. _content = $$("div", {
  3321. className: "U_MD_D_KO",
  3322. "onmousedown": U.UF.C.closure(function (obj) {
  3323. //防止拖动图标即打开了桌面应用
  3324. U.MD.D.click(this, obj);
  3325. }, [_studentDesktopIconInfo[i]]),
  3326. "onclick": U.UF.C.closure(function (obj) {
  3327. //防止拖动图标即打开了桌面应用
  3328. U.MD.D.click(this, obj);
  3329. }, [_studentDesktopIconInfo[i]])
  3330. }, _frag); //
  3331. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3332. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  3333. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  3334. }
  3335. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  3336. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  3337. _content = $$("div", {
  3338. className: "U_MD_D_KO",
  3339. "onmousedown": U.UF.C.closure(function (obj) {
  3340. //防止拖动图标即打开了桌面应用
  3341. U.MD.D.click(this, obj);
  3342. }, [_tcStudentDeskIconInfo[i]]),
  3343. "onclick": U.UF.C.closure(function (obj) {
  3344. //防止拖动图标即打开了桌面应用
  3345. U.MD.D.click(this, obj);
  3346. }, [_tcStudentDeskIconInfo[i]])
  3347. }, _frag); //
  3348. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3349. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  3350. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  3351. }
  3352. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  3353. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  3354. _content = $$("div", {
  3355. className: "U_MD_D_KO",
  3356. "onmousedown": U.UF.C.closure(function (obj) {
  3357. //防止拖动图标即打开了桌面应用
  3358. U.MD.D.click(this, obj);
  3359. }, [_szscStudentDeskIconInfo[i]]),
  3360. "onclick": U.UF.C.closure(function (obj) {
  3361. //防止拖动图标即打开了桌面应用
  3362. U.MD.D.click(this, obj);
  3363. }, [_szscStudentDeskIconInfo[i]])
  3364. }, _frag); //
  3365. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3366. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  3367. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  3368. }
  3369. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  3370. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  3371. _content = $$("div", {
  3372. className: "U_MD_D_KO",
  3373. "onmousedown": U.UF.C.closure(function (obj) {
  3374. //防止拖动图标即打开了桌面应用
  3375. U.MD.D.click(this, obj);
  3376. }, [_studentDesktopIconInfo3[i]]),
  3377. "onclick": U.UF.C.closure(function (obj) {
  3378. //防止拖动图标即打开了桌面应用
  3379. U.MD.D.click(this, obj);
  3380. }, [_studentDesktopIconInfo3[i]])
  3381. }, _frag); //
  3382. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3383. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  3384. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  3385. }
  3386. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1 || liyuanOrg.indexOf(_org) != -1)) {
  3387. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  3388. _content = $$("div", {
  3389. className: "U_MD_D_KO",
  3390. "onmousedown": U.UF.C.closure(function (obj) {
  3391. //防止拖动图标即打开了桌面应用
  3392. U.MD.D.click(this, obj);
  3393. }, [_studentDesktopIconInfo2[i]]),
  3394. "onclick": U.UF.C.closure(function (obj) {
  3395. //防止拖动图标即打开了桌面应用
  3396. U.MD.D.click(this, obj);
  3397. }, [_studentDesktopIconInfo2[i]])
  3398. }, _frag); //
  3399. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3400. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  3401. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  3402. }
  3403. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  3404. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  3405. if (_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher') {
  3406. continue
  3407. }
  3408. _content = $$("div", {
  3409. className: "U_MD_D_KO",
  3410. "onmousedown": U.UF.C.closure(function (obj) {
  3411. //防止拖动图标即打开了桌面应用
  3412. U.MD.D.click(this, obj);
  3413. }, [_wanketeacherDesktopIconInfo[i]]),
  3414. "onclick": U.UF.C.closure(function (obj) {
  3415. //防止拖动图标即打开了桌面应用
  3416. U.MD.D.click(this, obj);
  3417. }, [_wanketeacherDesktopIconInfo[i]])
  3418. }, _frag); //
  3419. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3420. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  3421. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  3422. }
  3423. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  3424. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  3425. _content = $$("div", {
  3426. className: "U_MD_D_KO",
  3427. "onmousedown": U.UF.C.closure(function (obj) {
  3428. //防止拖动图标即打开了桌面应用
  3429. U.MD.D.click(this, obj);
  3430. }, [_wankeAdminDesktopIconInfo[i]]),
  3431. "onclick": U.UF.C.closure(function (obj) {
  3432. //防止拖动图标即打开了桌面应用
  3433. U.MD.D.click(this, obj);
  3434. }, [_wankeAdminDesktopIconInfo[i]])
  3435. }, _frag); //
  3436. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3437. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  3438. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  3439. }
  3440. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  3441. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  3442. if (_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3443. continue
  3444. }
  3445. _content = $$("div", {
  3446. className: "U_MD_D_KO",
  3447. "onmousedown": U.UF.C.closure(function (obj) {
  3448. //防止拖动图标即打开了桌面应用
  3449. U.MD.D.click(this, obj);
  3450. }, [_scnuaiTeacherDeskIconInfo[i]]),
  3451. "onclick": U.UF.C.closure(function (obj) {
  3452. //防止拖动图标即打开了桌面应用
  3453. U.MD.D.click(this, obj);
  3454. }, [_scnuaiTeacherDeskIconInfo[i]])
  3455. }, _frag); //
  3456. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3457. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3458. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3459. }
  3460. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  3461. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  3462. if (_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher') {
  3463. continue
  3464. }
  3465. _content = $$("div", {
  3466. className: "U_MD_D_KO",
  3467. "onmousedown": U.UF.C.closure(function (obj) {
  3468. //防止拖动图标即打开了桌面应用
  3469. U.MD.D.click(this, obj);
  3470. }, [_BSDNSteacherDesktopIconInfo[i]]),
  3471. "onclick": U.UF.C.closure(function (obj) {
  3472. //防止拖动图标即打开了桌面应用
  3473. U.MD.D.click(this, obj);
  3474. }, [_BSDNSteacherDesktopIconInfo[i]])
  3475. }, _frag); //
  3476. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3477. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  3478. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  3479. }
  3480. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  3481. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  3482. _content = $$("div", {
  3483. className: "U_MD_D_KO",
  3484. "onmousedown": U.UF.C.closure(function (obj) {
  3485. //防止拖动图标即打开了桌面应用
  3486. U.MD.D.click(this, obj);
  3487. }, [_scnuaiAdminDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_scnuaiAdminDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  3498. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  3499. if (_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3500. continue
  3501. }
  3502. _content = $$("div", {
  3503. className: "U_MD_D_KO",
  3504. "onmousedown": U.UF.C.closure(function (obj) {
  3505. //防止拖动图标即打开了桌面应用
  3506. U.MD.D.click(this, obj);
  3507. }, [_jccssylTeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_jccssylTeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  3518. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  3519. if (_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3520. continue
  3521. }
  3522. _content = $$("div", {
  3523. className: "U_MD_D_KO",
  3524. "onmousedown": U.UF.C.closure(function (obj) {
  3525. //防止拖动图标即打开了桌面应用
  3526. U.MD.D.click(this, obj);
  3527. }, [_caleTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_caleTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  3538. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  3539. _content = $$("div", {
  3540. className: "U_MD_D_KO",
  3541. "onmousedown": U.UF.C.closure(function (obj) {
  3542. //防止拖动图标即打开了桌面应用
  3543. U.MD.D.click(this, obj);
  3544. }, [_tpcOrganizerDeskIconInfo[i]]),
  3545. "onclick": U.UF.C.closure(function (obj) {
  3546. //防止拖动图标即打开了桌面应用
  3547. U.MD.D.click(this, obj);
  3548. }, [_tpcOrganizerDeskIconInfo[i]])
  3549. }, _frag); //
  3550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3553. }
  3554. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  3555. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  3556. if (_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3557. continue
  3558. }
  3559. _content = $$("div", {
  3560. className: "U_MD_D_KO",
  3561. "onmousedown": U.UF.C.closure(function (obj) {
  3562. //防止拖动图标即打开了桌面应用
  3563. U.MD.D.click(this, obj);
  3564. }, [_tpcTeacherDeskIconInfo[i]]),
  3565. "onclick": U.UF.C.closure(function (obj) {
  3566. //防止拖动图标即打开了桌面应用
  3567. U.MD.D.click(this, obj);
  3568. }, [_tpcTeacherDeskIconInfo[i]])
  3569. }, _frag); //
  3570. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3571. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  3572. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3573. }
  3574. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  3575. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  3576. if (_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher') {
  3577. continue
  3578. }
  3579. _content = $$("div", {
  3580. className: "U_MD_D_KO",
  3581. "onmousedown": U.UF.C.closure(function (obj) {
  3582. //防止拖动图标即打开了桌面应用
  3583. U.MD.D.click(this, obj);
  3584. }, [_teacherDesktopIconInfo2[i]]),
  3585. "onclick": U.UF.C.closure(function (obj) {
  3586. //防止拖动图标即打开了桌面应用
  3587. U.MD.D.click(this, obj);
  3588. }, [_teacherDesktopIconInfo2[i]])
  3589. }, _frag); //
  3590. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3591. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  3592. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  3593. }
  3594. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  3595. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  3596. if (_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3597. continue
  3598. }
  3599. _content = $$("div", {
  3600. className: "U_MD_D_KO",
  3601. "onmousedown": U.UF.C.closure(function (obj) {
  3602. //防止拖动图标即打开了桌面应用
  3603. U.MD.D.click(this, obj);
  3604. }, [_thuioeTeacherDeskIconInfo[i]]),
  3605. "onclick": U.UF.C.closure(function (obj) {
  3606. //防止拖动图标即打开了桌面应用
  3607. U.MD.D.click(this, obj);
  3608. }, [_thuioeTeacherDeskIconInfo[i]])
  3609. }, _frag); //
  3610. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3611. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  3612. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  3613. }
  3614. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  3615. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  3616. if (_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3617. continue
  3618. }
  3619. _content = $$("div", {
  3620. className: "U_MD_D_KO",
  3621. "onmousedown": U.UF.C.closure(function (obj) {
  3622. //防止拖动图标即打开了桌面应用
  3623. U.MD.D.click(this, obj);
  3624. }, [_lotechTeacherDeskIconInfo[i]]),
  3625. "onclick": U.UF.C.closure(function (obj) {
  3626. //防止拖动图标即打开了桌面应用
  3627. U.MD.D.click(this, obj);
  3628. }, [_lotechTeacherDeskIconInfo[i]])
  3629. }, _frag); //
  3630. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3631. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3632. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3633. }//
  3634. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3635. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3636. if (_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3637. continue
  3638. }
  3639. _content = $$("div", {
  3640. className: "U_MD_D_KO",
  3641. "onmousedown": U.UF.C.closure(function (obj) {
  3642. //防止拖动图标即打开了桌面应用
  3643. U.MD.D.click(this, obj);
  3644. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3645. "onclick": U.UF.C.closure(function (obj) {
  3646. //防止拖动图标即打开了桌面应用
  3647. U.MD.D.click(this, obj);
  3648. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3649. }, _frag); //
  3650. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3651. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3652. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3653. }
  3654. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3655. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3656. if (_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies') {
  3657. continue
  3658. }
  3659. _content = $$("div", {
  3660. className: "U_MD_D_KO",
  3661. "onmousedown": U.UF.C.closure(function (obj) {
  3662. //防止拖动图标即打开了桌面应用
  3663. U.MD.D.click(this, obj);
  3664. }, [_siesTeacherDeskIconInfo[i]]),
  3665. "onclick": U.UF.C.closure(function (obj) {
  3666. //防止拖动图标即打开了桌面应用
  3667. U.MD.D.click(this, obj);
  3668. }, [_siesTeacherDeskIconInfo[i]])
  3669. }, _frag); //
  3670. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3671. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3672. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3673. }
  3674. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3675. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3676. if (_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3677. continue
  3678. }
  3679. _content = $$("div", {
  3680. className: "U_MD_D_KO",
  3681. "onmousedown": U.UF.C.closure(function (obj) {
  3682. //防止拖动图标即打开了桌面应用
  3683. U.MD.D.click(this, obj);
  3684. }, [_guzmsTeacherDeskIconInfo[i]]),
  3685. "onclick": U.UF.C.closure(function (obj) {
  3686. //防止拖动图标即打开了桌面应用
  3687. U.MD.D.click(this, obj);
  3688. }, [_guzmsTeacherDeskIconInfo[i]])
  3689. }, _frag); //
  3690. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3691. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3692. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3693. }
  3694. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3695. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3696. if (_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3697. continue
  3698. }
  3699. _content = $$("div", {
  3700. className: "U_MD_D_KO",
  3701. "onmousedown": U.UF.C.closure(function (obj) {
  3702. //防止拖动图标即打开了桌面应用
  3703. U.MD.D.click(this, obj);
  3704. }, [_longhuaTeacherDeskIconInfo[i]]),
  3705. "onclick": U.UF.C.closure(function (obj) {
  3706. //防止拖动图标即打开了桌面应用
  3707. U.MD.D.click(this, obj);
  3708. }, [_longhuaTeacherDeskIconInfo[i]])
  3709. }, _frag); //
  3710. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3711. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3712. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3713. }
  3714. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3715. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3716. if (_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3717. continue
  3718. }
  3719. _content = $$("div", {
  3720. className: "U_MD_D_KO",
  3721. "onmousedown": U.UF.C.closure(function (obj) {
  3722. //防止拖动图标即打开了桌面应用
  3723. U.MD.D.click(this, obj);
  3724. }, [_ytyTeacherDeskIconInfo[i]]),
  3725. "onclick": U.UF.C.closure(function (obj) {
  3726. //防止拖动图标即打开了桌面应用
  3727. U.MD.D.click(this, obj);
  3728. }, [_ytyTeacherDeskIconInfo[i]])
  3729. }, _frag); //
  3730. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3731. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3732. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3733. }
  3734. } else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3735. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3736. if (_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3737. continue
  3738. }
  3739. _content = $$("div", {
  3740. className: "U_MD_D_KO",
  3741. "onmousedown": U.UF.C.closure(function (obj) {
  3742. //防止拖动图标即打开了桌面应用
  3743. U.MD.D.click(this, obj);
  3744. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3745. "onclick": U.UF.C.closure(function (obj) {
  3746. //防止拖动图标即打开了桌面应用
  3747. U.MD.D.click(this, obj);
  3748. }, [_yunhaiTeacherDeskIconInfo[i]])
  3749. }, _frag); //
  3750. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3751. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3752. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3753. } //_hkStudentDeskIconInfo
  3754. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3755. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3756. if (_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3757. continue
  3758. }
  3759. _content = $$("div", {
  3760. className: "U_MD_D_KO",
  3761. "onmousedown": U.UF.C.closure(function (obj) {
  3762. //防止拖动图标即打开了桌面应用
  3763. U.MD.D.click(this, obj);
  3764. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3765. "onclick": U.UF.C.closure(function (obj) {
  3766. //防止拖动图标即打开了桌面应用
  3767. U.MD.D.click(this, obj);
  3768. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3769. }, _frag); //
  3770. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3771. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3772. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3773. }
  3774. } else if ((_type == 1 || _type == 4) && (_oid == "91796dfb-8791-11ef-9b30-005056b86db5")) {
  3775. for (i = 0; i < _ricohTeacherDeskIconInfo.length; i++) {
  3776. if (_role === 0 && _ricohTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3777. continue
  3778. }
  3779. _content = $$("div", {
  3780. className: "U_MD_D_KO",
  3781. "onmousedown": U.UF.C.closure(function (obj) {
  3782. //防止拖动图标即打开了桌面应用
  3783. U.MD.D.click(this, obj);
  3784. }, [_ricohTeacherDeskIconInfo[i]]),
  3785. "onclick": U.UF.C.closure(function (obj) {
  3786. //防止拖动图标即打开了桌面应用
  3787. U.MD.D.click(this, obj);
  3788. }, [_ricohTeacherDeskIconInfo[i]])
  3789. }, _frag); //
  3790. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3791. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ricohTeacherDeskIconInfo[i].style }, _iconcontent);
  3792. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ricohTeacherDeskIconInfo[i].Name }, _iconcontent);
  3793. }
  3794. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3795. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3796. if (_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3797. continue
  3798. }
  3799. _content = $$("div", {
  3800. className: "U_MD_D_KO",
  3801. "onmousedown": U.UF.C.closure(function (obj) {
  3802. //防止拖动图标即打开了桌面应用
  3803. U.MD.D.click(this, obj);
  3804. }, [_hkTeacherDeskIconInfo[i]]),
  3805. "onclick": U.UF.C.closure(function (obj) {
  3806. //防止拖动图标即打开了桌面应用
  3807. U.MD.D.click(this, obj);
  3808. }, [_hkTeacherDeskIconInfo[i]])
  3809. }, _frag); //
  3810. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3811. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3812. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3813. }
  3814. } else if ((_type == 1 || _type == 4) && (_org == "62c166af-2f22-11f0-b60f-005056924926")) {
  3815. for (i = 0; i < _tycyTeacherDeskIconInfo.length; i++) {
  3816. if (_role === 0 && _tycyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3817. continue
  3818. }
  3819. _content = $$("div", {
  3820. className: "U_MD_D_KO",
  3821. "onmousedown": U.UF.C.closure(function (obj) {
  3822. //防止拖动图标即打开了桌面应用
  3823. U.MD.D.click(this, obj);
  3824. }, [_tycyTeacherDeskIconInfo[i]]),
  3825. "onclick": U.UF.C.closure(function (obj) {
  3826. //防止拖动图标即打开了桌面应用
  3827. U.MD.D.click(this, obj);
  3828. }, [_tycyTeacherDeskIconInfo[i]])
  3829. }, _frag); //
  3830. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3831. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tycyTeacherDeskIconInfo[i].style }, _iconcontent);
  3832. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tycyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3833. }
  3834. } else if ((_type == 1 || _type == 4) && (_oid == "9a8076a2-469a-11f0-b60f-005056924926")) {
  3835. for (i = 0; i < _ckcpsTeacherDeskIconInfo.length; i++) {
  3836. if (_role === 0 && _ckcpsTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3837. continue
  3838. }
  3839. _content = $$("div", {
  3840. className: "U_MD_D_KO",
  3841. "onmousedown": U.UF.C.closure(function (obj) {
  3842. //防止拖动图标即打开了桌面应用
  3843. U.MD.D.click(this, obj);
  3844. }, [_ckcpsTeacherDeskIconInfo[i]]),
  3845. "onclick": U.UF.C.closure(function (obj) {
  3846. //防止拖动图标即打开了桌面应用
  3847. U.MD.D.click(this, obj);
  3848. }, [_ckcpsTeacherDeskIconInfo[i]])
  3849. }, _frag); //
  3850. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3851. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ckcpsTeacherDeskIconInfo[i].style }, _iconcontent);
  3852. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ckcpsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3853. }
  3854. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3855. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3856. if (_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3857. continue
  3858. }
  3859. _content = $$("div", {
  3860. className: "U_MD_D_KO",
  3861. "onmousedown": U.UF.C.closure(function (obj) {
  3862. //防止拖动图标即打开了桌面应用
  3863. U.MD.D.click(this, obj);
  3864. }, [_hkaceTeacherDeskIconInfo[i]]),
  3865. "onclick": U.UF.C.closure(function (obj) {
  3866. //防止拖动图标即打开了桌面应用
  3867. U.MD.D.click(this, obj);
  3868. }, [_hkaceTeacherDeskIconInfo[i]])
  3869. }, _frag); //
  3870. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3871. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3872. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3873. }
  3874. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3875. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3876. if (_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3877. continue
  3878. }
  3879. _content = $$("div", {
  3880. className: "U_MD_D_KO",
  3881. "onmousedown": U.UF.C.closure(function (obj) {
  3882. //防止拖动图标即打开了桌面应用
  3883. U.MD.D.click(this, obj);
  3884. }, [_cocobizTeacherDeskIconInfo[i]]),
  3885. "onclick": U.UF.C.closure(function (obj) {
  3886. //防止拖动图标即打开了桌面应用
  3887. U.MD.D.click(this, obj);
  3888. }, [_cocobizTeacherDeskIconInfo[i]])
  3889. }, _frag); //
  3890. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3891. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3892. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3893. }
  3894. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3895. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3896. if (_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3897. continue
  3898. }
  3899. _content = $$("div", {
  3900. className: "U_MD_D_KO",
  3901. "onmousedown": U.UF.C.closure(function (obj) {
  3902. //防止拖动图标即打开了桌面应用
  3903. U.MD.D.click(this, obj);
  3904. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3905. "onclick": U.UF.C.closure(function (obj) {
  3906. //防止拖动图标即打开了桌面应用
  3907. U.MD.D.click(this, obj);
  3908. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3909. }, _frag); //
  3910. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3911. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3912. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3913. }
  3914. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3915. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3916. _content = $$("div", {
  3917. className: "U_MD_D_KO",
  3918. "onmousedown": U.UF.C.closure(function (obj) {
  3919. //防止拖动图标即打开了桌面应用
  3920. U.MD.D.click(this, obj);
  3921. }, [_gdjgAdminDeskIconInfo[i]]),
  3922. "onclick": U.UF.C.closure(function (obj) {
  3923. //防止拖动图标即打开了桌面应用
  3924. U.MD.D.click(this, obj);
  3925. }, [_gdjgAdminDeskIconInfo[i]])
  3926. }, _frag); //
  3927. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3928. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3929. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3930. }
  3931. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3932. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3933. if (_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3934. continue
  3935. }
  3936. _content = $$("div", {
  3937. className: "U_MD_D_KO",
  3938. "onmousedown": U.UF.C.closure(function (obj) {
  3939. //防止拖动图标即打开了桌面应用
  3940. U.MD.D.click(this, obj);
  3941. }, [_gdjgTeacherDeskIconInfo[i]]),
  3942. "onclick": U.UF.C.closure(function (obj) {
  3943. //防止拖动图标即打开了桌面应用
  3944. U.MD.D.click(this, obj);
  3945. }, [_gdjgTeacherDeskIconInfo[i]])
  3946. }, _frag); //
  3947. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3948. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3949. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3950. }
  3951. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3952. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3953. if (_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3954. continue
  3955. }
  3956. _content = $$("div", {
  3957. className: "U_MD_D_KO",
  3958. "onmousedown": U.UF.C.closure(function (obj) {
  3959. //防止拖动图标即打开了桌面应用
  3960. U.MD.D.click(this, obj);
  3961. }, [_szherTeacherDeskIconInfo[i]]),
  3962. "onclick": U.UF.C.closure(function (obj) {
  3963. //防止拖动图标即打开了桌面应用
  3964. U.MD.D.click(this, obj);
  3965. }, [_szherTeacherDeskIconInfo[i]])
  3966. }, _frag); //
  3967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3970. }
  3971. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3972. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  3973. _content = $$("div", {
  3974. className: "U_MD_D_KO",
  3975. "onmousedown": U.UF.C.closure(function (obj) {
  3976. //防止拖动图标即打开了桌面应用
  3977. U.MD.D.click(this, obj);
  3978. }, [_heyuannAdminDeskIconInfo[i]]),
  3979. "onclick": U.UF.C.closure(function (obj) {
  3980. //防止拖动图标即打开了桌面应用
  3981. U.MD.D.click(this, obj);
  3982. }, [_heyuannAdminDeskIconInfo[i]])
  3983. }, _frag); //
  3984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3987. }
  3988. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3989. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3990. if (_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  3991. continue
  3992. }
  3993. _content = $$("div", {
  3994. className: "U_MD_D_KO",
  3995. "onmousedown": U.UF.C.closure(function (obj) {
  3996. //防止拖动图标即打开了桌面应用
  3997. U.MD.D.click(this, obj);
  3998. }, [_heyuanTeacherDeskIconInfo[i]]),
  3999. "onclick": U.UF.C.closure(function (obj) {
  4000. //防止拖动图标即打开了桌面应用
  4001. U.MD.D.click(this, obj);
  4002. }, [_heyuanTeacherDeskIconInfo[i]])
  4003. }, _frag); //
  4004. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4005. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4006. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4007. } //
  4008. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  4009. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  4010. _content = $$("div", {
  4011. className: "U_MD_D_KO",
  4012. "onmousedown": U.UF.C.closure(function (obj) {
  4013. //防止拖动图标即打开了桌面应用
  4014. U.MD.D.click(this, obj);
  4015. }, [_dseiAdminDeskIconInfo[i]]),
  4016. "onclick": U.UF.C.closure(function (obj) {
  4017. //防止拖动图标即打开了桌面应用
  4018. U.MD.D.click(this, obj);
  4019. }, [_dseiAdminDeskIconInfo[i]])
  4020. }, _frag); //
  4021. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4022. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  4023. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  4024. }
  4025. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  4026. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  4027. if (_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4028. continue
  4029. }
  4030. _content = $$("div", {
  4031. className: "U_MD_D_KO",
  4032. "onmousedown": U.UF.C.closure(function (obj) {
  4033. //防止拖动图标即打开了桌面应用
  4034. U.MD.D.click(this, obj);
  4035. }, [_dseiTeacherDeskIconInfo[i]]),
  4036. "onclick": U.UF.C.closure(function (obj) {
  4037. //防止拖动图标即打开了桌面应用
  4038. U.MD.D.click(this, obj);
  4039. }, [_dseiTeacherDeskIconInfo[i]])
  4040. }, _frag); //
  4041. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4042. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  4043. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  4044. } //
  4045. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  4046. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  4047. _content = $$("div", {
  4048. className: "U_MD_D_KO",
  4049. "onmousedown": U.UF.C.closure(function (obj) {
  4050. //防止拖动图标即打开了桌面应用
  4051. U.MD.D.click(this, obj);
  4052. }, [_chjyjAdminDeskIconInfo[i]]),
  4053. "onclick": U.UF.C.closure(function (obj) {
  4054. //防止拖动图标即打开了桌面应用
  4055. U.MD.D.click(this, obj);
  4056. }, [_chjyjAdminDeskIconInfo[i]])
  4057. }, _frag); //
  4058. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4059. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  4060. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  4061. }//
  4062. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  4063. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  4064. if (_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4065. continue
  4066. }
  4067. _content = $$("div", {
  4068. className: "U_MD_D_KO",
  4069. "onmousedown": U.UF.C.closure(function (obj) {
  4070. //防止拖动图标即打开了桌面应用
  4071. U.MD.D.click(this, obj);
  4072. }, [_chjyjTeacherDeskIconInfo[i]]),
  4073. "onclick": U.UF.C.closure(function (obj) {
  4074. //防止拖动图标即打开了桌面应用
  4075. U.MD.D.click(this, obj);
  4076. }, [_chjyjTeacherDeskIconInfo[i]])
  4077. }, _frag); //
  4078. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4079. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  4080. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  4081. }
  4082. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  4083. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  4084. _content = $$("div", {
  4085. className: "U_MD_D_KO",
  4086. "onmousedown": U.UF.C.closure(function (obj) {
  4087. //防止拖动图标即打开了桌面应用
  4088. U.MD.D.click(this, obj);
  4089. }, [_szjkyAdminDeskIconInfo[i]]),
  4090. "onclick": U.UF.C.closure(function (obj) {
  4091. //防止拖动图标即打开了桌面应用
  4092. U.MD.D.click(this, obj);
  4093. }, [_szjkyAdminDeskIconInfo[i]])
  4094. }, _frag); //
  4095. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4096. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  4097. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  4098. }//
  4099. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  4100. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  4101. if (_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4102. continue
  4103. }
  4104. _content = $$("div", {
  4105. className: "U_MD_D_KO",
  4106. "onmousedown": U.UF.C.closure(function (obj) {
  4107. //防止拖动图标即打开了桌面应用
  4108. U.MD.D.click(this, obj);
  4109. }, [_szjkyTeacherDeskIconInfo[i]]),
  4110. "onclick": U.UF.C.closure(function (obj) {
  4111. //防止拖动图标即打开了桌面应用
  4112. U.MD.D.click(this, obj);
  4113. }, [_szjkyTeacherDeskIconInfo[i]])
  4114. }, _frag); //
  4115. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4116. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  4117. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4118. }
  4119. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  4120. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_x020201AdminDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_x020201AdminDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  4135. }//
  4136. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  4137. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  4138. if (_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_x020201TeacherDeskIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_x020201TeacherDeskIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  4157. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  4158. _content = $$("div", {
  4159. className: "U_MD_D_KO",
  4160. "onmousedown": U.UF.C.closure(function (obj) {
  4161. //防止拖动图标即打开了桌面应用
  4162. U.MD.D.click(this, obj);
  4163. }, [_SCNUETAdminDeskIconInfo[i]]),
  4164. "onclick": U.UF.C.closure(function (obj) {
  4165. //防止拖动图标即打开了桌面应用
  4166. U.MD.D.click(this, obj);
  4167. }, [_SCNUETAdminDeskIconInfo[i]])
  4168. }, _frag); //
  4169. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4170. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  4171. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  4172. }//
  4173. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  4174. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  4175. if (_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4176. continue
  4177. }
  4178. _content = $$("div", {
  4179. className: "U_MD_D_KO",
  4180. "onmousedown": U.UF.C.closure(function (obj) {
  4181. //防止拖动图标即打开了桌面应用
  4182. U.MD.D.click(this, obj);
  4183. }, [_SCNUETTeacherDeskIconInfo[i]]),
  4184. "onclick": U.UF.C.closure(function (obj) {
  4185. //防止拖动图标即打开了桌面应用
  4186. U.MD.D.click(this, obj);
  4187. }, [_SCNUETTeacherDeskIconInfo[i]])
  4188. }, _frag); //
  4189. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4190. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  4191. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  4192. }
  4193. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  4194. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  4195. _content = $$("div", {
  4196. className: "U_MD_D_KO",
  4197. "onmousedown": U.UF.C.closure(function (obj) {
  4198. //防止拖动图标即打开了桌面应用
  4199. U.MD.D.click(this, obj);
  4200. }, [_futianAdminDeskIconInfo[i]]),
  4201. "onclick": U.UF.C.closure(function (obj) {
  4202. //防止拖动图标即打开了桌面应用
  4203. U.MD.D.click(this, obj);
  4204. }, [_futianAdminDeskIconInfo[i]])
  4205. }, _frag); //
  4206. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4207. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  4208. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  4209. }
  4210. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  4211. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  4212. if (_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4213. continue
  4214. }
  4215. _content = $$("div", {
  4216. className: "U_MD_D_KO",
  4217. "onmousedown": U.UF.C.closure(function (obj) {
  4218. //防止拖动图标即打开了桌面应用
  4219. U.MD.D.click(this, obj);
  4220. }, [_futianTeacherDeskIconInfo[i]]),
  4221. "onclick": U.UF.C.closure(function (obj) {
  4222. //防止拖动图标即打开了桌面应用
  4223. U.MD.D.click(this, obj);
  4224. }, [_futianTeacherDeskIconInfo[i]])
  4225. }, _frag); //
  4226. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4227. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  4228. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  4229. }
  4230. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  4231. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  4232. if (_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher') {
  4233. continue
  4234. }
  4235. _content = $$("div", {
  4236. className: "U_MD_D_KO",
  4237. "onmousedown": U.UF.C.closure(function (obj) {
  4238. //防止拖动图标即打开了桌面应用
  4239. U.MD.D.click(this, obj);
  4240. }, [_MingdeTeacherDeskIcon[i]]),
  4241. "onclick": U.UF.C.closure(function (obj) {
  4242. //防止拖动图标即打开了桌面应用
  4243. U.MD.D.click(this, obj);
  4244. }, [_MingdeTeacherDeskIcon[i]])
  4245. }, _frag); //
  4246. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4247. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  4248. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  4249. }
  4250. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  4251. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  4252. _content = $$("div", {
  4253. className: "U_MD_D_KO",
  4254. "onmousedown": U.UF.C.closure(function (obj) {
  4255. //防止拖动图标即打开了桌面应用
  4256. U.MD.D.click(this, obj);
  4257. }, [_lhsAdminDesktopIconInfo[i]]),
  4258. "onclick": U.UF.C.closure(function (obj) {
  4259. //防止拖动图标即打开了桌面应用
  4260. U.MD.D.click(this, obj);
  4261. }, [_lhsAdminDesktopIconInfo[i]])
  4262. }, _frag); //
  4263. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4264. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  4265. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  4266. }
  4267. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  4268. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  4269. if (_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4270. continue
  4271. }
  4272. _content = $$("div", {
  4273. className: "U_MD_D_KO",
  4274. "onmousedown": U.UF.C.closure(function (obj) {
  4275. //防止拖动图标即打开了桌面应用
  4276. U.MD.D.click(this, obj);
  4277. }, [_lhsteacherDesktopIconInfo[i]]),
  4278. "onclick": U.UF.C.closure(function (obj) {
  4279. //防止拖动图标即打开了桌面应用
  4280. U.MD.D.click(this, obj);
  4281. }, [_lhsteacherDesktopIconInfo[i]])
  4282. }, _frag); //
  4283. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4284. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  4285. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  4286. }
  4287. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  4288. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  4289. if (_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher') {
  4290. continue
  4291. }
  4292. _content = $$("div", {
  4293. className: "U_MD_D_KO",
  4294. "onmousedown": U.UF.C.closure(function (obj) {
  4295. //防止拖动图标即打开了桌面应用
  4296. U.MD.D.click(this, obj);
  4297. }, [_zhoujiateacherDesktopIconInfo[i]]),
  4298. "onclick": U.UF.C.closure(function (obj) {
  4299. //防止拖动图标即打开了桌面应用
  4300. U.MD.D.click(this, obj);
  4301. }, [_zhoujiateacherDesktopIconInfo[i]])
  4302. }, _frag); //
  4303. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4304. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  4305. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  4306. }
  4307. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  4308. for (i = 0; i < _hanDeskIcon.length; i++) {
  4309. if (_role === 0 && _hanDeskIcon[i].Url == 'testTeacher') {
  4310. continue
  4311. }
  4312. _content = $$("div", {
  4313. className: "U_MD_D_KO",
  4314. "onmousedown": U.UF.C.closure(function (obj) {
  4315. //防止拖动图标即打开了桌面应用
  4316. U.MD.D.click(this, obj);
  4317. }, [_hanDeskIcon[i]]),
  4318. "onclick": U.UF.C.closure(function (obj) {
  4319. //防止拖动图标即打开了桌面应用
  4320. U.MD.D.click(this, obj);
  4321. }, [_hanDeskIcon[i]])
  4322. }, _frag); //
  4323. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4324. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  4325. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  4326. }
  4327. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  4328. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  4329. if (_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher') {
  4330. continue
  4331. }
  4332. _content = $$("div", {
  4333. className: "U_MD_D_KO",
  4334. "onmousedown": U.UF.C.closure(function (obj) {
  4335. //防止拖动图标即打开了桌面应用
  4336. U.MD.D.click(this, obj);
  4337. }, [_orgStemDeskIcon[i]]),
  4338. "onclick": U.UF.C.closure(function (obj) {
  4339. //防止拖动图标即打开了桌面应用
  4340. U.MD.D.click(this, obj);
  4341. }, [_orgStemDeskIcon[i]])
  4342. }, _frag); //
  4343. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4344. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  4345. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  4346. }
  4347. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  4348. for (i = 0; i < _szulsDeskIcon.length; i++) {
  4349. if (_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher') {
  4350. continue
  4351. }
  4352. _content = $$("div", {
  4353. className: "U_MD_D_KO",
  4354. "onmousedown": U.UF.C.closure(function (obj) {
  4355. //防止拖动图标即打开了桌面应用
  4356. U.MD.D.click(this, obj);
  4357. }, [_szulsDeskIcon[i]]),
  4358. "onclick": U.UF.C.closure(function (obj) {
  4359. //防止拖动图标即打开了桌面应用
  4360. U.MD.D.click(this, obj);
  4361. }, [_szulsDeskIcon[i]])
  4362. }, _frag); //
  4363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  4365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  4366. }
  4367. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  4368. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  4369. if (_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher') {
  4370. continue
  4371. }
  4372. _content = $$("div", {
  4373. className: "U_MD_D_KO",
  4374. "onmousedown": U.UF.C.closure(function (obj) {
  4375. //防止拖动图标即打开了桌面应用
  4376. U.MD.D.click(this, obj);
  4377. }, [_orgDesktopIconInfo[i]]),
  4378. "onclick": U.UF.C.closure(function (obj) {
  4379. //防止拖动图标即打开了桌面应用
  4380. U.MD.D.click(this, obj);
  4381. }, [_orgDesktopIconInfo[i]])
  4382. }, _frag); //
  4383. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4384. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  4385. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  4386. }
  4387. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4388. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  4389. if (_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher') {
  4390. continue
  4391. }
  4392. _content = $$("div", {
  4393. className: "U_MD_D_KO",
  4394. "onmousedown": U.UF.C.closure(function (obj) {
  4395. //防止拖动图标即打开了桌面应用
  4396. U.MD.D.click(this, obj);
  4397. }, [_schoolDesktopIconInfo[i]]),
  4398. "onclick": U.UF.C.closure(function (obj) {
  4399. //防止拖动图标即打开了桌面应用
  4400. U.MD.D.click(this, obj);
  4401. }, [_schoolDesktopIconInfo[i]])
  4402. }, _frag); //
  4403. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4404. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  4405. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  4406. }
  4407. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4408. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  4409. if (_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4410. continue
  4411. }
  4412. _content = $$("div", {
  4413. className: "U_MD_D_KO",
  4414. "onmousedown": U.UF.C.closure(function (obj) {
  4415. //防止拖动图标即打开了桌面应用
  4416. U.MD.D.click(this, obj);
  4417. }, [_GMteacherDesktopIconInfo[i]]),
  4418. "onclick": U.UF.C.closure(function (obj) {
  4419. //防止拖动图标即打开了桌面应用
  4420. U.MD.D.click(this, obj);
  4421. }, [_GMteacherDesktopIconInfo[i]])
  4422. }, _frag); //
  4423. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4424. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  4425. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  4426. }
  4427. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  4428. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  4429. if (_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher') {
  4430. continue
  4431. }
  4432. _content = $$("div", {
  4433. className: "U_MD_D_KO",
  4434. "onmousedown": U.UF.C.closure(function (obj) {
  4435. //防止拖动图标即打开了桌面应用
  4436. U.MD.D.click(this, obj);
  4437. }, [_SONGteacherDesktopIconInfo[i]]),
  4438. "onclick": U.UF.C.closure(function (obj) {
  4439. //防止拖动图标即打开了桌面应用
  4440. U.MD.D.click(this, obj);
  4441. }, [_SONGteacherDesktopIconInfo[i]])
  4442. }, _frag); //
  4443. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4444. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  4445. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  4446. }
  4447. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  4448. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  4449. _content = $$("div", {
  4450. className: "U_MD_D_KO",
  4451. "onmousedown": U.UF.C.closure(function (obj) {
  4452. //防止拖动图标即打开了桌面应用
  4453. U.MD.D.click(this, obj);
  4454. }, [_GMstudentDesktopIconInfo[i]]),
  4455. "onclick": U.UF.C.closure(function (obj) {
  4456. //防止拖动图标即打开了桌面应用
  4457. U.MD.D.click(this, obj);
  4458. }, [_GMstudentDesktopIconInfo[i]])
  4459. }, _frag); //
  4460. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4461. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  4462. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  4463. }
  4464. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  4465. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  4466. if (_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4467. continue
  4468. }
  4469. _content = $$("div", {
  4470. className: "U_MD_D_KO",
  4471. "onmousedown": U.UF.C.closure(function (obj) {
  4472. //防止拖动图标即打开了桌面应用
  4473. U.MD.D.click(this, obj);
  4474. }, [_tcTeacherDeskIconInfo[i]]),
  4475. "onclick": U.UF.C.closure(function (obj) {
  4476. //防止拖动图标即打开了桌面应用
  4477. U.MD.D.click(this, obj);
  4478. }, [_tcTeacherDeskIconInfo[i]])
  4479. }, _frag); //
  4480. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4481. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  4482. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  4483. }
  4484. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  4485. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  4486. if (_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4487. continue
  4488. }
  4489. _content = $$("div", {
  4490. className: "U_MD_D_KO",
  4491. "onmousedown": U.UF.C.closure(function (obj) {
  4492. //防止拖动图标即打开了桌面应用
  4493. U.MD.D.click(this, obj);
  4494. }, [_tcOrganizerDeskIconInfo[i]]),
  4495. "onclick": U.UF.C.closure(function (obj) {
  4496. //防止拖动图标即打开了桌面应用
  4497. U.MD.D.click(this, obj);
  4498. }, [_tcOrganizerDeskIconInfo[i]])
  4499. }, _frag); //
  4500. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4501. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  4502. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4503. }
  4504. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  4505. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  4506. if (_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4507. continue
  4508. }
  4509. _content = $$("div", {
  4510. className: "U_MD_D_KO",
  4511. "onmousedown": U.UF.C.closure(function (obj) {
  4512. //防止拖动图标即打开了桌面应用
  4513. U.MD.D.click(this, obj);
  4514. }, [_szscTeacherDeskIconInfo[i]]),
  4515. "onclick": U.UF.C.closure(function (obj) {
  4516. //防止拖动图标即打开了桌面应用
  4517. U.MD.D.click(this, obj);
  4518. }, [_szscTeacherDeskIconInfo[i]])
  4519. }, _frag); //
  4520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  4522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  4523. }
  4524. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  4525. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  4526. if (_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher') {
  4527. continue
  4528. }
  4529. _content = $$("div", {
  4530. className: "U_MD_D_KO",
  4531. "onmousedown": U.UF.C.closure(function (obj) {
  4532. //防止拖动图标即打开了桌面应用
  4533. U.MD.D.click(this, obj);
  4534. }, [_szscOrganizerDeskIconInfo[i]]),
  4535. "onclick": U.UF.C.closure(function (obj) {
  4536. //防止拖动图标即打开了桌面应用
  4537. U.MD.D.click(this, obj);
  4538. }, [_szscOrganizerDeskIconInfo[i]])
  4539. }, _frag); //
  4540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  4542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  4543. }
  4544. } else if ((_type == 1 || _type == 4) && _org == "7cc601a0-fafc-4116-a805-0adbacf7a38d") {
  4545. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  4546. if (_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4547. continue
  4548. }
  4549. _content = $$("div", {
  4550. className: "U_MD_D_KO",
  4551. "onmousedown": U.UF.C.closure(function (obj) {
  4552. //防止拖动图标即打开了桌面应用
  4553. U.MD.D.click(this, obj);
  4554. }, [_nsfxTeacherDeskIconInfo[i]]),
  4555. "onclick": U.UF.C.closure(function (obj) {
  4556. //防止拖动图标即打开了桌面应用
  4557. U.MD.D.click(this, obj);
  4558. }, [_nsfxTeacherDeskIconInfo[i]])
  4559. }, _frag); //
  4560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  4562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  4563. }
  4564. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  4565. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  4566. if (_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4567. continue
  4568. }
  4569. _content = $$("div", {
  4570. className: "U_MD_D_KO",
  4571. "onmousedown": U.UF.C.closure(function (obj) {
  4572. //防止拖动图标即打开了桌面应用
  4573. U.MD.D.click(this, obj);
  4574. }, [_stiaTeacherDeskIconInfo[i]]),
  4575. "onclick": U.UF.C.closure(function (obj) {
  4576. //防止拖动图标即打开了桌面应用
  4577. U.MD.D.click(this, obj);
  4578. }, [_stiaTeacherDeskIconInfo[i]])
  4579. }, _frag); //
  4580. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4581. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  4582. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  4583. }
  4584. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  4585. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  4586. if (_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4587. continue
  4588. }
  4589. _content = $$("div", {
  4590. className: "U_MD_D_KO",
  4591. "onmousedown": U.UF.C.closure(function (obj) {
  4592. //防止拖动图标即打开了桌面应用
  4593. U.MD.D.click(this, obj);
  4594. }, [_szdjgTeacherDeskIconInfo[i]]),
  4595. "onclick": U.UF.C.closure(function (obj) {
  4596. //防止拖动图标即打开了桌面应用
  4597. U.MD.D.click(this, obj);
  4598. }, [_szdjgTeacherDeskIconInfo[i]])
  4599. }, _frag); //
  4600. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4601. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  4602. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  4603. }
  4604. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  4605. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  4606. if (_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4607. continue
  4608. }
  4609. _content = $$("div", {
  4610. className: "U_MD_D_KO",
  4611. "onmousedown": U.UF.C.closure(function (obj) {
  4612. //防止拖动图标即打开了桌面应用
  4613. U.MD.D.click(this, obj);
  4614. }, [_x010607TeacherDeskIconInfo[i]]),
  4615. "onclick": U.UF.C.closure(function (obj) {
  4616. //防止拖动图标即打开了桌面应用
  4617. U.MD.D.click(this, obj);
  4618. }, [_x010607TeacherDeskIconInfo[i]])
  4619. }, _frag); //
  4620. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4621. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  4622. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  4623. }
  4624. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  4625. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  4626. if (_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4627. continue
  4628. }
  4629. _content = $$("div", {
  4630. className: "U_MD_D_KO",
  4631. "onmousedown": U.UF.C.closure(function (obj) {
  4632. //防止拖动图标即打开了桌面应用
  4633. U.MD.D.click(this, obj);
  4634. }, [_xhlyTeacherDeskIconInfo[i]]),
  4635. "onclick": U.UF.C.closure(function (obj) {
  4636. //防止拖动图标即打开了桌面应用
  4637. U.MD.D.click(this, obj);
  4638. }, [_xhlyTeacherDeskIconInfo[i]])
  4639. }, _frag); //
  4640. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4641. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  4642. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4643. }
  4644. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  4645. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  4646. if (_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4647. continue
  4648. }
  4649. _content = $$("div", {
  4650. className: "U_MD_D_KO",
  4651. "onmousedown": U.UF.C.closure(function (obj) {
  4652. //防止拖动图标即打开了桌面应用
  4653. U.MD.D.click(this, obj);
  4654. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  4655. "onclick": U.UF.C.closure(function (obj) {
  4656. //防止拖动图标即打开了桌面应用
  4657. U.MD.D.click(this, obj);
  4658. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  4659. }, _frag); //
  4660. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4661. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  4662. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  4663. }
  4664. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  4665. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  4666. if (_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4667. continue
  4668. }
  4669. _content = $$("div", {
  4670. className: "U_MD_D_KO",
  4671. "onmousedown": U.UF.C.closure(function (obj) {
  4672. //防止拖动图标即打开了桌面应用
  4673. U.MD.D.click(this, obj);
  4674. }, [_x010503TeacherDeskIconInfo[i]]),
  4675. "onclick": U.UF.C.closure(function (obj) {
  4676. //防止拖动图标即打开了桌面应用
  4677. U.MD.D.click(this, obj);
  4678. }, [_x010503TeacherDeskIconInfo[i]])
  4679. }, _frag); //
  4680. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4681. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  4682. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  4683. }
  4684. } else if ((_type == 1 || _type == 4) && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5" || liyuanOrg.includes(_org))) {
  4685. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  4686. if (_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4687. continue
  4688. }
  4689. _content = $$("div", {
  4690. className: "U_MD_D_KO",
  4691. "onmousedown": U.UF.C.closure(function (obj) {
  4692. //防止拖动图标即打开了桌面应用
  4693. U.MD.D.click(this, obj);
  4694. }, [_x010504TeacherDeskIconInfo[i]]),
  4695. "onclick": U.UF.C.closure(function (obj) {
  4696. //防止拖动图标即打开了桌面应用
  4697. U.MD.D.click(this, obj);
  4698. }, [_x010504TeacherDeskIconInfo[i]])
  4699. }, _frag); //
  4700. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4701. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4702. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4703. }
  4704. } else if ((_type == 1 || _type == 4) && _oid == "8406b214-085f-11f0-b508-005056924926") {
  4705. for (i = 0; i < _x010505TeacherDeskIconInfo.length; i++) {
  4706. if (_role === 0 && _x010505TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4707. continue
  4708. }
  4709. _content = $$("div", {
  4710. className: "U_MD_D_KO",
  4711. "onmousedown": U.UF.C.closure(function (obj) {
  4712. //防止拖动图标即打开了桌面应用
  4713. U.MD.D.click(this, obj);
  4714. }, [_x010505TeacherDeskIconInfo[i]]),
  4715. "onclick": U.UF.C.closure(function (obj) {
  4716. //防止拖动图标即打开了桌面应用
  4717. U.MD.D.click(this, obj);
  4718. }, [_x010505TeacherDeskIconInfo[i]])
  4719. }, _frag); //
  4720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010505TeacherDeskIconInfo[i].style }, _iconcontent);
  4722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010505TeacherDeskIconInfo[i].Name }, _iconcontent);
  4723. }
  4724. } else if ((_type == 1 || _type == 4) && _oid == "bc239322-ffb2-11ef-b508-005056924926") {
  4725. for (i = 0; i < _x010404TeacherDeskIconInfo.length; i++) {
  4726. if (_role === 0 && _x010404TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4727. continue
  4728. }
  4729. _content = $$("div", {
  4730. className: "U_MD_D_KO",
  4731. "onmousedown": U.UF.C.closure(function (obj) {
  4732. //防止拖动图标即打开了桌面应用
  4733. U.MD.D.click(this, obj);
  4734. }, [_x010404TeacherDeskIconInfo[i]]),
  4735. "onclick": U.UF.C.closure(function (obj) {
  4736. //防止拖动图标即打开了桌面应用
  4737. U.MD.D.click(this, obj);
  4738. }, [_x010404TeacherDeskIconInfo[i]])
  4739. }, _frag); //
  4740. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4741. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010404TeacherDeskIconInfo[i].style }, _iconcontent);
  4742. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010404TeacherDeskIconInfo[i].Name }, _iconcontent);
  4743. }
  4744. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4745. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4746. if (_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4747. continue
  4748. }
  4749. _content = $$("div", {
  4750. className: "U_MD_D_KO",
  4751. "onmousedown": U.UF.C.closure(function (obj) {
  4752. //防止拖动图标即打开了桌面应用
  4753. U.MD.D.click(this, obj);
  4754. }, [_x010204TeacherDeskIconInfo[i]]),
  4755. "onclick": U.UF.C.closure(function (obj) {
  4756. //防止拖动图标即打开了桌面应用
  4757. U.MD.D.click(this, obj);
  4758. }, [_x010204TeacherDeskIconInfo[i]])
  4759. }, _frag); //
  4760. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4761. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4762. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4763. }
  4764. } else if ((_type == 1 || _type == 4) && _oid == "2c5d4971-ed9e-11ef-b508-005056924926") {
  4765. for (i = 0; i < _x320101TeacherDeskIconInfo.length; i++) {
  4766. if (_role === 0 && _x320101TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4767. continue
  4768. }
  4769. _content = $$("div", {
  4770. className: "U_MD_D_KO",
  4771. "onmousedown": U.UF.C.closure(function (obj) {
  4772. //防止拖动图标即打开了桌面应用
  4773. U.MD.D.click(this, obj);
  4774. }, [_x320101TeacherDeskIconInfo[i]]),
  4775. "onclick": U.UF.C.closure(function (obj) {
  4776. //防止拖动图标即打开了桌面应用
  4777. U.MD.D.click(this, obj);
  4778. }, [_x320101TeacherDeskIconInfo[i]])
  4779. }, _frag); //
  4780. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4781. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x320101TeacherDeskIconInfo[i].style }, _iconcontent);
  4782. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x320101TeacherDeskIconInfo[i].Name }, _iconcontent);
  4783. }
  4784. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4785. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4786. if (_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4787. continue
  4788. }
  4789. _content = $$("div", {
  4790. className: "U_MD_D_KO",
  4791. "onmousedown": U.UF.C.closure(function (obj) {
  4792. //防止拖动图标即打开了桌面应用
  4793. U.MD.D.click(this, obj);
  4794. }, [_trailTeacherDeskIconInfo[i]]),
  4795. "onclick": U.UF.C.closure(function (obj) {
  4796. //防止拖动图标即打开了桌面应用
  4797. U.MD.D.click(this, obj);
  4798. }, [_trailTeacherDeskIconInfo[i]])
  4799. }, _frag); //
  4800. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4801. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4802. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4803. }
  4804. } else if ((_type == 1 || _type == 4) && _oid == "65ad80f0-16bb-11f0-a66a-005056924926") {
  4805. for (i = 0; i < _trialTeacherDeskIconInfo.length; i++) {
  4806. if (_role === 0 && _trialTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4807. continue
  4808. }
  4809. _content = $$("div", {
  4810. className: "U_MD_D_KO",
  4811. "onmousedown": U.UF.C.closure(function (obj) {
  4812. //防止拖动图标即打开了桌面应用
  4813. U.MD.D.click(this, obj);
  4814. }, [_trialTeacherDeskIconInfo[i]]),
  4815. "onclick": U.UF.C.closure(function (obj) {
  4816. //防止拖动图标即打开了桌面应用
  4817. U.MD.D.click(this, obj);
  4818. }, [_trialTeacherDeskIconInfo[i]])
  4819. }, _frag); //
  4820. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4821. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trialTeacherDeskIconInfo[i].style }, _iconcontent);
  4822. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trialTeacherDeskIconInfo[i].Name }, _iconcontent);
  4823. }
  4824. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4825. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4826. if (_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4827. continue
  4828. }
  4829. _content = $$("div", {
  4830. className: "U_MD_D_KO",
  4831. "onmousedown": U.UF.C.closure(function (obj) {
  4832. //防止拖动图标即打开了桌面应用
  4833. U.MD.D.click(this, obj);
  4834. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4835. "onclick": U.UF.C.closure(function (obj) {
  4836. //防止拖动图标即打开了桌面应用
  4837. U.MD.D.click(this, obj);
  4838. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4839. }, _frag); //
  4840. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4841. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4842. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4843. }
  4844. } else if ((_type == 1 || _type == 4) && _org == "c8266c04-59e3-44de-bcf2-8f906e66e636") {
  4845. for (i = 0; i < _szsyTeacherDeskIconInfo.length; i++) {
  4846. if (_role === 0 && _szsyTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4847. continue
  4848. }
  4849. _content = $$("div", {
  4850. className: "U_MD_D_KO",
  4851. "onmousedown": U.UF.C.closure(function (obj) {
  4852. //防止拖动图标即打开了桌面应用
  4853. U.MD.D.click(this, obj);
  4854. }, [_szsyTeacherDeskIconInfo[i]]),
  4855. "onclick": U.UF.C.closure(function (obj) {
  4856. //防止拖动图标即打开了桌面应用
  4857. U.MD.D.click(this, obj);
  4858. }, [_szsyTeacherDeskIconInfo[i]])
  4859. }, _frag); //
  4860. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4861. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szsyTeacherDeskIconInfo[i].style }, _iconcontent);
  4862. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szsyTeacherDeskIconInfo[i].Name }, _iconcontent);
  4863. }
  4864. } else if ((_type == 1 || _type == 4) && _org == "eed08ac6-7269-11f0-9c7b-005056924926") {
  4865. for (i = 0; i < _PREPAITeacherDeskIcon.length; i++) {
  4866. if (_role === 0 && _PREPAITeacherDeskIcon[i].Url == 'testTeacher') {
  4867. continue
  4868. }
  4869. _content = $$("div", {
  4870. className: "U_MD_D_KO",
  4871. "onmousedown": U.UF.C.closure(function (obj) {
  4872. //防止拖动图标即打开了桌面应用
  4873. U.MD.D.click(this, obj);
  4874. }, [_PREPAITeacherDeskIcon[i]]),
  4875. "onclick": U.UF.C.closure(function (obj) {
  4876. //防止拖动图标即打开了桌面应用
  4877. U.MD.D.click(this, obj);
  4878. }, [_PREPAITeacherDeskIcon[i]])
  4879. }, _frag); //
  4880. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4881. $$("div", { className: "U_MD_D_KOS U_Img", "style": _PREPAITeacherDeskIcon[i].style }, _iconcontent);
  4882. $$("div", { className: "U_MD_D_KOX", "innerHTML": _PREPAITeacherDeskIcon[i].Name }, _iconcontent);
  4883. }
  4884. } else if ((_type == 1 || _type == 4) && _oid == "17dbf412-92de-11f0-9838-005056924926") {
  4885. for (i = 0; i < _x010511TeacherDeskIcon.length; i++) {
  4886. if (_role === 0 && _x010511TeacherDeskIcon[i].Url == 'testTeacher') {
  4887. continue
  4888. }
  4889. _content = $$("div", {
  4890. className: "U_MD_D_KO",
  4891. "onmousedown": U.UF.C.closure(function (obj) {
  4892. //防止拖动图标即打开了桌面应用
  4893. U.MD.D.click(this, obj);
  4894. }, [_x010511TeacherDeskIcon[i]]),
  4895. "onclick": U.UF.C.closure(function (obj) {
  4896. //防止拖动图标即打开了桌面应用
  4897. U.MD.D.click(this, obj);
  4898. }, [_x010511TeacherDeskIcon[i]])
  4899. }, _frag); //
  4900. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4901. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010511TeacherDeskIcon[i].style }, _iconcontent);
  4902. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010511TeacherDeskIcon[i].Name }, _iconcontent);
  4903. }
  4904. } else if ((_type == 1 || _type == 4) && _oid == "31631344-92db-11f0-9838-005056924926") {
  4905. for (i = 0; i < _x010103TeacherDeskIcon.length; i++) {
  4906. if (_role === 0 && _x010103TeacherDeskIcon[i].Url == 'testTeacher') {
  4907. continue
  4908. }
  4909. _content = $$("div", {
  4910. className: "U_MD_D_KO",
  4911. "onmousedown": U.UF.C.closure(function (obj) {
  4912. //防止拖动图标即打开了桌面应用
  4913. U.MD.D.click(this, obj);
  4914. }, [_x010103TeacherDeskIcon[i]]),
  4915. "onclick": U.UF.C.closure(function (obj) {
  4916. //防止拖动图标即打开了桌面应用
  4917. U.MD.D.click(this, obj);
  4918. }, [_x010103TeacherDeskIcon[i]])
  4919. }, _frag); //
  4920. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4921. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010103TeacherDeskIcon[i].style }, _iconcontent);
  4922. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010103TeacherDeskIcon[i].Name }, _iconcontent);
  4923. }
  4924. } else if ((_type == 1 || _type == 4) && _org == "cf30095b-87d5-11f0-9c7b-005056924926") {
  4925. for (i = 0; i < _zlteacherDeskIconInfo.length; i++) {
  4926. if (_role === 0 && _zlteacherDeskIconInfo[i].Url == 'testTeacher') {
  4927. continue
  4928. }
  4929. _content = $$("div", {
  4930. className: "U_MD_D_KO",
  4931. "onmousedown": U.UF.C.closure(function (obj) {
  4932. //防止拖动图标即打开了桌面应用
  4933. U.MD.D.click(this, obj);
  4934. }, [_zlteacherDeskIconInfo[i]]),
  4935. "onclick": U.UF.C.closure(function (obj) {
  4936. //防止拖动图标即打开了桌面应用
  4937. U.MD.D.click(this, obj);
  4938. }, [_zlteacherDeskIconInfo[i]])
  4939. }, _frag); //
  4940. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4941. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zlteacherDeskIconInfo[i].style }, _iconcontent);
  4942. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zlteacherDeskIconInfo[i].Name }, _iconcontent);
  4943. }
  4944. } else if ((_type == 1 || _type == 4) && _org == "eaee75a4-ff2e-11ef-b508-005056924926") {
  4945. for (i = 0; i < _demoCocoTeacherDeskIconInfo.length; i++) {
  4946. if (_role === 0 && _demoCocoTeacherDeskIconInfo[i].Url == 'testTeacher') {
  4947. continue
  4948. }
  4949. _content = $$("div", {
  4950. className: "U_MD_D_KO",
  4951. "onmousedown": U.UF.C.closure(function (obj) {
  4952. //防止拖动图标即打开了桌面应用
  4953. U.MD.D.click(this, obj);
  4954. }, [_demoCocoTeacherDeskIconInfo[i]]),
  4955. "onclick": U.UF.C.closure(function (obj) {
  4956. //防止拖动图标即打开了桌面应用
  4957. U.MD.D.click(this, obj);
  4958. }, [_demoCocoTeacherDeskIconInfo[i]])
  4959. }, _frag); //
  4960. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4961. $$("div", { className: "U_MD_D_KOS U_Img", "style": _demoCocoTeacherDeskIconInfo[i].style }, _iconcontent);
  4962. $$("div", { className: "U_MD_D_KOX", "innerHTML": _demoCocoTeacherDeskIconInfo[i].Name }, _iconcontent);
  4963. }
  4964. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4965. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4966. if (_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4967. continue
  4968. }
  4969. _content = $$("div", {
  4970. className: "U_MD_D_KO",
  4971. "onmousedown": U.UF.C.closure(function (obj) {
  4972. //防止拖动图标即打开了桌面应用
  4973. U.MD.D.click(this, obj);
  4974. }, [_x010608TeacherDeskIconInfo[i]]),
  4975. "onclick": U.UF.C.closure(function (obj) {
  4976. //防止拖动图标即打开了桌面应用
  4977. U.MD.D.click(this, obj);
  4978. }, [_x010608TeacherDeskIconInfo[i]])
  4979. }, _frag); //
  4980. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4981. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4982. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4983. }
  4984. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4985. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4986. if (_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher') {
  4987. continue
  4988. }
  4989. _content = $$("div", {
  4990. className: "U_MD_D_KO",
  4991. "onmousedown": U.UF.C.closure(function (obj) {
  4992. //防止拖动图标即打开了桌面应用
  4993. U.MD.D.click(this, obj);
  4994. }, [_x010611TeacherDeskIconInfo[i]]),
  4995. "onclick": U.UF.C.closure(function (obj) {
  4996. //防止拖动图标即打开了桌面应用
  4997. U.MD.D.click(this, obj);
  4998. }, [_x010611TeacherDeskIconInfo[i]])
  4999. }, _frag); //
  5000. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5001. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  5002. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  5003. }
  5004. } else if ((_type == 1 || _type == 4) && _oid == "86fa8cd7-00c2-11f0-b508-005056924926") {
  5005. for (i = 0; i < _x010612TeacherDeskIconInfo.length; i++) {
  5006. if (_role === 0 && _x010612TeacherDeskIconInfo[i].Url == 'testTeacher') {
  5007. continue
  5008. }
  5009. _content = $$("div", {
  5010. className: "U_MD_D_KO",
  5011. "onmousedown": U.UF.C.closure(function (obj) {
  5012. //防止拖动图标即打开了桌面应用
  5013. U.MD.D.click(this, obj);
  5014. }, [_x010612TeacherDeskIconInfo[i]]),
  5015. "onclick": U.UF.C.closure(function (obj) {
  5016. //防止拖动图标即打开了桌面应用
  5017. U.MD.D.click(this, obj);
  5018. }, [_x010612TeacherDeskIconInfo[i]])
  5019. }, _frag); //
  5020. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5021. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010612TeacherDeskIconInfo[i].style }, _iconcontent);
  5022. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010612TeacherDeskIconInfo[i].Name }, _iconcontent);
  5023. }
  5024. } else if ((_type == 1 || _type == 4) && _org == "b47d2ea8-7044-4810-9cb7-3aaf8b74cfbc") {
  5025. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  5026. if (_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher') {
  5027. continue
  5028. }
  5029. _content = $$("div", {
  5030. className: "U_MD_D_KO",
  5031. "onmousedown": U.UF.C.closure(function (obj) {
  5032. //防止拖动图标即打开了桌面应用
  5033. U.MD.D.click(this, obj);
  5034. }, [_tianyuanTeacherDeskIconInfo[i]]),
  5035. "onclick": U.UF.C.closure(function (obj) {
  5036. //防止拖动图标即打开了桌面应用
  5037. U.MD.D.click(this, obj);
  5038. }, [_tianyuanTeacherDeskIconInfo[i]])
  5039. }, _frag); //
  5040. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5041. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  5042. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  5043. }
  5044. } else if ((_type == 1 || _type == 4) && _org == "fa20a652-5f2a-11f0-bf32-005056924926") {
  5045. for (i = 0; i < _MOAITeacherDeskIcon.length; i++) {
  5046. if (_role === 0 && _MOAITeacherDeskIcon[i].Url == 'testTeacher') {
  5047. continue
  5048. }
  5049. _content = $$("div", {
  5050. className: "U_MD_D_KO",
  5051. "onmousedown": U.UF.C.closure(function (obj) {
  5052. //防止拖动图标即打开了桌面应用
  5053. U.MD.D.click(this, obj);
  5054. }, [_MOAITeacherDeskIcon[i]]),
  5055. "onclick": U.UF.C.closure(function (obj) {
  5056. //防止拖动图标即打开了桌面应用
  5057. U.MD.D.click(this, obj);
  5058. }, [_MOAITeacherDeskIcon[i]])
  5059. }, _frag); //
  5060. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5061. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MOAITeacherDeskIcon[i].style }, _iconcontent);
  5062. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MOAITeacherDeskIcon[i].Name }, _iconcontent);
  5063. }
  5064. } else {
  5065. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  5066. if (_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  5067. continue
  5068. }
  5069. _content = $$("div", {
  5070. className: "U_MD_D_KO",
  5071. "onmousedown": U.UF.C.closure(function (obj) {
  5072. //防止拖动图标即打开了桌面应用
  5073. U.MD.D.click(this, obj);
  5074. }, [_teacherDesktopIconInfo[i]]),
  5075. "onclick": U.UF.C.closure(function (obj) {
  5076. //防止拖动图标即打开了桌面应用
  5077. U.MD.D.click(this, obj);
  5078. }, [_teacherDesktopIconInfo[i]])
  5079. }, _frag); //
  5080. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  5081. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  5082. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  5083. }
  5084. }
  5085. } else {
  5086. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  5087. _content = $$("div", {
  5088. className: "U_MD_D_KO",
  5089. style: { 'width': '124px', 'height': '145px' },
  5090. "onmousedown": U.UF.C.closure(function (obj) {
  5091. //防止拖动图标即打开了桌面应用
  5092. U.MD.D.click(this, obj);
  5093. }, [_easyDesktopIconInfo[i]]),
  5094. "onclick": U.UF.C.closure(function (obj) {
  5095. //防止拖动图标即打开了桌面应用
  5096. U.MD.D.click(this, obj);
  5097. }, [_easyDesktopIconInfo[i]])
  5098. }, _frag); //
  5099. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  5100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  5101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  5102. }
  5103. }
  5104. if (type == 1) {
  5105. //加载好后给图标定位
  5106. U.MD.D.iconPostion($(_frag).Child());
  5107. } else {
  5108. //加载好后给图标定位
  5109. U.MD.D.iconPostion2($(_frag).Child());
  5110. }
  5111. //把图标加载到页面
  5112. el.appendChild(_frag);
  5113. if(_type == 2){
  5114. U.selectEl(".U_MD_D_RW").css("display", "none");
  5115. }
  5116. }
  5117. /**
  5118. * 显示任务栏
  5119. *
  5120. * @param {element} 桌面元素
  5121. */
  5122. U.MD.D.I.displayTaskbar = function (el) {
  5123. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  5124. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  5125. //任务栏位置变化
  5126. U.selectEl(el).css({ "bottom": "0px" });
  5127. //桌面位置变话
  5128. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  5129. }
  5130. }
  5131. //#region 桌面图标拖动逻辑
  5132. /**
  5133. * 桌面排列图标
  5134. *
  5135. * @param {element} 桌面元素
  5136. * @param {object} 上下相距的距离
  5137. * @param {object} 左右相距的距离
  5138. * @return {object} 命名空间
  5139. */
  5140. U.MD.D.iconPostion = function (childs, top, left) {
  5141. var i; //用于循环处理
  5142. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  5143. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  5144. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5145. for (i = 0; i < childs.length; i++) {
  5146. //如果竖排top超过了范围处理
  5147. if (top + 95 > US.height - 10) {
  5148. //left超过了页面范围处理,则向上重叠打印处理
  5149. if ((left + 180) > US.width) {
  5150. top -= 110;
  5151. left -= 90;
  5152. }
  5153. //没有超过范围,那么left+90添加到下一个竖排打印
  5154. else {
  5155. left += 90;
  5156. top = 15;
  5157. };
  5158. }
  5159. //给图标的位置赋值
  5160. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  5161. if (i < childs.length - 1) {
  5162. //页面图标每次向下加95
  5163. top += 95;
  5164. }
  5165. }
  5166. //返回最后调用的图标的位置
  5167. return [top, left];
  5168. }
  5169. /**
  5170. * 桌面排列图标
  5171. *
  5172. * @param {element} 桌面元素
  5173. * @param {object} 上下相距的距离
  5174. * @param {object} 左右相距的距离
  5175. * @return {object} 命名空间
  5176. */
  5177. U.MD.D.iconPostion2 = function (childs, top, left) {
  5178. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  5179. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  5180. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  5181. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  5182. for (i = 0; i < childs.length; i++) {
  5183. //如果竖排top超过了范围处理
  5184. if (left + 150 > US.width - 10) {
  5185. //left超过了页面范围处理,则向上重叠打印处理
  5186. if ((top + 180) > US.Height) {
  5187. top -= 150;
  5188. left -= 150;
  5189. }
  5190. //没有超过范围,那么left+90添加到下一个竖排打印
  5191. else {
  5192. top += 150;
  5193. left = ol;
  5194. };
  5195. }
  5196. //给图标的位置赋值
  5197. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  5198. if (i < childs.length - 1) {
  5199. //页面图标每次向下加95
  5200. left += 150;
  5201. }
  5202. }
  5203. //返回最后调用的图标的位置
  5204. return [top, left];
  5205. }
  5206. /**
  5207. * 桌面点击事件逻辑
  5208. *
  5209. * @param {element} 桌面元素
  5210. * @param {object} 上下相距的距离
  5211. * @param {object} 左右相距的距离
  5212. * @return {object} 命名空间
  5213. */
  5214. U.MD.D.click = function (el, obj) {
  5215. var _buttonnumber = event.button; //点击的按钮的事件值
  5216. var _userinfo = US.userInfo;
  5217. U.UF.EV.stopBubble(); //阻止向上冒泡
  5218. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  5219. if (_buttonnumber < 2) {
  5220. //如果是click事件的处理
  5221. if (event.type == "click") {
  5222. //如果元素在mousemove事件中没有移动则出发click事件
  5223. if (!U.MD.D.I.IsDrag) {
  5224. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5225. U.alert("请先登录您的账号!");
  5226. setTimeout(() => {
  5227. U.MD.U.L.login();
  5228. }, 2000);
  5229. } else {
  5230. //打开应用处理
  5231. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  5232. }
  5233. }
  5234. }
  5235. //如果是mouse事件的处理
  5236. else {
  5237. if (US.Config.type == '1') {
  5238. //拖动处理,添加拖动和拖动结束事件
  5239. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  5240. }
  5241. }
  5242. U.MD.D.I.IsDrag = false;
  5243. }
  5244. }
  5245. /**
  5246. * 拖动的处理
  5247. *
  5248. */
  5249. U.MD.D.iconMove = function () {
  5250. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  5251. U.MD.D.I.IsDrag = true;
  5252. }
  5253. /**
  5254. * 拖动结束后,这里是定位处理,以网状的形式定位
  5255. *
  5256. * @param {element} 拖动的元素
  5257. * @return {object} 命名空间
  5258. */
  5259. U.MD.D.iconUp = function (el) {
  5260. var _top = 15,
  5261. _left = 20,
  5262. _margin,
  5263. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  5264. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  5265. if (_positioninfo["OT"] > 15) {
  5266. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  5267. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  5268. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  5269. }
  5270. if (_positioninfo["OL"] > 20) {
  5271. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  5272. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  5273. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  5274. }
  5275. //while循环判断么一个重叠的元素
  5276. do {
  5277. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  5278. _top = _positioninfo[0] + 95; //得到定位后的top
  5279. _left = _positioninfo[1]; //得到定位后的left
  5280. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  5281. }
  5282. /**
  5283. * 判断拖动后图标是否重叠
  5284. *
  5285. * @param {element} 拖动的元素
  5286. * @param {element} 桌面所有的元素
  5287. * @param {array} 拖动元素的位置
  5288. ----------[0] 上 top
  5289. ----------[1] 左 left
  5290. * @return {object} 命名空间
  5291. */
  5292. U.MD.D.isOverlap = function (el, childs, postionarray) {
  5293. //循环所有的图标
  5294. for (var i = 0; i < childs.length; i++) {
  5295. //判断有没有和该图标诶子重叠的元素
  5296. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  5297. return childs[i]; //如果有返回
  5298. }
  5299. }
  5300. }
  5301. //#endregion
  5302. //#endregion
  5303. //#region 桌面应用
  5304. /**
  5305. * 打开应用
  5306. *
  5307. * @param {string} 类型
  5308. -----------------Disk 网盘系统
  5309. -----------------PDisk 学习系统网盘
  5310. -----------------Poto 图片
  5311. -----------------Video 视频
  5312. -----------------Music 音乐
  5313. -----------------Word word
  5314. -----------------Excel excel
  5315. -----------------Txt 记事本
  5316. -----------------PB 学习系统
  5317. -----------------Blog 朋友圈系统
  5318. -----------------FTP ftp系统
  5319. -----------------Group 好友群
  5320. -----------------SY 首页系统
  5321. -----------------Set 个人设置
  5322. -----------------XSet 系统设置
  5323. -----------------App 我们所有的app
  5324. -----------------BC c.1473.cn 平台
  5325. -----------------CWeb d.1473.cn 变成平台
  5326. -----------------其他的外联系统 我们统一用iframe打开
  5327. * @param {array} 类型
  5328. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  5329. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  5330. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  5331. 如果第一个参数为其他,则无第二个参数
  5332. * @returns {array}
  5333. */
  5334. window.addEventListener('message', function (e) { // 监听 message 事件
  5335. // alert(e.data.type);
  5336. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  5337. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  5338. //3是展示全部阶段 2学生 1老师 4专家
  5339. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  5340. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  5341. //3是展示全部阶段 2学生 1老师 4专家
  5342. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  5343. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  5344. //3是展示全部阶段 2学生 1老师 4专家
  5345. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  5346. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  5347. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  5348. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  5349. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  5350. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  5351. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  5352. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  5353. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  5354. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  5355. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  5356. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  5357. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  5358. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  5359. //3是展示全部阶段 2学生 1老师 4专家
  5360. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  5361. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  5362. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  5363. U.MD.D.I.selectUser();
  5364. } else if (e.data.allScreen && e.data.allScreen == "1") {
  5365. var _formel = document.getElementById("study");
  5366. U.UF.F.windowZooming(_formel);
  5367. } else if (e.data.allScreen && e.data.allScreen == "2") {
  5368. var _formel = document.getElementById("studyDetail");
  5369. U.UF.F.windowZooming(_formel);
  5370. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  5371. var _formel = document.getElementById("studyDetail");
  5372. U.UF.F.windowZooming(_formel);
  5373. } else if (e.data.allScreen && e.data.allScreen == "3") {
  5374. var _formel = document.getElementById("studentStudy");
  5375. U.UF.F.windowZooming(_formel);
  5376. } else if (e.data.allScreen && e.data.allScreen == "6") {
  5377. // var _formel = document.getElementById("study");
  5378. //如果最大化了,那么就把他缩小
  5379. // if (_formel.ismaximize) {
  5380. // return;
  5381. // }
  5382. // U.UF.F.windowZooming(_formel);
  5383. // U.UF.F.topWindow(_formel);
  5384. } else if (e.data.allScreen && e.data.allScreen == "4") {
  5385. // var _formel = document.getElementById("studyDetail");
  5386. //如果最大化了,那么就把他缩小
  5387. // if (_formel.ismaximize) {
  5388. // return;
  5389. // }
  5390. // U.UF.F.windowZooming(_formel);
  5391. // U.UF.F.topWindow(_formel);
  5392. } else if (e.data.allScreen && e.data.allScreen == "5") {
  5393. // var _formel = document.getElementById("studentStudy");
  5394. // if (_formel.ismaximize) {
  5395. // return;
  5396. // }
  5397. // U.UF.F.windowZooming(_formel);
  5398. // U.UF.F.topWindow(_formel);
  5399. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  5400. var _formel = document.getElementById("study");
  5401. // if (_formel.ismaximize) {
  5402. // return;
  5403. // }
  5404. // U.UF.F.windowZooming(_formel);
  5405. U.UF.F.topWindow(_formel);
  5406. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  5407. var _formel = document.getElementById("studentIndex");
  5408. U.UF.F.windowZooming(_formel);
  5409. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  5410. var _formel = document.getElementById("studyDetailS");
  5411. U.UF.F.windowZooming(_formel);
  5412. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  5413. var _formel = document.getElementById("studioIndex");
  5414. U.UF.F.windowZooming(_formel);
  5415. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  5416. var _formel = document.getElementById("studyDetailStudio");
  5417. U.UF.F.windowZooming(_formel);
  5418. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  5419. var _formel = document.getElementById("studyDetailStudio");
  5420. U.UF.F.windowZooming(_formel);
  5421. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  5422. var _formel = document.getElementById("studyDetailNT");
  5423. U.UF.F.windowZooming(_formel);
  5424. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  5425. var _formel = document.getElementById("studyDetailS");
  5426. U.UF.F.windowZooming(_formel);
  5427. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  5428. var _formel = document.getElementById("studyDetailS");
  5429. U.UF.F.topWindow(_formel);
  5430. } else if (e.data.tools && e.data.tools == "1") {
  5431. // U.MD.D.I.openApplication("whiteboard")
  5432. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5433. } else if (e.data.tools && e.data.tools == "2") {
  5434. U.MD.D.I.openApplication("note")
  5435. } else if (e.data.tools && e.data.tools == "3") {
  5436. // U.MD.D.I.openApplication("mind")
  5437. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5438. } else if (e.data.tools && e.data.tools == "4") {
  5439. U.MD.D.I.openApplication("investigation")
  5440. } else if (e.data.tools && e.data.tools == "6") {
  5441. // U.MD.D.I.openApplication("doc")
  5442. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5443. } else if (e.data.tools && e.data.tools == "7") {
  5444. // U.MD.D.I.openApplication("mindNetwork")
  5445. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5446. } else if (e.data.tools && e.data.tools == "8") {
  5447. U.MD.D.I.openApplication("library")
  5448. } else if (e.data.tools && e.data.tools == "17") {
  5449. U.MD.D.I.openApplication("stuLibrary")
  5450. } else if (e.data.tools && e.data.tools == "18") {
  5451. U.MD.D.I.openApplication("train")
  5452. } else if (e.data.tools && e.data.tools == "21") {
  5453. U.MD.D.I.openApplication("program")
  5454. } else if (e.data.tools && e.data.tools == "22") {
  5455. U.MD.D.I.openApplication("AIprogram2")
  5456. } else if (e.data.tools && e.data.tools == "23") {
  5457. U.MD.D.I.openApplication("Pythonprogram")
  5458. } else if (e.data.tools && e.data.tools == "24") {
  5459. U.MD.D.I.openApplication("AIprogram")
  5460. } else if (e.data.tools && e.data.tools == "25") {
  5461. U.MD.D.I.openApplication("sys")
  5462. } else if (e.data.tools && e.data.tools == "26") {
  5463. // U.MD.D.I.openApplication("courseDesign")
  5464. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5465. } else if (e.data.tools && e.data.tools == "31") {
  5466. U.MD.D.I.openApplication("netWorkPanel")
  5467. } else if (e.data.tools && e.data.tools == "32") {
  5468. U.MD.D.I.openApplication("codeEdit")
  5469. } else if (e.data.tools && e.data.tools == "57") {
  5470. U.MD.D.I.openApplication("CocoPi")
  5471. } else if (e.data.tools && e.data.tools == "63") {
  5472. U.MD.D.I.openApplication("Wood")
  5473. } else if (e.data.tools && e.data.tools == "58") {
  5474. U.MD.D.I.openApplication("car")
  5475. } else if (e.data.tools && e.data.tools == "59") {
  5476. U.MD.D.I.openApplication("lineSearch")
  5477. } else if (e.data.tools && e.data.tools == "60") {
  5478. U.MD.D.I.openApplication("deepLearning")
  5479. } else if (e.data.tools && e.data.tools == "61") {
  5480. U.MD.D.I.openApplication("allHistory")
  5481. } else if (e.data.tools && e.data.tools == "28") {
  5482. U.MD.D.I.openApplication("translation")
  5483. } else if (e.data.tools && e.data.tools == "37") {
  5484. U.MD.D.I.openApplication("mohe")
  5485. } else if (e.data.tools && e.data.tools == "38") {
  5486. U.MD.D.I.openApplication("24game")
  5487. } else if (e.data.tools && e.data.tools == "39") {
  5488. U.MD.D.I.openApplication("GeoGebra")
  5489. } else if (e.data.tools && e.data.tools == "43") {
  5490. U.MD.D.I.openApplication("studentEvaluate")
  5491. } else if (e.data.tools && e.data.tools == "44") {
  5492. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  5493. } else if (e.data.tools && e.data.tools == "46") {
  5494. U.MD.D.I.openApplication("project")
  5495. } else if (e.data.tools && e.data.tools == "71") {
  5496. U.MD.D.I.openApplication("aigptCourse")
  5497. } else if (e.data.tools && e.data.tools == "72") {
  5498. U.MD.D.I.openInApplication("gptConfig", e.data.data)
  5499. } else if (e.data.tools && e.data.tools == "1s") {
  5500. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5501. } else if (e.data.tools && e.data.tools == "3s") {
  5502. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5503. } else if (e.data.tools && e.data.tools == "6s") {
  5504. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5505. } else if (e.data.tools && e.data.tools == "1studio") {
  5506. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5507. } else if (e.data.tools && e.data.tools == "3studio") {
  5508. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5509. } else if (e.data.tools && e.data.tools == "6studio") {
  5510. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5511. } else if (e.data.tools && e.data.tools == "3y") {
  5512. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5513. } else if (e.data.tools && e.data.tools == "73y") {
  5514. U.MD.D.I.openApplicationYu("ppt", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5515. } else if (e.data.tools && e.data.tools == "1y") {
  5516. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5517. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  5518. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  5519. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  5520. U.MD.D.I.openApplication("AIAnalyse")
  5521. } else if (e.data.tools && e.data.tools == "1teacher") {
  5522. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5523. } else if (e.data.tools && e.data.tools == "3teacher") {
  5524. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5525. } else if (e.data.tools && e.data.tools == "7teacher") {
  5526. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5527. } else if (e.data.tools && e.data.tools == "1teacherE") {
  5528. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5529. } else if (e.data.tools && e.data.tools == "3teacherE") {
  5530. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5531. } else if (e.data.tools && e.data.tools == "1E") {
  5532. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5533. } else if (e.data.tools && e.data.tools == "3E") {
  5534. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5535. } else if (e.data.tools && e.data.tools == "57y") {
  5536. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5537. } else if (e.data.tools && e.data.tools == "57u") {
  5538. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  5539. } else if (e.data.tools && e.data.tools == "57teacher") {
  5540. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  5541. } else if (e.data.tools && e.data.tools == "64") {
  5542. U.MD.D.I.openApplication("AIChat")
  5543. } else if (e.data.tools && e.data.tools == "66") {
  5544. U.MD.D.I.openApplication("formulaEdi")
  5545. } else if (e.data.tools && e.data.tools == "67") {
  5546. U.MD.D.I.openApplication("molStr")
  5547. } else if (e.data.tools && e.data.tools == "68") {
  5548. U.MD.D.I.openApplication("timeAxis")
  5549. } else if (e.data.tools && e.data.tools == "openCourse") {
  5550. let _data = {
  5551. typea: e.data.typea || '',
  5552. typeb: e.data.typeb || '',
  5553. typed: e.data.typed || '',
  5554. }
  5555. U.MD.D.I.openInApplication("index", _data)
  5556. } else if (e.data.tools && e.data.tools == "openDataClass") {
  5557. let _data = {
  5558. classid: e.data.classid || '',
  5559. }
  5560. U.MD.D.I.openInApplication("dataClass", _data)
  5561. } else if (e.data.tools && e.data.tools == "opencCscl") {
  5562. let _data = {
  5563. cid: e.data.cid || '',
  5564. gid: e.data.gid || '',
  5565. }
  5566. U.MD.D.I.openInApplication("opencCscl", _data)
  5567. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  5568. U.MD.D.I.openApplication("dataBoardTest")
  5569. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  5570. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  5571. } else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  5572. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  5573. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  5574. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  5575. } else if (e.data.tools && e.data.tools == "openCourseAiUpdate2") {
  5576. U.MD.D.I.openInApplication("openCourseAiUpdate2", e.data.cid)
  5577. } else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  5578. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  5579. } else if (e.data.tools && e.data.tools == "openCoursePptUpdate") {
  5580. U.MD.D.I.openInApplication("openCoursePptUpdate", e.data.cid)
  5581. } else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  5582. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  5583. } else if (e.data.tools && e.data.tools == "loginSz") {
  5584. U.MD.D.I.openInApplication("loginSz")
  5585. } else if (e.data.tools && e.data.tools == "classroom_observation_board") {
  5586. if ($('#classroom_observation_board')[0]) {
  5587. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  5588. }
  5589. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  5590. } else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment") {
  5591. if ($('#classroom_observation_ob_comment')[0]) {
  5592. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  5593. }
  5594. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  5595. } else if (e.data.tools && e.data.tools == "logout") {
  5596. U.MD.U.LO.logoutSystem()
  5597. } else if (e.data.tools && e.data.tools == "getLogin") {
  5598. let _iframe = $('#UI_Login')[0];
  5599. if (_iframe) {
  5600. var userInfo = US.userInfo;
  5601. var type = 2
  5602. if (userInfo && userInfo.userid) {
  5603. type = 1
  5604. }
  5605. _contentWindow = _iframe.contentWindow;
  5606. _contentWindow.postMessage({ tools: "getLogin", type: type }, "*")
  5607. }
  5608. }
  5609. });
  5610. U.MD.D.I.selectUser = function () {
  5611. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  5612. if (res.value[0].length > 0) {
  5613. US.userInfo = res.value[0][0];
  5614. $(".userName")[0].innerHTML = US.userInfo.username;
  5615. }
  5616. }, [], { "type": "GET", "withCredentials": true });
  5617. }
  5618. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  5619. var _userinfo = US.userInfo, //登录用户信息
  5620. _userid = US.userInfo.userid, //登录用户id
  5621. _oid = _userinfo.organizeid,
  5622. _type = US.userInfo.type,
  5623. _org = US.userInfo.org,
  5624. _role = US.userInfo.role,
  5625. _classId = US.userInfo.classid;
  5626. if (_type == 4) {
  5627. tType = 4
  5628. }
  5629. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies", "studyDetail"]
  5630. if (opArray.includes(str)) {
  5631. let _str = str
  5632. if (str == 'appStore') {
  5633. _str = "cocoFlow"
  5634. } else if (str == "futureClass") {
  5635. _str = "cocoNote"
  5636. } else if (str == "testTeacher" || str == "testTeacherSies") {
  5637. _str = "IntelligentForm"
  5638. } else if (str == "testStudent" || str == "testStudentSies") {
  5639. _str = "TeacherCenter"
  5640. }
  5641. try {
  5642. if (data) {
  5643. U.MD.D.addOp3('1', "", { type: _str + 'Open', cid: data }, "success")
  5644. } else {
  5645. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  5646. }
  5647. } catch (error) {
  5648. console.log(error);
  5649. }
  5650. }
  5651. switch (str) {
  5652. case "studyDetailNT": //无终端模式
  5653. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5654. setTimeout(() => {
  5655. U.MD.U.L.login();
  5656. }, 2000);
  5657. } else {
  5658. _formdiv = new U.UF.UI.form(
  5659. "课程详情",
  5660. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5661. "id": "studyDetailNT",
  5662. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5663. "onresize": function () { }
  5664. }, {
  5665. closecallback: function () { }
  5666. }, { "style": { "height": "36px" } }).form; //创建窗体
  5667. _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); } }
  5668. break;
  5669. }
  5670. case "studyDetail":
  5671. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5672. setTimeout(() => {
  5673. U.MD.U.L.login();
  5674. }, 2000);
  5675. } else {
  5676. _formdiv = new U.UF.UI.form(
  5677. "课程详情",
  5678. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5679. "id": "studyDetail",
  5680. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. _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); } }
  5686. break;
  5687. }
  5688. case "studyDetailTrain":
  5689. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5690. setTimeout(() => {
  5691. U.MD.U.L.login();
  5692. }, 2000);
  5693. } else {
  5694. _formdiv = new U.UF.UI.form(
  5695. "培训详情",
  5696. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5697. "id": "studyDetailTrain",
  5698. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5699. "onresize": function () { }
  5700. }, {
  5701. closecallback: function () { }
  5702. }, { "style": { "height": "36px" } }).form; //创建窗体
  5703. _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); } }
  5704. break;
  5705. }
  5706. case "studyDetailS":
  5707. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5708. setTimeout(() => {
  5709. U.MD.U.L.login();
  5710. }, 2000);
  5711. } else {
  5712. _formdiv = new U.UF.UI.form(
  5713. "项目详情",
  5714. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5715. "id": "studyDetailS",
  5716. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5717. "onresize": function () { }
  5718. }, {
  5719. closecallback: function () { }
  5720. }, { "style": { "height": "36px" } }).form; //创建窗体
  5721. _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); } }
  5722. break;
  5723. }
  5724. case "studyDetailStudio":
  5725. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5726. setTimeout(() => {
  5727. U.MD.U.L.login();
  5728. }, 2000);
  5729. } else {
  5730. _formdiv = new U.UF.UI.form(
  5731. "工作详情",
  5732. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5733. "id": "studyDetailStudio",
  5734. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5735. "onresize": function () { }
  5736. }, {
  5737. closecallback: function () { }
  5738. }, { "style": { "height": "36px" } }).form; //创建窗体
  5739. _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); } }
  5740. break;
  5741. }
  5742. case "studyDetailS5":
  5743. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5744. setTimeout(() => {
  5745. U.MD.U.L.login();
  5746. }, 2000);
  5747. } else {
  5748. _formdiv = new U.UF.UI.form(
  5749. "项目详情",
  5750. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5751. "id": "studyDetailS",
  5752. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  5753. "onresize": function () { }
  5754. }, {
  5755. closecallback: function () { }
  5756. }, { "style": { "height": "36px" } }).form; //创建窗体
  5757. _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); } }
  5758. break;
  5759. }
  5760. case "studyDetailGM":
  5761. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5762. setTimeout(() => {
  5763. U.MD.U.L.login();
  5764. }, 2000);
  5765. } else {
  5766. _formdiv = new U.UF.UI.form(
  5767. "课程详情",
  5768. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5769. "id": "studyDetail",
  5770. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5771. "onresize": function () { }
  5772. }, {
  5773. closecallback: function () { }
  5774. }, { "style": { "height": "36px" } }).form; //创建窗体
  5775. _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); } }
  5776. break;
  5777. }
  5778. case "hanUrl":
  5779. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5780. setTimeout(() => {
  5781. U.MD.U.L.login();
  5782. }, 2000);
  5783. } else {
  5784. _formdiv = new U.UF.UI.form(
  5785. "汉字宫",
  5786. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  5787. "id": "hanUrl",
  5788. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5789. "onresize": function () { }
  5790. }, {
  5791. closecallback: function () { }
  5792. }, { "style": { "height": "36px" } }).form; //创建窗体
  5793. _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); } }
  5794. break;
  5795. }
  5796. case "index":
  5797. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5798. setTimeout(() => {
  5799. U.MD.U.L.login();
  5800. }, 2000);
  5801. } else {
  5802. _formdiv = new U.UF.UI.form(
  5803. "课程中心",
  5804. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5805. "id": "study",
  5806. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5807. "onresize": function () { }
  5808. }, {
  5809. closecallback: function () { }
  5810. }, { "style": { "height": "36px" } }).form; //创建窗体
  5811. _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); } }
  5812. break;
  5813. }
  5814. case "dataClass":
  5815. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5816. setTimeout(() => {
  5817. U.MD.U.L.login();
  5818. }, 2000);
  5819. } else {
  5820. _formdiv = new U.UF.UI.form(
  5821. "数据报告",
  5822. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5823. "id": "dataClass",
  5824. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5825. "onresize": function () { }
  5826. }, {
  5827. closecallback: function () { }
  5828. }, { "style": { "height": "36px" } }).form; //创建窗体
  5829. _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); } }
  5830. break;
  5831. }
  5832. case "opencCscl":
  5833. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5834. setTimeout(() => {
  5835. U.MD.U.L.login();
  5836. }, 2000);
  5837. } else {
  5838. _formdiv = new U.UF.UI.form(
  5839. "协同建构",
  5840. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5841. "id": "futureClass",
  5842. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5843. "onresize": function () { }
  5844. }, {
  5845. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  5846. }, { "style": { "height": "36px" } }).form; //创建窗体
  5847. _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); } }
  5848. break;
  5849. }
  5850. case "openCourseUpdate":
  5851. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5852. setTimeout(() => {
  5853. U.MD.U.L.login();
  5854. }, 2000);
  5855. } else {
  5856. _formdiv = new U.UF.UI.form(
  5857. "课程管理",
  5858. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5859. "id": "openCourseUpdate",
  5860. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5861. "onresize": function () { }
  5862. }, {
  5863. closecallback: function () { }
  5864. }, { "style": { "height": "36px" } }).form; //创建窗体
  5865. break;
  5866. }
  5867. case "openNewCourseUpdate":
  5868. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5869. setTimeout(() => {
  5870. U.MD.U.L.login();
  5871. }, 2000);
  5872. } else {
  5873. _formdiv = new U.UF.UI.form(
  5874. "课程管理",
  5875. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5876. "id": "openCourseUpdate",
  5877. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5878. "onresize": function () { }
  5879. }, {
  5880. closecallback: function () { }
  5881. }, { "style": { "height": "36px" } }).form; //创建窗体
  5882. break;
  5883. }
  5884. case "openCoursePptUpdate":
  5885. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5886. setTimeout(() => {
  5887. U.MD.U.L.login();
  5888. }, 2000);
  5889. } else {
  5890. _formdiv = new U.UF.UI.form(
  5891. "课程管理",
  5892. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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/#/pptEasy?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5893. "id": "openCourseUpdate",
  5894. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5895. "onresize": function () { }
  5896. }, {
  5897. closecallback: function () { }
  5898. }, { "style": { "height": "36px" } }).form; //创建窗体
  5899. break;
  5900. }
  5901. case "openCourseEUpdate":
  5902. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5903. setTimeout(() => {
  5904. U.MD.U.L.login();
  5905. }, 2000);
  5906. } else {
  5907. _formdiv = new U.UF.UI.form(
  5908. "课程管理",
  5909. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5910. "id": "openCourseUpdate",
  5911. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5912. "onresize": function () { }
  5913. }, {
  5914. closecallback: function () { }
  5915. }, { "style": { "height": "36px" } }).form; //创建窗体
  5916. break;
  5917. }
  5918. case "openCourseAiUpdate":
  5919. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5920. setTimeout(() => {
  5921. U.MD.U.L.login();
  5922. }, 2000);
  5923. } else {
  5924. _formdiv = new U.UF.UI.form(
  5925. "课程管理",
  5926. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5927. "id": "openCourseUpdate",
  5928. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5929. "onresize": function () { }
  5930. }, {
  5931. closecallback: function () { }
  5932. }, { "style": { "height": "36px" } }).form; //创建窗体
  5933. break;
  5934. }
  5935. case "openCourseAiUpdate2":
  5936. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5937. setTimeout(() => {
  5938. U.MD.U.L.login();
  5939. }, 2000);
  5940. } else {
  5941. _formdiv = new U.UF.UI.form(
  5942. "课程管理",
  5943. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5944. "id": "openCourseUpdate",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. break;
  5951. }
  5952. case "openCourseNewUpdate":
  5953. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5954. setTimeout(() => {
  5955. U.MD.U.L.login();
  5956. }, 2000);
  5957. } else {
  5958. _formdiv = new U.UF.UI.form(
  5959. "课程管理",
  5960. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  5961. "id": "openCourseUpdate",
  5962. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5963. "onresize": function () { }
  5964. }, {
  5965. closecallback: function () { }
  5966. }, { "style": { "height": "36px" } }).form; //创建窗体
  5967. break;
  5968. }
  5969. case "inviteLoginSz":
  5970. _formdiv = new U.UF.UI.form(
  5971. "随机码登录",
  5972. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/inviteLoginSZ?code=" + data }), {
  5973. "id": "loginSz",
  5974. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5975. "onresize": function () { }
  5976. }, {
  5977. closecallback: function () { }
  5978. }, { "style": { "height": "36px" } }).form; //创建窗体
  5979. break;
  5980. case "loginSz":
  5981. _formdiv = new U.UF.UI.form(
  5982. "教师登录",
  5983. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  5984. "id": "loginSz",
  5985. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5986. "onresize": function () { }
  5987. }, {
  5988. closecallback: function () { }
  5989. }, { "style": { "height": "36px" } }).form; //创建窗体
  5990. break;
  5991. case "teacher":
  5992. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5993. setTimeout(() => {
  5994. U.MD.U.L.login();
  5995. }, 2000);
  5996. } else {
  5997. _formdiv = new U.UF.UI.form(
  5998. "教师管理",
  5999. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6000. "id": "teacher",
  6001. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6002. "onresize": function () { }
  6003. }, {
  6004. closecallback: function () { }
  6005. }, { "style": { "height": "36px" } }).form; //创建窗体
  6006. break;
  6007. }
  6008. case "dataBoardSZArea":
  6009. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6010. setTimeout(() => {
  6011. U.MD.U.L.login();
  6012. }, 2000);
  6013. } else {
  6014. _formdiv = new U.UF.UI.form(
  6015. "综合数据看板",
  6016. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6017. "id": "dataBoardSZArea",
  6018. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6019. "onresize": function () { }
  6020. }, {
  6021. closecallback: function () { }
  6022. }, { "style": { "height": "36px" } }).form; //创建窗体
  6023. break;
  6024. }
  6025. case "dataBoardSZCity":
  6026. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6027. setTimeout(() => {
  6028. U.MD.U.L.login();
  6029. }, 2000);
  6030. } else {
  6031. _formdiv = new U.UF.UI.form(
  6032. "综合数据看板",
  6033. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  6034. "id": "dataBoardSZCity",
  6035. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6036. "onresize": function () { }
  6037. }, {
  6038. closecallback: function () { }
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. break;
  6041. }
  6042. case "classroom_observation_board":
  6043. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6044. setTimeout(() => {
  6045. U.MD.U.L.login();
  6046. }, 2000);
  6047. } else {
  6048. _formdiv = new U.UF.UI.form(
  6049. "课堂观察",
  6050. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid=" + data }), {
  6051. "id": "classroom_observation_board",
  6052. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6053. "onresize": function () { }
  6054. }, {
  6055. closecallback: function () { }
  6056. }, { "style": { "height": "36px" } }).form; //创建窗体
  6057. break;
  6058. }
  6059. case "classroom_observation_ob_comment":
  6060. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  6061. setTimeout(() => {
  6062. U.MD.U.L.login();
  6063. }, 2000);
  6064. } else {
  6065. _formdiv = new U.UF.UI.form(
  6066. "课堂审核",
  6067. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid=" + data }), {
  6068. "id": "classroom_observation_ob_comment",
  6069. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6070. "onresize": function () { }
  6071. }, {
  6072. closecallback: function () { }
  6073. }, { "style": { "height": "36px" } }).form; //创建窗体
  6074. break;
  6075. }
  6076. case "gptConfig":
  6077. _formdiv = new U.UF.UI.form(
  6078. data.name ? data.name : "应用中心",
  6079. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": data.url }), {
  6080. "id": "gptConfig" + data.id,
  6081. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6082. "onresize": function () { }
  6083. }, {
  6084. closecallback: function () { }
  6085. }, { "style": { "height": "36px" } }).form; //创建窗体
  6086. break;
  6087. case "testDetail":
  6088. _formdiv = new U.UF.UI.form(
  6089. "表单填写",
  6090. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/doTest?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&type=3&role=" + _role }), {
  6091. "id": "testDetail" + data,
  6092. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6093. "onresize": function () { }
  6094. }, {
  6095. closecallback: function () { }
  6096. }, { "style": { "height": "36px" } }).form; //创建窗体
  6097. break;
  6098. }
  6099. }
  6100. U.MD.D.I.openApplication = function (str, obj, info) {
  6101. obj = obj || {};
  6102. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6103. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6104. _userinfo = US.userInfo, //登录用户信息
  6105. _userid = obj.userid || US.userInfo.userid, //登录用户id
  6106. _oid = obj.organizeid || _userinfo.organizeid,
  6107. _type = US.userInfo.type,
  6108. _org = obj.org || US.userInfo.org,
  6109. _role = US.userInfo.role,
  6110. _classId = US.userInfo.classid,
  6111. _TscreenType = 1
  6112. _screenType = 2,
  6113. _SscreenType = 3;
  6114. let iframeBool = true
  6115. if (U.UF.UI.form.allForm[str]) {
  6116. iframeBool = false
  6117. }
  6118. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  6119. return;
  6120. }
  6121. let opArray = ["project", "study", "appStore", "futureClass", "evaluate", "student", "testTeacher", "testStudent", "testTeacherSies", "testStudentSies"]
  6122. if (opArray.includes(str)) {
  6123. let _str = str
  6124. if (str == 'appStore') {
  6125. _str = "cocoFlow"
  6126. } else if (str == "futureClass") {
  6127. _str = "cocoNote"
  6128. } else if (str == "testTeacher" || str == "testTeacherSies") {
  6129. _str = "IntelligentForm"
  6130. } else if (str == "testStudent" || str == "testStudentSies") {
  6131. _str = "TeacherCenter"
  6132. }
  6133. try {
  6134. U.MD.D.addOp3('1', "", { type: _str + 'Open' }, "success")
  6135. } catch (error) {
  6136. console.log(error);
  6137. }
  6138. }
  6139. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6140. switch (str) {
  6141. case "studnetProject": //好友打开
  6142. _formdiv = new U.UF.UI.form(
  6143. "我的项目",
  6144. $$("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 }), {
  6145. "id": "studnetProject",
  6146. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _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); } }
  6152. break;
  6153. case "studentEvaluate": //好友打开
  6154. _formdiv = new U.UF.UI.form(
  6155. "我的评价",
  6156. $$("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 }), {
  6157. "id": "studentEvaluate",
  6158. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _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); } }
  6164. break;
  6165. case "my":
  6166. _formdiv = new U.UF.UI.form(
  6167. "我的资料",
  6168. $$("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 }), {
  6169. "id": "my",
  6170. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _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); } }
  6176. break;
  6177. case "program":
  6178. _formdiv = new U.UF.UI.form(
  6179. "编程平台",
  6180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6181. "id": "program",
  6182. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _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); } }
  6188. break;
  6189. case "library":
  6190. _formdiv = new U.UF.UI.form(
  6191. "素材库",
  6192. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6193. "id": "library",
  6194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _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); } }
  6200. break;
  6201. case "whiteboard":
  6202. _formdiv = new U.UF.UI.form(
  6203. "电子白板",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6205. "id": "whiteboard",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _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); } }
  6212. break;
  6213. case "investigation":
  6214. _formdiv = new U.UF.UI.form(
  6215. "问卷调查",
  6216. $$("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 }), {
  6217. "id": "investigation",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _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); } }
  6224. break;
  6225. case "note":
  6226. _formdiv = new U.UF.UI.form(
  6227. "便签分类",
  6228. $$("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 }), {
  6229. "id": "note",
  6230. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _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); } }
  6236. break;
  6237. // case "score":
  6238. // _formdiv = new U.UF.UI.form(
  6239. // "量规评分",
  6240. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6241. // "id": "score",
  6242. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. // "onresize": function() {}
  6244. // }, {
  6245. // closecallback: function() {}
  6246. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. // _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); } }
  6248. // break;
  6249. case "mind":
  6250. _formdiv = new U.UF.UI.form(
  6251. "思维导图",
  6252. $$("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"
  6253. "id": "mind",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _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); } }
  6260. break;
  6261. case "doc":
  6262. // U.MD.D.I.isRoom();
  6263. _formdiv = new U.UF.UI.form(
  6264. "协同文档",
  6265. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  6266. "id": "doc",
  6267. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6268. "onresize": function () { }
  6269. }, {
  6270. closecallback: function () { }
  6271. }, { "style": { "height": "36px" } }).form; //创建窗体
  6272. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6273. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6274. // })
  6275. _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); } }
  6276. break;
  6277. case "studentStudy":
  6278. _formdiv = new U.UF.UI.form(
  6279. "课程中心",
  6280. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6281. "id": "studentStudy",
  6282. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6283. "onresize": function () { }
  6284. }, {
  6285. closecallback: function () { }
  6286. }, { "style": { "height": "36px" } }).form; //创建窗体
  6287. _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); } }
  6288. break;
  6289. case "train": //好友打开
  6290. _formdiv = new U.UF.UI.form(
  6291. "训练平台",
  6292. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6293. "id": "train",
  6294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6295. "onresize": function () { }
  6296. }, {
  6297. closecallback: function () { }
  6298. }, { "style": { "height": "36px" } }).form; //创建窗体
  6299. _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); } }
  6300. break;
  6301. case "mindNetwork": //好友打开
  6302. _formdiv = new U.UF.UI.form(
  6303. "思维网格",
  6304. $$("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 }), {
  6305. "id": "mindNetwork",
  6306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6307. "onresize": function () { }
  6308. }, {
  6309. closecallback: function () { }
  6310. }, { "style": { "height": "36px" } }).form; //创建窗体
  6311. _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); } }
  6312. break;
  6313. case "studentClassRoom": //好友打开
  6314. _formdiv = new U.UF.UI.form(
  6315. "实时课堂",
  6316. $$("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 }), {
  6317. "id": "studentClassRoom",
  6318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6319. "onresize": function () { }
  6320. }, {
  6321. closecallback: function () { }
  6322. }, { "style": { "height": "36px" } }).form; //创建窗体
  6323. _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); } }
  6324. setTimeout(() => {
  6325. U.UF.F.windowZooming(_formdiv)
  6326. }, 0);
  6327. break;
  6328. }
  6329. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6330. switch (str) {
  6331. case "studnetProject": //好友打开
  6332. _formdiv = new U.UF.UI.form(
  6333. "我的项目",
  6334. $$("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 }), {
  6335. "id": "studnetProject",
  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/project.png)" }, "name": "我的项目", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6342. break;
  6343. case "studentEvaluate": //好友打开
  6344. _formdiv = new U.UF.UI.form(
  6345. "我的评价",
  6346. $$("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 }), {
  6347. "id": "studentEvaluate",
  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/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6354. break;
  6355. case "my":
  6356. _formdiv = new U.UF.UI.form(
  6357. "我的资料",
  6358. $$("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 }), {
  6359. "id": "my",
  6360. "style": { "width": "42%", "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/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6366. break;
  6367. case "program":
  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://x.cocorobo.cn" }), {
  6371. "id": "program",
  6372. "style": { "width": "70%", "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/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6378. break;
  6379. case "library":
  6380. _formdiv = new U.UF.UI.form(
  6381. "素材库",
  6382. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6383. "id": "library",
  6384. "style": { "width": "90%", "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/library.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6390. break;
  6391. case "whiteboard":
  6392. _formdiv = new U.UF.UI.form(
  6393. "电子白板",
  6394. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6395. "id": "whiteboard",
  6396. "style": { "width": "90%", "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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6402. break;
  6403. case "investigation":
  6404. _formdiv = new U.UF.UI.form(
  6405. "问卷调查",
  6406. $$("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 }), {
  6407. "id": "investigation",
  6408. "style": { "width": "90%", "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/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6414. break;
  6415. case "note":
  6416. _formdiv = new U.UF.UI.form(
  6417. "便签分类",
  6418. $$("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 }), {
  6419. "id": "note",
  6420. "style": { "width": "20%", "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/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6426. break;
  6427. // case "score":
  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": US.Config.bpbl + "" }), {
  6431. // "id": "score",
  6432. // "style": { "width": "90%", "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/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  6438. // break;
  6439. case "mind":
  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": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  6443. "id": "mind",
  6444. "style": { "width": "90%", "height": "90%", "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/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6450. break;
  6451. case "doc":
  6452. // U.MD.D.I.isRoom();
  6453. _formdiv = new U.UF.UI.form(
  6454. "协同文档",
  6455. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6456. "id": "doc",
  6457. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6458. "onresize": function () { }
  6459. }, {
  6460. closecallback: function () { }
  6461. }, { "style": { "height": "36px" } }).form; //创建窗体
  6462. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6463. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6464. })
  6465. _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); } }
  6466. break;
  6467. case "train": //好友打开
  6468. _formdiv = new U.UF.UI.form(
  6469. "训练平台",
  6470. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6471. "id": "train",
  6472. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6473. "onresize": function () { }
  6474. }, {
  6475. closecallback: function () { }
  6476. }, { "style": { "height": "36px" } }).form; //创建窗体
  6477. _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); } }
  6478. break;
  6479. case "studentStudy":
  6480. _formdiv = new U.UF.UI.form(
  6481. "课程中心",
  6482. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6483. "id": "studentStudy",
  6484. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6485. "onresize": function () { }
  6486. }, {
  6487. closecallback: function () { }
  6488. }, { "style": { "height": "36px" } }).form; //创建窗体
  6489. _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); } }
  6490. break;
  6491. case "mindNetwork": //好友打开
  6492. _formdiv = new U.UF.UI.form(
  6493. "思维网格",
  6494. $$("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 }), {
  6495. "id": "mindNetwork",
  6496. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6497. "onresize": function () { }
  6498. }, {
  6499. closecallback: function () { }
  6500. }, { "style": { "height": "36px" } }).form; //创建窗体
  6501. _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); } }
  6502. break;
  6503. case "studentClassRoom": //好友打开
  6504. _formdiv = new U.UF.UI.form(
  6505. "实时课堂",
  6506. $$("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 }), {
  6507. "id": "studentClassRoom",
  6508. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6509. "onresize": function () { }
  6510. }, {
  6511. closecallback: function () { }
  6512. }, { "style": { "height": "36px" } }).form; //创建窗体
  6513. _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); } }
  6514. setTimeout(() => {
  6515. U.UF.F.windowZooming(_formdiv)
  6516. }, 0);
  6517. break;
  6518. }
  6519. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  6520. //选择应用处理
  6521. switch (str) {
  6522. case "project": //好友打开
  6523. _formdiv = new U.UF.UI.form(
  6524. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  6525. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6526. "id": "project",
  6527. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6528. "onresize": function () { }
  6529. }, {
  6530. closecallback: function () { }
  6531. }, { "style": { "height": "36px" } }).form; //创建窗体
  6532. _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); } }
  6533. break;
  6534. case "student":
  6535. _formdiv = new U.UF.UI.form(
  6536. "学生管理",
  6537. $$("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 }), {
  6538. "id": "student",
  6539. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6540. "onresize": function () { }
  6541. }, {
  6542. closecallback: function () { }
  6543. }, { "style": { "height": "36px" } }).form; //创建窗体
  6544. _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); } }
  6545. break;
  6546. case "evaluate":
  6547. _formdiv = new U.UF.UI.form(
  6548. "学生评价",
  6549. $$("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 }), {
  6550. "id": "evaluate",
  6551. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6552. "onresize": function () { }
  6553. }, {
  6554. closecallback: function () { }
  6555. }, { "style": { "height": "36px" } }).form; //创建窗体
  6556. _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); } }
  6557. break;
  6558. case "sys":
  6559. _formdiv = new U.UF.UI.form(
  6560. "目标管理",
  6561. $$("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 }), {
  6562. "id": "sys",
  6563. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6564. "onresize": function () { }
  6565. }, {
  6566. closecallback: function () { }
  6567. }, { "style": { "height": "36px" } }).form; //创建窗体
  6568. _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); } }
  6569. break;
  6570. case "courseDesign":
  6571. _formdiv = new U.UF.UI.form(
  6572. "项目设计",
  6573. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6574. "id": "courseDesign",
  6575. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6576. "onresize": function () { }
  6577. }, {
  6578. closecallback: function () { }
  6579. }, { "style": { "height": "36px" } }).form; //创建窗体
  6580. _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); } }
  6581. break;
  6582. case "program":
  6583. _formdiv = new U.UF.UI.form(
  6584. "编程平台",
  6585. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6586. "id": "program",
  6587. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6588. "onresize": function () { }
  6589. }, {
  6590. closecallback: function () { }
  6591. }, { "style": { "height": "36px" } }).form; //创建窗体
  6592. _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); } }
  6593. break;
  6594. case "class":
  6595. _formdiv = new U.UF.UI.form(
  6596. "班级管理",
  6597. $$("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 }), {
  6598. "id": "class",
  6599. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6600. "onresize": function () { }
  6601. }, {
  6602. closecallback: function () { }
  6603. }, { "style": { "height": "36px" } }).form; //创建窗体
  6604. _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); } }
  6605. break;
  6606. case "Grade":
  6607. _formdiv = new U.UF.UI.form(
  6608. "年级管理",
  6609. $$("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 }), {
  6610. "id": "Grade",
  6611. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6612. "onresize": function () { }
  6613. }, {
  6614. closecallback: function () { }
  6615. }, { "style": { "height": "36px" } }).form; //创建窗体
  6616. _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); } }
  6617. break;
  6618. case "teacherOffice":
  6619. _formdiv = new U.UF.UI.form(
  6620. "教研室",
  6621. $$("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 }), {
  6622. "id": "teacherOffice",
  6623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6624. "onresize": function () { }
  6625. }, {
  6626. closecallback: function () { }
  6627. }, { "style": { "height": "36px" } }).form; //创建窗体
  6628. _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); } }
  6629. break;
  6630. case "my":
  6631. _formdiv = new U.UF.UI.form(
  6632. "我的资料",
  6633. $$("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 }), {
  6634. "id": "my",
  6635. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6636. "onresize": function () { }
  6637. }, {
  6638. closecallback: function () { }
  6639. }, { "style": { "height": "36px" } }).form; //创建窗体
  6640. _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); } }
  6641. break;
  6642. case "notice":
  6643. _formdiv = new U.UF.UI.form(
  6644. "通知公告",
  6645. $$("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 }), {
  6646. "id": "notice",
  6647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6648. "onresize": function () { }
  6649. }, {
  6650. closecallback: function () { }
  6651. }, { "style": { "height": "36px" } }).form; //创建窗体
  6652. _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); } }
  6653. break;
  6654. case "library":
  6655. _formdiv = new U.UF.UI.form(
  6656. "素材库",
  6657. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#/library?userid=" + _userid + "&org=" + _org }), {
  6658. "id": "library",
  6659. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6660. "onresize": function () { }
  6661. }, {
  6662. closecallback: function () { }
  6663. }, { "style": { "height": "36px" } }).form; //创建窗体
  6664. _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); } }
  6665. break;
  6666. case "whiteboard":
  6667. _formdiv = new U.UF.UI.form(
  6668. "电子白板",
  6669. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6670. "id": "whiteboard",
  6671. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6672. "onresize": function () { }
  6673. }, {
  6674. closecallback: function () { }
  6675. }, { "style": { "height": "36px" } }).form; //创建窗体
  6676. _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); } }
  6677. break;
  6678. case "investigation":
  6679. _formdiv = new U.UF.UI.form(
  6680. "问卷调查",
  6681. $$("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 }), {
  6682. "id": "investigation",
  6683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6684. "onresize": function () { }
  6685. }, {
  6686. closecallback: function () { }
  6687. }, { "style": { "height": "36px" } }).form; //创建窗体
  6688. _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); } }
  6689. break;
  6690. case "note":
  6691. _formdiv = new U.UF.UI.form(
  6692. "便签分类",
  6693. $$("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 }), {
  6694. "id": "note",
  6695. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  6696. "onresize": function () { }
  6697. }, {
  6698. closecallback: function () { }
  6699. }, { "style": { "height": "36px" } }).form; //创建窗体
  6700. _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); } }
  6701. break;
  6702. // case "score":
  6703. // _formdiv = new U.UF.UI.form(
  6704. // "量规评分",
  6705. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  6706. // "id": "score",
  6707. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6708. // "onresize": function() {}
  6709. // }, {
  6710. // closecallback: function() {}
  6711. // }, { "style": { "height": "36px" } }).form; //创建窗体
  6712. // _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); } }
  6713. // break;
  6714. case "mind":
  6715. _formdiv = new U.UF.UI.form(
  6716. "思维导图",
  6717. $$("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"
  6718. "id": "mind",
  6719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6720. "onresize": function () { }
  6721. }, {
  6722. closecallback: function () { }
  6723. }, { "style": { "height": "36px" } }).form; //创建窗体
  6724. _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); } }
  6725. break;
  6726. case "doc":
  6727. // U.MD.D.I.isRoom();
  6728. _formdiv = new U.UF.UI.form(
  6729. "协同文档",
  6730. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6731. "id": "doc",
  6732. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6733. "onresize": function () { }
  6734. }, {
  6735. closecallback: function () { }
  6736. }, { "style": { "height": "36px" } }).form; //创建窗体
  6737. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6738. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6739. })
  6740. _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); } }
  6741. break;
  6742. case "study":
  6743. _formdiv = new U.UF.UI.form(
  6744. "课程中心",
  6745. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6746. "id": "study",
  6747. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6748. "onresize": function () { }
  6749. }, {
  6750. closecallback: function () { }
  6751. }, { "style": { "height": "36px" } }).form; //创建窗体
  6752. _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); } }
  6753. break;
  6754. case "mindNetwork": //好友打开
  6755. _formdiv = new U.UF.UI.form(
  6756. "思维网格",
  6757. $$("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 }), {
  6758. "id": "mindNetwork",
  6759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6760. "onresize": function () { }
  6761. }, {
  6762. closecallback: function () { }
  6763. }, { "style": { "height": "36px" } }).form; //创建窗体
  6764. _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); } }
  6765. break;
  6766. case "train": //好友打开
  6767. _formdiv = new U.UF.UI.form(
  6768. "训练平台",
  6769. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6770. "id": "mindNetwork",
  6771. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6772. "onresize": function () { }
  6773. }, {
  6774. closecallback: function () { }
  6775. }, { "style": { "height": "36px" } }).form; //创建窗体
  6776. _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); } }
  6777. break;
  6778. case "teacherClassRoom": //好友打开
  6779. _formdiv = new U.UF.UI.form(
  6780. "实时课堂",
  6781. $$("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 }), {
  6782. "id": "teacherClassRoom",
  6783. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6784. "onresize": function () { }
  6785. }, {
  6786. closecallback: function () { }
  6787. }, { "style": { "height": "36px" } }).form; //创建窗体
  6788. _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); } }
  6789. setTimeout(() => {
  6790. U.UF.F.windowZooming(_formdiv)
  6791. }, 0);
  6792. break;
  6793. }
  6794. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  6795. switch (str) {
  6796. case "project": //好友打开
  6797. _formdiv = new U.UF.UI.form(
  6798. "课程管理",
  6799. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  6800. "id": "project",
  6801. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. break;
  6808. case "evaluate":
  6809. _formdiv = new U.UF.UI.form(
  6810. "学生评价",
  6811. $$("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 }), {
  6812. "id": "evaluate",
  6813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6814. "onresize": function () { }
  6815. }, {
  6816. closecallback: function () { }
  6817. }, { "style": { "height": "36px" } }).form; //创建窗体
  6818. _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); } }
  6819. break;
  6820. case "notice":
  6821. _formdiv = new U.UF.UI.form(
  6822. "通知公告",
  6823. $$("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 }), {
  6824. "id": "notice",
  6825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6826. "onresize": function () { }
  6827. }, {
  6828. closecallback: function () { }
  6829. }, { "style": { "height": "36px" } }).form; //创建窗体
  6830. _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); } }
  6831. break;
  6832. case "stuLibrary":
  6833. _formdiv = new U.UF.UI.form(
  6834. "学习资料",
  6835. $$("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 }), {
  6836. "id": "stuLibrary",
  6837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6838. "onresize": function () { }
  6839. }, {
  6840. closecallback: function () { }
  6841. }, { "style": { "height": "36px" } }).form; //创建窗体
  6842. _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); } }
  6843. break;
  6844. case "program":
  6845. _formdiv = new U.UF.UI.form(
  6846. "编程平台",
  6847. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  6848. "id": "program",
  6849. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6850. "onresize": function () { }
  6851. }, {
  6852. closecallback: function () { }
  6853. }, { "style": { "height": "36px" } }).form; //创建窗体
  6854. _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); } }
  6855. break;
  6856. case "whiteboard":
  6857. _formdiv = new U.UF.UI.form(
  6858. "电子白板",
  6859. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  6860. "id": "whiteboard",
  6861. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6862. "onresize": function () { }
  6863. }, {
  6864. closecallback: function () { }
  6865. }, { "style": { "height": "36px" } }).form; //创建窗体
  6866. _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); } }
  6867. break;
  6868. case "investigation":
  6869. _formdiv = new U.UF.UI.form(
  6870. "问卷调查",
  6871. $$("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 }), {
  6872. "id": "investigation",
  6873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6874. "onresize": function () { }
  6875. }, {
  6876. closecallback: function () { }
  6877. }, { "style": { "height": "36px" } }).form; //创建窗体
  6878. _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); } }
  6879. break;
  6880. case "mind":
  6881. _formdiv = new U.UF.UI.form(
  6882. "思维导图",
  6883. $$("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"
  6884. "id": "mind",
  6885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6886. "onresize": function () { }
  6887. }, {
  6888. closecallback: function () { }
  6889. }, { "style": { "height": "36px" } }).form; //创建窗体
  6890. _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); } }
  6891. break;
  6892. case "doc":
  6893. // U.MD.D.I.isRoom();
  6894. _formdiv = new U.UF.UI.form(
  6895. "协同文档",
  6896. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  6897. "id": "doc",
  6898. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6899. "onresize": function () { }
  6900. }, {
  6901. closecallback: function () { }
  6902. }, { "style": { "height": "36px" } }).form; //创建窗体
  6903. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6904. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  6905. })
  6906. _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); } }
  6907. break;
  6908. case "study":
  6909. _formdiv = new U.UF.UI.form(
  6910. "课程中心",
  6911. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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
  6912. "id": "study",
  6913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6914. "onresize": function () { }
  6915. }, {
  6916. closecallback: function () { }
  6917. }, { "style": { "height": "36px" } }).form; //创建窗体
  6918. _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); } }
  6919. break;
  6920. case "mindNetwork": //好友打开
  6921. _formdiv = new U.UF.UI.form(
  6922. "思维网格",
  6923. $$("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 }), {
  6924. "id": "mindNetwork",
  6925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6926. "onresize": function () { }
  6927. }, {
  6928. closecallback: function () { }
  6929. }, { "style": { "height": "36px" } }).form; //创建窗体
  6930. _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); } }
  6931. break;
  6932. case "train": //好友打开
  6933. _formdiv = new U.UF.UI.form(
  6934. "训练平台",
  6935. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  6936. "id": "train",
  6937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6938. "onresize": function () { }
  6939. }, {
  6940. closecallback: function () { }
  6941. }, { "style": { "height": "36px" } }).form; //创建窗体
  6942. _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); } }
  6943. break;
  6944. case "sys":
  6945. _formdiv = new U.UF.UI.form(
  6946. "目标管理",
  6947. $$("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 }), {
  6948. "id": "sys",
  6949. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6950. "onresize": function () { }
  6951. }, {
  6952. closecallback: function () { }
  6953. }, { "style": { "height": "36px" } }).form; //创建窗体
  6954. _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); } }
  6955. break;
  6956. case "courseDesign":
  6957. _formdiv = new U.UF.UI.form(
  6958. "项目设计",
  6959. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  6960. "id": "courseDesign",
  6961. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6962. "onresize": function () { }
  6963. }, {
  6964. closecallback: function () { }
  6965. }, { "style": { "height": "36px" } }).form; //创建窗体
  6966. _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); } }
  6967. break;
  6968. }
  6969. } else if (!_type) {
  6970. switch (str) {
  6971. case "my":
  6972. _formdiv = new U.UF.UI.form(
  6973. "我的资料",
  6974. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/data?userid=" + _userid + "&org=" + _org }), {
  6975. "id": "my",
  6976. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6977. "onresize": function () { }
  6978. }, {
  6979. closecallback: function () { }
  6980. }, { "style": { "height": "36px" } }).form; //创建窗体
  6981. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6982. break;
  6983. }
  6984. }
  6985. switch (str) {
  6986. // AIprogram2 AI体验 aihub.cocorobo.cn
  6987. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  6988. // AIprogram AI编程 ai-blockly.cocorobo.cn
  6989. case "formulaEdi": //公式编辑
  6990. _formdiv = new U.UF.UI.form(
  6991. "公式编辑",
  6992. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  6993. "id": "formulaEdi",
  6994. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6995. "onresize": function () { }
  6996. }, {
  6997. closecallback: function () { }
  6998. }, { "style": { "height": "36px" } }).form; //创建窗体
  6999. _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); } }
  7000. break;
  7001. case "molStr": //分子结构
  7002. _formdiv = new U.UF.UI.form(
  7003. "分子结构",
  7004. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  7005. "id": "molStr",
  7006. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7007. "onresize": function () { }
  7008. }, {
  7009. closecallback: function () { }
  7010. }, { "style": { "height": "36px" } }).form; //创建窗体
  7011. _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); } }
  7012. break;
  7013. case "timeAxis": //时间轴
  7014. _formdiv = new U.UF.UI.form(
  7015. "时间轴",
  7016. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  7017. "id": "timeAxis",
  7018. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7019. "onresize": function () { }
  7020. }, {
  7021. closecallback: function () { }
  7022. }, { "style": { "height": "36px" } }).form; //创建窗体
  7023. _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); } }
  7024. break;
  7025. case "AIprogram2": //AI体验
  7026. _formdiv = new U.UF.UI.form(
  7027. "AI体验",
  7028. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  7029. "id": "AIprogram2",
  7030. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7031. "onresize": function () { }
  7032. }, {
  7033. closecallback: function () { }
  7034. }, { "style": { "height": "36px" } }).form; //创建窗体
  7035. _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); } }
  7036. break;
  7037. case "Pythonprogram": //python编程
  7038. _formdiv = new U.UF.UI.form(
  7039. "Python编程",
  7040. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  7041. "id": "Pythonprogram",
  7042. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7043. "onresize": function () { }
  7044. }, {
  7045. closecallback: function () { }
  7046. }, { "style": { "height": "36px" } }).form; //创建窗体
  7047. _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); } }
  7048. break;
  7049. case "AIprogram": //ai编程
  7050. _formdiv = new U.UF.UI.form(
  7051. "AI编程平台",
  7052. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  7053. "id": "AIprogram",
  7054. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7055. "onresize": function () { }
  7056. }, {
  7057. closecallback: function () { }
  7058. }, { "style": { "height": "36px" } }).form; //创建窗体
  7059. _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); } }
  7060. break;
  7061. case "CocoPi": //CocoPi
  7062. _formdiv = new U.UF.UI.form(
  7063. "CocoPi",
  7064. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  7065. "id": "CocoPi",
  7066. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7067. "onresize": function () { }
  7068. }, {
  7069. closecallback: function () { }
  7070. }, { "style": { "height": "36px" } }).form; //创建窗体
  7071. _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); } }
  7072. break;
  7073. case "Wood": //Wood
  7074. _formdiv = new U.UF.UI.form(
  7075. "海龟编程",
  7076. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  7077. "id": "Wood",
  7078. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7079. "onresize": function () { }
  7080. }, {
  7081. closecallback: function () { }
  7082. }, { "style": { "height": "36px" } }).form; //创建窗体
  7083. _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); } }
  7084. break;
  7085. case "car": //模拟驾驶
  7086. _formdiv = new U.UF.UI.form(
  7087. "模拟驾驶",
  7088. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  7089. "id": "car",
  7090. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7091. "onresize": function () { }
  7092. }, {
  7093. closecallback: function () { }
  7094. }, { "style": { "height": "36px" } }).form; //创建窗体
  7095. _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); } }
  7096. break;
  7097. case "lineSearch": //路径搜索
  7098. _formdiv = new U.UF.UI.form(
  7099. "路径搜索",
  7100. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/" }), {
  7101. "id": "lineSearch",
  7102. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7103. "onresize": function () { }
  7104. }, {
  7105. closecallback: function () { }
  7106. }, { "style": { "height": "36px" } }).form; //创建窗体
  7107. _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); } }
  7108. break;
  7109. case "deepLearning": //深度学习
  7110. _formdiv = new U.UF.UI.form(
  7111. "深度学习",
  7112. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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/#" }), {
  7113. "id": "deepLearning",
  7114. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7115. "onresize": function () { }
  7116. }, {
  7117. closecallback: function () { }
  7118. }, { "style": { "height": "36px" } }).form; //创建窗体
  7119. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/deepLearning.png)" }, "name": "深度学习", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7120. break;
  7121. case "allHistory": //深度学习
  7122. _formdiv = new U.UF.UI.form(
  7123. "全历史",
  7124. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  7125. "id": "allHistory",
  7126. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7127. "onresize": function () { }
  7128. }, {
  7129. closecallback: function () { }
  7130. }, { "style": { "height": "36px" } }).form; //创建窗体
  7131. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/allHistory.png)" }, "name": "全历史", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7132. break;
  7133. case "chatPDF": //ai编程
  7134. _formdiv = new U.UF.UI.form(
  7135. "chatPDF",
  7136. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  7137. "id": "chatPDF",
  7138. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7139. "onresize": function () { }
  7140. }, {
  7141. closecallback: function () { }
  7142. }, { "style": { "height": "36px" } }).form; //创建窗体
  7143. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/chatPDF.png)" }, "name": "chatPDF", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7144. break;
  7145. case "resources": //国家教育
  7146. _formdiv = new U.UF.UI.form(
  7147. "国家教育",
  7148. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  7149. "id": "resources",
  7150. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7151. "onresize": function () { }
  7152. }, {
  7153. closecallback: function () { }
  7154. }, { "style": { "height": "36px" } }).form; //创建窗体
  7155. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/resources.png)" }, "name": "国家教育", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7156. break;
  7157. case "codeEdit": //源码编辑
  7158. _formdiv = new U.UF.UI.form(
  7159. "源码编辑",
  7160. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  7161. "id": "codeEdit",
  7162. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7163. "onresize": function () { }
  7164. }, {
  7165. closecallback: function () { }
  7166. }, { "style": { "height": "36px" } }).form; //创建窗体
  7167. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/code.png)" }, "name": "源码编辑", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7168. break; //
  7169. case "MindMap": //MindMap
  7170. _formdiv = new U.UF.UI.form(
  7171. "MindMap",
  7172. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  7173. "id": "MindMap",
  7174. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7175. "onresize": function () { }
  7176. }, {
  7177. closecallback: function () { }
  7178. }, { "style": { "height": "36px" } }).form; //创建窗体
  7179. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/MIndMap.png)" }, "name": "MindMap", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7180. break;
  7181. case "netWorkPanel": //netWorkPanel
  7182. _formdiv = new U.UF.UI.form(
  7183. "netWorkPanel",
  7184. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  7185. "id": "netWorkPanel",
  7186. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7187. "onresize": function () { }
  7188. }, {
  7189. closecallback: function () { }
  7190. }, { "style": { "height": "36px" } }).form; //创建窗体
  7191. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/netWorkPanel.png)" }, "name": "netWorkPanel", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7192. break;
  7193. case "GeoGebra": //GeoGebra
  7194. _formdiv = new U.UF.UI.form(
  7195. "GeoGebra",
  7196. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  7197. "id": "GeoGebra",
  7198. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7199. "onresize": function () { }
  7200. }, {
  7201. closecallback: function () { }
  7202. }, { "style": { "height": "36px" } }).form; //创建窗体
  7203. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7204. break;
  7205. case "translation": //翻译
  7206. _formdiv = new U.UF.UI.form(
  7207. "翻译",
  7208. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  7209. "id": "translation",
  7210. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  7211. "onresize": function () { }
  7212. }, {
  7213. closecallback: function () { }
  7214. }, { "style": { "height": "36px" } }).form; //创建窗体
  7215. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7216. break;
  7217. case "mohe": //魔盒
  7218. _formdiv = new U.UF.UI.form(
  7219. "魔盒识字",
  7220. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  7221. "id": "mohe",
  7222. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7223. "onresize": function () { }
  7224. }, {
  7225. closecallback: function () { }
  7226. }, { "style": { "height": "36px" } }).form; //创建窗体
  7227. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7228. break;
  7229. case "24game": //24点
  7230. _formdiv = new U.UF.UI.form(
  7231. "24点",
  7232. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  7233. "id": "24game",
  7234. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  7235. "onresize": function () { }
  7236. }, {
  7237. closecallback: function () { }
  7238. }, { "style": { "height": "36px" } }).form; //创建窗体
  7239. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7240. break;
  7241. case "case":
  7242. _formdiv = new U.UF.UI.form(
  7243. "课程进展",
  7244. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesign?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  7245. "id": "case",
  7246. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7247. "onresize": function () { }
  7248. }, {
  7249. closecallback: function () { }
  7250. }, { "style": { "height": "36px" } }).form; //创建窗体
  7251. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7252. break;
  7253. case "snf":
  7254. _formdiv = new U.UF.UI.form(
  7255. "赛诺梵",
  7256. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  7257. "id": "snf",
  7258. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7259. "onresize": function () { }
  7260. }, {
  7261. closecallback: function () { }
  7262. }, { "style": { "height": "36px" } }).form; //创建窗体
  7263. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7264. break;
  7265. case "hanFamily":
  7266. _formdiv = new U.UF.UI.form(
  7267. "汉字家族",
  7268. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  7269. "id": "hanFamily",
  7270. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7271. "onresize": function () { }
  7272. }, {
  7273. closecallback: function () { }
  7274. }, { "style": { "height": "36px" } }).form; //创建窗体
  7275. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7276. break;
  7277. case "hanClassics":
  7278. _formdiv = new U.UF.UI.form(
  7279. "国学经典",
  7280. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  7281. "id": "hanClassics",
  7282. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7283. "onresize": function () { }
  7284. }, {
  7285. closecallback: function () { }
  7286. }, { "style": { "height": "36px" } }).form; //创建窗体
  7287. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7288. break;
  7289. case "hanTraining":
  7290. _formdiv = new U.UF.UI.form(
  7291. "笔画训练",
  7292. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  7293. "id": "hanTraining",
  7294. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7295. "onresize": function () { }
  7296. }, {
  7297. closecallback: function () { }
  7298. }, { "style": { "height": "36px" } }).form; //创建窗体
  7299. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7300. break;
  7301. case "hanClass":
  7302. _formdiv = new U.UF.UI.form(
  7303. "书法课堂",
  7304. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  7305. "id": "hanClass",
  7306. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7307. "onresize": function () { }
  7308. }, {
  7309. closecallback: function () { }
  7310. }, { "style": { "height": "36px" } }).form; //创建窗体
  7311. _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); } }
  7312. break;
  7313. case "han":
  7314. _formdiv = new U.UF.UI.form(
  7315. "汉字宫",
  7316. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  7317. "id": "han",
  7318. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7319. "onresize": function () { }
  7320. }, {
  7321. closecallback: function () { }
  7322. }, { "style": { "height": "36px" } }).form; //创建窗体
  7323. _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); } }
  7324. break;
  7325. case "projectGM": //课程管理
  7326. _formdiv = new U.UF.UI.form(
  7327. "课程管理",
  7328. $$("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 }), {
  7329. "id": "projectGM",
  7330. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7331. "onresize": function () { }
  7332. }, {
  7333. closecallback: function () { }
  7334. }, { "style": { "height": "36px" } }).form; //创建窗体
  7335. _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); } }
  7336. break;
  7337. case "studyGM": //课程中心
  7338. _formdiv = new U.UF.UI.form(
  7339. "课程中心",
  7340. $$("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
  7341. "id": "study",
  7342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7343. "onresize": function () { }
  7344. }, {
  7345. closecallback: function () { }
  7346. }, { "style": { "height": "36px" } }).form; //创建窗体
  7347. _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); } }
  7348. break;
  7349. // studentGM
  7350. case "studentGM": //学生管理
  7351. _formdiv = new U.UF.UI.form(
  7352. "学生管理",
  7353. $$("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 }), {
  7354. "id": "studentGM",
  7355. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7356. "onresize": function () { }
  7357. }, {
  7358. closecallback: function () { }
  7359. }, { "style": { "height": "36px" } }).form; //创建窗体
  7360. _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); } }
  7361. break;
  7362. case "evaluateGM": //学生评价
  7363. _formdiv = new U.UF.UI.form(
  7364. "学生评价",
  7365. $$("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 }), {
  7366. "id": "evaluateGM",
  7367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7368. "onresize": function () { }
  7369. }, {
  7370. closecallback: function () { }
  7371. }, { "style": { "height": "36px" } }).form; //创建窗体
  7372. _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); } }
  7373. break;
  7374. // classGM
  7375. case "classGM": //班级管理
  7376. _formdiv = new U.UF.UI.form(
  7377. "班级管理",
  7378. $$("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 }), {
  7379. "id": "classGM",
  7380. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7381. "onresize": function () { }
  7382. }, {
  7383. closecallback: function () { }
  7384. }, { "style": { "height": "36px" } }).form; //创建窗体
  7385. _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); } }
  7386. break;
  7387. // dataGM
  7388. case "dataGM":
  7389. _formdiv = new U.UF.UI.form(
  7390. "我的资料",
  7391. $$("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 }), {
  7392. "id": "dataGM",
  7393. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7394. "onresize": function () { }
  7395. }, {
  7396. closecallback: function () { }
  7397. }, { "style": { "height": "36px" } }).form; //创建窗体
  7398. _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); } }
  7399. break;
  7400. // caseGM
  7401. case "caseGM": //课程进展
  7402. _formdiv = new U.UF.UI.form(
  7403. "课程进展",
  7404. $$("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 }), {
  7405. "id": "caseGM",
  7406. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7407. "onresize": function () { }
  7408. }, {
  7409. closecallback: function () { }
  7410. }, { "style": { "height": "36px" } }).form; //创建窗体
  7411. _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); } }
  7412. break;
  7413. // meterialGM
  7414. case "meterialGM": //素材库
  7415. _formdiv = new U.UF.UI.form(
  7416. "素材库",
  7417. $$("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 }), {
  7418. "id": "meterialGM",
  7419. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7420. "onresize": function () { }
  7421. }, {
  7422. closecallback: function () { }
  7423. }, { "style": { "height": "36px" } }).form; //创建窗体
  7424. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/material.png)" }, "name": "素材库", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7425. break;
  7426. // evaluateSGM
  7427. case "evaluateSGM": //我的评价
  7428. _formdiv = new U.UF.UI.form(
  7429. "我的评价",
  7430. $$("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 }), {
  7431. "id": "evaluateSGM",
  7432. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  7433. "onresize": function () { }
  7434. }, {
  7435. closecallback: function () { }
  7436. }, { "style": { "height": "36px" } }).form; //创建窗体
  7437. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7438. break;
  7439. case "jupyter": //jupyter
  7440. _formdiv = new U.UF.UI.form(
  7441. "jupyter",
  7442. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  7443. "id": "jupyter",
  7444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7445. "onresize": function () { }
  7446. }, {
  7447. closecallback: function () { }
  7448. }, { "style": { "height": "36px" } }).form; //创建窗体
  7449. _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); } }
  7450. break;
  7451. case "number": //数字实验室
  7452. _formdiv = new U.UF.UI.form(
  7453. "数字实验室",
  7454. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  7455. "id": "number",
  7456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7457. "onresize": function () { }
  7458. }, {
  7459. closecallback: function () { }
  7460. }, { "style": { "height": "36px" } }).form; //创建窗体
  7461. _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); } }
  7462. break;
  7463. case "studentCourse": //项目管理 学生
  7464. _formdiv = new U.UF.UI.form(
  7465. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7466. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7467. "id": "studentCourse",
  7468. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7469. "onresize": function () { }
  7470. }, {
  7471. closecallback: function () { }
  7472. }, { "style": { "height": "36px" } }).form; //创建窗体
  7473. _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); } }
  7474. break;
  7475. case "studentCourseS": //项目管理 老师
  7476. _formdiv = new U.UF.UI.form(
  7477. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  7478. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7479. "id": "studentCourseS",
  7480. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, { "style": { "height": "36px" } }).form; //创建窗体
  7485. _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); } }
  7486. break;
  7487. case "studentIndex": //项目中心
  7488. _formdiv = new U.UF.UI.form(
  7489. "项目中心",
  7490. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7491. "id": "studentIndex",
  7492. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7493. "onresize": function () { }
  7494. }, {
  7495. closecallback: function () { }
  7496. }, { "style": { "height": "36px" } }).form; //创建窗体
  7497. _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); } }
  7498. break;
  7499. case "CaseDesignS":
  7500. _formdiv = new U.UF.UI.form(
  7501. "项目进展",
  7502. $$("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 }), {
  7503. "id": "case",
  7504. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7505. "onresize": function () { }
  7506. }, {
  7507. closecallback: function () { }
  7508. }, { "style": { "height": "36px" } }).form; //创建窗体
  7509. _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); } }
  7510. break;
  7511. case "tcStudent": //腾讯学生管理
  7512. _formdiv = new U.UF.UI.form(
  7513. "学生管理",
  7514. $$("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 }), {
  7515. "id": "tcStudent",
  7516. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7517. "onresize": function () { }
  7518. }, {
  7519. closecallback: function () { }
  7520. }, { "style": { "height": "36px" } }).form; //创建窗体
  7521. _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); } }
  7522. break;
  7523. case "tcSchool": //腾讯学校管理
  7524. _formdiv = new U.UF.UI.form(
  7525. "学校管理",
  7526. $$("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 }), {
  7527. "id": "tcSchool",
  7528. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7529. "onresize": function () { }
  7530. }, {
  7531. closecallback: function () { }
  7532. }, { "style": { "height": "36px" } }).form; //创建窗体
  7533. _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); } }
  7534. break;
  7535. case "tcTeacher": //腾讯学校管理
  7536. _formdiv = new U.UF.UI.form(
  7537. "教师管理",
  7538. $$("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 }), {
  7539. "id": "tcTeacher",
  7540. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7541. "onresize": function () { }
  7542. }, {
  7543. closecallback: function () { }
  7544. }, { "style": { "height": "36px" } }).form; //创建窗体
  7545. _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); } }
  7546. break;
  7547. case "teacher":
  7548. _formdiv = new U.UF.UI.form(
  7549. "教师管理",
  7550. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7551. "id": "teacher",
  7552. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7553. "onresize": function () { }
  7554. }, {
  7555. closecallback: function () { }
  7556. }, { "style": { "height": "36px" } }).form; //创建窗体
  7557. _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); } }
  7558. break;
  7559. case "tcData": //腾讯我的资料
  7560. _formdiv = new U.UF.UI.form(
  7561. "我的资料",
  7562. $$("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 }), {
  7563. "id": "tcData",
  7564. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, { "style": { "height": "36px" } }).form; //创建窗体
  7569. _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); } }
  7570. break;
  7571. case "tcNotice": //腾讯消息通知
  7572. _formdiv = new U.UF.UI.form(
  7573. "消息通知",
  7574. $$("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 }), {
  7575. "id": "tcNotice",
  7576. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7577. "onresize": function () { }
  7578. }, {
  7579. closecallback: function () { }
  7580. }, { "style": { "height": "36px" } }).form; //创建窗体
  7581. _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); } }
  7582. break;
  7583. case "myReport": //好友打开
  7584. _formdiv = new U.UF.UI.form(
  7585. "我的评价",
  7586. $$("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 }), {
  7587. "id": "myReport",
  7588. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7589. "onresize": function () { }
  7590. }, {
  7591. closecallback: function () { }
  7592. }, { "style": { "height": "36px" } }).form; //创建窗体
  7593. _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); } }
  7594. break;
  7595. case "learnAna": //好友打开
  7596. _formdiv = new U.UF.UI.form(
  7597. "学习分析",
  7598. $$("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 }), {
  7599. "id": "learnAna",
  7600. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7601. "onresize": function () { }
  7602. }, {
  7603. closecallback: function () { }
  7604. }, { "style": { "height": "36px" } }).form; //创建窗体
  7605. _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); } }
  7606. break;
  7607. case "AIChat": //AI共创
  7608. _formdiv = new U.UF.UI.form(
  7609. "AI共创",
  7610. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  7611. "id": "AIChat",
  7612. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  7613. "onresize": function () { }
  7614. }, {
  7615. istop: true,
  7616. closecallback: function () { $("#aichat_icon").remove(); },
  7617. narrowcallback: function () {
  7618. if (!$("#aichat_icon")[0]) {
  7619. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  7620. }
  7621. },
  7622. }, { "style": { "height": "36px" } }).form; //创建窗体
  7623. _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); } }
  7624. break;
  7625. case "ainew": //AI共创
  7626. _formdiv = new U.UF.UI.form(
  7627. "AI协同",
  7628. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  7629. "id": "ainew",
  7630. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7631. "onresize": function () { }
  7632. }, {
  7633. closecallback: function () { }
  7634. }, { "style": { "height": "36px" } }).form; //创建窗体
  7635. _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); } }
  7636. break;
  7637. case "gpt4": //gpt4
  7638. _formdiv = new U.UF.UI.form(
  7639. "AI助手",
  7640. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7641. "id": "gpt4",
  7642. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7643. "onresize": function () { }
  7644. }, {
  7645. closecallback: function () { }
  7646. }, { "style": { "height": "36px" } }).form; //创建窗体
  7647. _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); } }
  7648. break;
  7649. case "aigpt": //gpt4
  7650. _formdiv = new U.UF.UI.form(
  7651. "AI助手+",
  7652. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7653. "id": "aigpt",
  7654. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7655. "onresize": function () { }
  7656. }, {
  7657. closecallback: function () {
  7658. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  7659. }
  7660. }, { "style": { "height": "36px" } }).form; //创建窗体
  7661. _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); } }
  7662. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7663. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  7664. })
  7665. break;
  7666. case "aiKnowledge": //aiKnowledge
  7667. let _url = "https://knowledge.cocorobo.cn/run-agent-flow?multiAgentId=68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7668. if (_oid == '8a352da2-56e1-11ef-b873-005056b86db5') {
  7669. _url = "https://knowledge.cocorobo.cn/zh-CN/run-agent-flow/68fa2a89-650f-11ef-9db4-12e77c4cb76b"
  7670. }
  7671. _formdiv = new U.UF.UI.form(
  7672. "知识建构",
  7673. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }), {
  7674. "id": "aiKnowledge",
  7675. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7676. "onresize": function () { }
  7677. }, {
  7678. closecallback: function () { }
  7679. }, { "style": { "height": "36px" } }).form; //创建窗体
  7680. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7681. break;
  7682. case "futureClass": //AI共创
  7683. _formdiv = new U.UF.UI.form(
  7684. "协同建构",
  7685. $$("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
  7686. "id": "synergyCourse",
  7687. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7688. "onresize": function () { }
  7689. }, {
  7690. closecallback: function () {
  7691. $("iframe", _formdiv)[0].contentWindow.loginout();
  7692. }
  7693. }, { "style": { "height": "36px" } }).form; //创建窗体
  7694. _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); } }
  7695. break;
  7696. case "aiagent": //ai agent
  7697. _formdiv = new U.UF.UI.form(
  7698. "AI Agent",
  7699. $$("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" }), {
  7700. "id": "AIAgent",
  7701. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7702. "onresize": function () { }
  7703. }, {
  7704. closecallback: function () { }
  7705. }, { "style": { "height": "36px" } }).form; //创建窗体
  7706. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIprogram2.png)" }, "name": "AI Agent", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  7707. break;
  7708. case "dataBoard": //数据看板
  7709. _formdiv = new U.UF.UI.form(
  7710. "数据看板",
  7711. $$("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 }), {
  7712. "id": "dataBoard",
  7713. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7714. "onresize": function () { }
  7715. }, {
  7716. closecallback: function () { }
  7717. }, { "style": { "height": "36px" } }).form; //创建窗体
  7718. _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); } }
  7719. break;
  7720. case "dataBoardSies": //数据融合
  7721. _formdiv = new U.UF.UI.form(
  7722. "数据融合",
  7723. $$("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 }), {
  7724. "id": "dataBoardSies",
  7725. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7726. "onresize": function () { }
  7727. }, {
  7728. closecallback: function () { }
  7729. }, { "style": { "height": "36px" } }).form; //创建窗体
  7730. _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); } }
  7731. break;
  7732. case "dataBoardNew": //数据看板
  7733. _formdiv = new U.UF.UI.form(
  7734. "综合看板",
  7735. $$("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 }), {
  7736. "id": "dataBoardNew",
  7737. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7738. "onresize": function () { }
  7739. }, {
  7740. closecallback: function () { }
  7741. }, { "style": { "height": "36px" } }).form; //创建窗体
  7742. _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); } }
  7743. break;
  7744. case "dataBoardTest": //数据看板
  7745. _formdiv = new U.UF.UI.form(
  7746. "评测看板",
  7747. $$("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 }), {
  7748. "id": "dataBoardTest",
  7749. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7750. "onresize": function () { }
  7751. }, {
  7752. closecallback: function () { }
  7753. }, { "style": { "height": "36px" } }).form; //创建窗体
  7754. _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); } }
  7755. break;
  7756. case "AIAnalyse": //AI共创
  7757. _formdiv = new U.UF.UI.form(
  7758. "AI分析",
  7759. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  7760. "id": "AIAnalyse",
  7761. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7762. "onresize": function () { }
  7763. }, {
  7764. closecallback: function () { }
  7765. }, { "style": { "height": "36px" } }).form; //创建窗体
  7766. _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); } }
  7767. break;
  7768. case "studioCourse": //AI共创
  7769. _formdiv = new U.UF.UI.form(
  7770. "工作管理",
  7771. $$("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 }), {
  7772. "id": "studioCourse",
  7773. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7774. "onresize": function () { }
  7775. }, {
  7776. closecallback: function () { }
  7777. }, { "style": { "height": "36px" } }).form; //创建窗体
  7778. _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); } }
  7779. break;
  7780. case "studioIndex": //AI共创
  7781. _formdiv = new U.UF.UI.form(
  7782. "工作中心",
  7783. $$("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 }), {
  7784. "id": "studioIndex",
  7785. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7786. "onresize": function () { }
  7787. }, {
  7788. closecallback: function () { }
  7789. }, { "style": { "height": "36px" } }).form; //创建窗体
  7790. _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); } }
  7791. break;
  7792. case "source":
  7793. _formdiv = new U.UF.UI.form(
  7794. "教学资源",
  7795. $$("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 }), {
  7796. "id": "source",
  7797. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7798. "onresize": function () { }
  7799. }, {
  7800. closecallback: function () { }
  7801. }, { "style": { "height": "36px" } }).form; //创建窗体
  7802. _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); } }
  7803. break;
  7804. case "testTeacher":
  7805. _formdiv = new U.UF.UI.form(
  7806. "智能表单",
  7807. $$("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 }), {
  7808. "id": "testTeacher",
  7809. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7810. "onresize": function () { }
  7811. }, {
  7812. closecallback: function () { }
  7813. }, { "style": { "height": "36px" } }).form; //创建窗体
  7814. _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); } }
  7815. break;
  7816. case "testStudent":
  7817. _formdiv = new U.UF.UI.form(
  7818. "教师中心",
  7819. $$("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 }), {
  7820. "id": "testStudent",
  7821. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7822. "onresize": function () { }
  7823. }, {
  7824. closecallback: function () { }
  7825. }, { "style": { "height": "36px" } }).form; //创建窗体
  7826. _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); } }
  7827. break;
  7828. case "testTeacherSies":
  7829. _formdiv = new U.UF.UI.form(
  7830. "教师管理",
  7831. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;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 }), {
  7832. "id": "testTeacherSies",
  7833. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7834. "onresize": function () { }
  7835. }, {
  7836. closecallback: function () { }
  7837. }, { "style": { "height": "36px" } }).form; //创建窗体
  7838. _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); } }
  7839. break;
  7840. case "testStudentSies":
  7841. _formdiv = new U.UF.UI.form(
  7842. "教师中心",
  7843. $$("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 }), {
  7844. "id": "testStudentSies",
  7845. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  7846. "onresize": function () { }
  7847. }, {
  7848. closecallback: function () { }
  7849. }, { "style": { "height": "36px" } }).form; //创建窗体
  7850. _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); } }
  7851. break;
  7852. case "ytpbl": //消息通知
  7853. _formdiv = new U.UF.UI.form(
  7854. "案例征集",
  7855. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7856. "id": "ytpbl",
  7857. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7858. "onresize": function () { }
  7859. }, {
  7860. closecallback: function () { }
  7861. }, { "style": { "height": "36px" } }).form; //创建窗体
  7862. _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); } }
  7863. // 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");
  7864. break;
  7865. case "aiCourseResource": //人工智能窗体
  7866. _formdiv = new U.UF.UI.form(
  7867. false,
  7868. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7869. "id": "aiCourseResource",
  7870. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7871. "onresize": function () { },
  7872. "isdrag": false,
  7873. }, {
  7874. closecallback: function () { }
  7875. }, { "style": { "height": "36px" } }).form; //创建窗体
  7876. _taskbar = ''
  7877. break;
  7878. case "szdjgCocooroboX": //图形化编程
  7879. _formdiv = new U.UF.UI.form(
  7880. "图形化编程",
  7881. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7882. "id": "szdjgCocooroboX",
  7883. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7884. "onresize": function () { }
  7885. }, {
  7886. closecallback: function () { }
  7887. }, { "style": { "height": "36px" } }).form; //创建窗体
  7888. _taskbar = ''
  7889. break;
  7890. case "szdjgPython": //python编程
  7891. _formdiv = new U.UF.UI.form(
  7892. "Python编程",
  7893. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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" }), {
  7894. "id": "szdjgPython",
  7895. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7896. "onresize": function () { }
  7897. }, {
  7898. closecallback: function () { }
  7899. }, { "style": { "height": "36px" } }).form; //创建窗体
  7900. _taskbar = ''
  7901. break;
  7902. case "Record":
  7903. _formdiv = new U.UF.UI.form(
  7904. "观察记录",
  7905. $$("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 }), {
  7906. "id": "Record",
  7907. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7908. "onresize": function () { }
  7909. }, {
  7910. closecallback: function () { }
  7911. }, { "style": { "height": "36px" } }).form; //创建窗体
  7912. _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); } }
  7913. break;
  7914. case "aigptCourse":
  7915. _formdiv = new U.UF.UI.form(
  7916. "AI智能体",
  7917. $$("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' }), {
  7918. "id": "aigptCourse",
  7919. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7920. "onresize": function () { }
  7921. }, {
  7922. closecallback: function () { }
  7923. }, { "style": { "height": "36px" } }).form; //创建窗体
  7924. _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); } }
  7925. break;
  7926. case "classroomObservation":
  7927. _formdiv = new U.UF.UI.form(
  7928. "课堂观察",
  7929. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7930. "id": "classroomObservation",
  7931. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7932. "onresize": function () { }
  7933. }, {
  7934. closecallback: function () { }
  7935. }, { "style": { "height": "36px" } }).form; //创建窗体
  7936. _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); } }
  7937. $("iframe", _formdiv)[0].contentWindow.location.reload()
  7938. break;
  7939. case "pblCourse":
  7940. _formdiv = new U.UF.UI.form(
  7941. "学生PBL",
  7942. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7943. "id": "pblCourse",
  7944. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7945. "onresize": function () { }
  7946. }, {
  7947. closecallback: function () { }
  7948. }, { "style": { "height": "36px" } }).form; //创建窗体
  7949. _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); } }
  7950. break;
  7951. case "appStore":
  7952. U.MD.D.addOp('', 'cocoflowOpen', '')
  7953. _formdiv = new U.UF.UI.form(
  7954. "CocoFlow",
  7955. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//beta.app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  7956. "id": "appStore",
  7957. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  7958. "onresize": function () { }
  7959. }, {
  7960. closecallback: function () { }
  7961. }, { "style": { "height": "36px" } }).form; //创建窗体
  7962. _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); } }
  7963. break;
  7964. case "sassPlatform":
  7965. _formdiv = new U.UF.UI.form(
  7966. "Sass通用后台管理",
  7967. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7968. "id": "sassPlatform",
  7969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7970. "onresize": function () { }
  7971. }, {
  7972. closecallback: function () { }
  7973. }, { "style": { "height": "36px" } }).form; //创建窗体
  7974. _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); } }
  7975. break;
  7976. case "EDU":
  7977. _formdiv = new U.UF.UI.form(
  7978. "EDU",
  7979. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//edu.cocorobo.cn" }), {
  7980. "id": "EDU",
  7981. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7982. "onresize": function () { }
  7983. }, {
  7984. closecallback: function () { }
  7985. }, { "style": { "height": "36px" } }).form; //创建窗体
  7986. _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); } }
  7987. break;
  7988. case "knowledge":
  7989. _formdiv = new U.UF.UI.form(
  7990. "知识库",
  7991. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "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 }), {
  7992. "id": "knowledge",
  7993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  7994. "onresize": function () { }
  7995. }, {
  7996. closecallback: function () { }
  7997. }, { "style": { "height": "36px" } }).form; //创建窗体
  7998. _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); } }
  7999. break;
  8000. case "userExamine":
  8001. _formdiv = new U.UF.UI.form(
  8002. "账号申请",
  8003. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//user.cocorobo.cn/#/examineDialog" }), {
  8004. "id": "userExamine",
  8005. "style": { "width": "490px", "height": "660px", "overflow": 'hidden' },
  8006. "onresize": function () { }
  8007. }, {
  8008. closecallback: function () { }
  8009. }, { "style": { "height": "36px" } }).form; //创建窗体
  8010. break;
  8011. case "cocoflowDeskTop": //cocoflowDeskTop
  8012. _formdiv = new U.UF.UI.form(
  8013. false,
  8014. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//app.cocorobo.cn/#/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  8015. "id": "cocoflowDeskTop",
  8016. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8017. "onresize": function () { },
  8018. }, {
  8019. closecallback: function () { },
  8020. "isdrag": false,
  8021. }, { "style": { "height": "36px" } }).form; //创建窗体
  8022. _taskbar = ''
  8023. break;
  8024. case "liyuanLogin": //liyuanLogin
  8025. _formdiv = new U.UF.UI.form(
  8026. false,
  8027. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//liyuan.cocorobo.cn/#/login?org=" + _org + "&oid=" + _oid }), {
  8028. "id": "liyuanLogin",
  8029. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  8030. "onresize": function () { },
  8031. }, {
  8032. closecallback: function () { },
  8033. isdrag: false,
  8034. isstretching: false,
  8035. isenlarge: false,
  8036. isnarrow: false
  8037. }, { "style": { "height": "36px" } }).form; //创建窗体
  8038. _taskbar = ''
  8039. break;
  8040. case "updatePaDialog":
  8041. _formdiv = new U.UF.UI.form(
  8042. "密码修改",
  8043. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://invitelogin.cocorobo.cn/#/changePswd?userid=" + _userid }), {
  8044. "id": "updatePaDialog",
  8045. "style": { "width": "450px", "height": "610px", "overflow": 'hidden' },
  8046. "onresize": function () { },
  8047. }, {
  8048. closecallback: function () { },
  8049. isclose: false,
  8050. isdrag: false,
  8051. isstretching: false,
  8052. isenlarge: false,
  8053. isnarrow: false
  8054. }, { "style": { "height": "36px" } }).form; //创建窗体
  8055. break;
  8056. }
  8057. //U.MD.D.I.openClick(str);
  8058. //如果有任务栏信息
  8059. if (_taskbar) {
  8060. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8061. }
  8062. if (iframeBool) {
  8063. U.UF.DL.loading($("iframe", _formdiv)[0].parentElement.parentElement)
  8064. // let onloadListener = $("iframe", _formdiv)[0].onload = () => {
  8065. // console.log("iframe进入");
  8066. // U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8067. // };
  8068. setTimeout(() => {
  8069. U.UF.DL.uploading($("iframe", _formdiv)[0].parentElement.parentElement)
  8070. }, 2000);
  8071. }
  8072. }
  8073. U.MD.D.I.openApplicationWai = function (id, url, dom, array) {
  8074. var _formdiv, //创建任务栏时同时弹出的窗体元素。
  8075. _userinfo = US.userInfo, //登录用户信息
  8076. { userid: _userid, organizeid: _oid, type: _type, org: _org, role: _role, classid: _classId } = _userinfo; // 解构赋值获取用户信息
  8077. const _TscreenType = 1, _screenType = 2, _SscreenType = 3; // 常量定义
  8078. let iframeBool = true;
  8079. let queryString = ''
  8080. if (array && array.length) {
  8081. const paramsMap = {
  8082. userid: _userid,
  8083. org: _org,
  8084. oid: _oid,
  8085. type: _type,
  8086. role: _role,
  8087. classId: _classId,
  8088. TscreenType: _TscreenType,
  8089. SscreenType: _SscreenType
  8090. };
  8091. const canshu = array
  8092. .filter(param => paramsMap[param] !== undefined)
  8093. .map(param => `${param}=${paramsMap[param]}`);
  8094. queryString = canshu.length ? (url.includes('?') ? '&' : '?') + canshu.join('&') : ''; // 生成查询字符串
  8095. }
  8096. let _url = url + queryString
  8097. if (U.UF.UI.form.allForm[id]) {
  8098. iframeBool = false
  8099. }
  8100. _formdiv = new U.UF.UI.form(
  8101. false,
  8102. $$("iframe", { "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": _url }),
  8103. {
  8104. "id": id,
  8105. "style": { "width": "100%", "height": "100%", "overflow": 'hidden', "position": 'unset', "boxShadow": "unset" },
  8106. "onresize": function () { },
  8107. },
  8108. {
  8109. closecallback: function () { },
  8110. isdrag: false,
  8111. isstretching: false,
  8112. isenlarge: false,
  8113. isnarrow: false
  8114. },
  8115. { "style": { "height": "36px" } },
  8116. undefined,
  8117. undefined,
  8118. dom
  8119. ).form
  8120. }
  8121. // U.MD.D.I.openClick = function(str){
  8122. // var click = '';
  8123. // switch(str){
  8124. // case 'friend':
  8125. // click = '我的好友';
  8126. // break;
  8127. // case 'domain':
  8128. // click = '域名管理';
  8129. // break;
  8130. // case 'disk':
  8131. // click = '我的云盘';
  8132. // break;
  8133. // case 'word':
  8134. // click = 'Word';
  8135. // break;
  8136. // case 'excel':
  8137. // click = 'Execl';
  8138. // break;
  8139. // case 'txt':
  8140. // click = '文本文件';
  8141. // break;
  8142. // case 'lookupFriend':
  8143. // click = '查找好友';
  8144. // break;
  8145. // case 'ftp':
  8146. // click = 'FTP';
  8147. // break;
  8148. // case 'group':
  8149. // click = '群组';
  8150. // break;
  8151. // case 'set':
  8152. // click = '我的设置';
  8153. // break;
  8154. // case 'systemSet':
  8155. // click = '系统设置';
  8156. // break;
  8157. // case 'boomYun':
  8158. // click = '互联办公';
  8159. // break;
  8160. // case 'xz':
  8161. // click = '云端下载';
  8162. // break;
  8163. // case 'client':
  8164. // click = '有思浏览器';
  8165. // break;
  8166. // case 'backEndProgramming':
  8167. // click = '在线后台编程';
  8168. // break;
  8169. // case 'frontEndProgramming':
  8170. // click = '在线前端编程';
  8171. // break;
  8172. // default: break;
  8173. // }
  8174. // if(U.MD.D.I.Ip && click){
  8175. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  8176. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  8177. // })
  8178. // }
  8179. // }
  8180. /**
  8181. *函数作用:ajax简易函数,使用post格式
  8182. *@param url {data} 后台地址
  8183. *@param data {data} 参数json
  8184. *@param fn {data} 回调函数
  8185. *
  8186. */
  8187. // U.MD.D.I.Mysqlrequest = function(url,fn){
  8188. // var xhr = new XMLHttpRequest();
  8189. // xhr.open("GET",url,true);
  8190. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  8191. // xhr.onreadystatechange = function(){
  8192. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  8193. // fn.call(this,xhr.responseText);
  8194. // }
  8195. // };
  8196. // xhr.send();
  8197. // }
  8198. /*判断是否是内网IP*/
  8199. // U.MD.D.I.isInnerIPFn = function(str){
  8200. // var curPageUrl = str;
  8201. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  8202. // curPageUrl =curPageUrl.replace(reg1,'');
  8203. // // console.log('curPageUrl-1 '+curPageUrl);
  8204. // var reg2 = /\:+/g;//替换冒号为一点
  8205. // curPageUrl =curPageUrl.replace(reg2,'.');
  8206. // // console.log('curPageUrl-2 '+curPageUrl);
  8207. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  8208. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  8209. // if(curPageUrl[2] != '16'){
  8210. // return ipAddress;
  8211. // }else{
  8212. // return false;
  8213. // }
  8214. // }
  8215. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  8216. // //compatibility for firefox and chrome
  8217. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  8218. // var pc = new myPeerConnection({
  8219. // iceServers: []
  8220. // }),
  8221. // noop = function() {},
  8222. // localIPs = {},
  8223. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  8224. // key;
  8225. // function iterateIP(ip) {
  8226. // if (!localIPs[ip]) onNewIP(ip);
  8227. // localIPs[ip] = true;
  8228. // }
  8229. // //create a bogus data channel
  8230. // pc.createDataChannel("");
  8231. // // create offer and set local description
  8232. // pc.createOffer().then(function(sdp) {
  8233. // sdp.sdp.split('\n').forEach(function(line) {
  8234. // if (line.indexOf('candidate') < 0) return;
  8235. // line.match(ipRegex).forEach(iterateIP);
  8236. // });
  8237. // pc.setLocalDescription(sdp, noop, noop);
  8238. // }).catch(function(reason) {
  8239. // // An error occurred, so handle the failure to connect
  8240. // });
  8241. // //sten for candidate events
  8242. // pc.onicecandidate = function(ice) {
  8243. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  8244. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  8245. // };
  8246. // }
  8247. // U.MD.D.I.getUserIpBool = function(callback){
  8248. // U.MD.D.I.getUserIP(function(ip){
  8249. // alert("Got IP! :" + ip);
  8250. // });
  8251. //}
  8252. //#endregion
  8253. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  8254. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8255. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8256. _userinfo = US.userInfo, //登录用户信息
  8257. _userid = US.userInfo.userid //登录用户id
  8258. let _iframe;
  8259. let _cid = cid,
  8260. _stage = stage,
  8261. _task = task,
  8262. _tool = tool;
  8263. var _jie = $$("div", {
  8264. "style": {
  8265. "position": "absolute",
  8266. "bottom": "50px",
  8267. "right": "50px",
  8268. "zIndex": "9999",
  8269. "backgroundColor": "#2268bc",
  8270. "color": "#fff",
  8271. "padding": "12px 20px",
  8272. "cursor": "pointer",
  8273. "borderRadius": "4px",
  8274. },
  8275. "innerHTML": "提交作业"
  8276. })
  8277. let aTool = ''
  8278. let _loading = document.createElement('div')
  8279. _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;"
  8280. // _loading.id = "";
  8281. let _lchild = document.createElement('div')
  8282. let _limg = document.createElement('img')
  8283. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8284. _limg.style = "width: 26px;margin-right: 10px;"
  8285. _lchild.appendChild(_limg)
  8286. let _lspan = document.createElement('span')
  8287. _lspan.innerHTML = "上传中..."
  8288. _lchild.appendChild(_lspan)
  8289. _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%);"
  8290. _loading.appendChild(_lchild)
  8291. var _box = $$('div', {
  8292. "style": {
  8293. "position": "relative",
  8294. "width": "100%",
  8295. "height": "100%",
  8296. },
  8297. })
  8298. _box.appendChild(_loading)
  8299. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  8300. switch (str) {
  8301. case "whiteboard":
  8302. aTool = 1;
  8303. _iframe = $$("iframe", {
  8304. "frameborder": "no",
  8305. "border": "0",
  8306. "scrolling ": "no",
  8307. "style": {
  8308. "cssText": "border:0;width:100%;height:100%"
  8309. },
  8310. "src": "https://beta.iwb.cocorobo.cn/"
  8311. })
  8312. _box.appendChild(_iframe);
  8313. _box.appendChild(_jie);
  8314. _formdiv = new U.UF.UI.form(
  8315. "电子白板",
  8316. _box, {
  8317. "id": "whiteboard" + cid + stage + task + tool,
  8318. "style": {
  8319. "width": "90%",
  8320. "height": "90%",
  8321. "overflow": 'hidden'
  8322. },
  8323. "onresize": function () { }
  8324. }, {
  8325. closecallback: function () { }
  8326. }, {
  8327. "style": {
  8328. "height": "36px"
  8329. }
  8330. }).form; //创建窗体
  8331. _taskbar = {
  8332. "id": str + _formdiv.id,
  8333. "style": {
  8334. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8335. },
  8336. "name": "电子白板",
  8337. "forms": _formdiv,
  8338. "click": function () {
  8339. U.MD.D.I.openApplication(str, obj, info);
  8340. }
  8341. }
  8342. break;
  8343. case "mind":
  8344. aTool = 3;
  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": "/kityminder-editor/dist/index.html"
  8353. })
  8354. _box.appendChild(_iframe);
  8355. _box.appendChild(_jie);
  8356. _formdiv = new U.UF.UI.form(
  8357. "思维导图",
  8358. _box, { //"/jsmind/example/demo.html"
  8359. "id": "mind" + cid + stage + task + tool,
  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/mindMapping.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 "MindMap":
  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": "//cloud.cocorobo.cn/mind/"
  8395. })
  8396. _box.appendChild(_iframe);
  8397. _box.appendChild(_jie);
  8398. _formdiv = new U.UF.UI.form(
  8399. "思维导图",
  8400. _box, { //"/jsmind/example/demo.html"
  8401. "id": "mind" + cid + stage + task + tool,
  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 "doc":
  8428. aTool = 6;
  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": "/Office/Word/WordEditArea.htm"
  8437. })
  8438. _box.appendChild(_iframe);
  8439. _box.appendChild(_jie);
  8440. _formdiv = new U.UF.UI.form(
  8441. "协同文档",
  8442. _box, {
  8443. "id": "doc" + cid + stage + task + tool,
  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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8458. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8459. })
  8460. _taskbar = {
  8461. "id": str + _formdiv.id,
  8462. "style": {
  8463. "backgroundImage": "url(/img/icon/doc.png)"
  8464. },
  8465. "name": "协同文档",
  8466. "forms": _formdiv,
  8467. "click": function () {
  8468. U.MD.D.I.openApplication(str, obj, info);
  8469. }
  8470. }
  8471. break;
  8472. case "mindNetwork": //好友打开
  8473. aTool = 7;
  8474. _iframe = $$("iframe", {
  8475. "webkitallowfullscreen": "",
  8476. "mozallowfullscreen": "",
  8477. "allowfullscreen": "",
  8478. "frameborder": "no",
  8479. "border": "0",
  8480. "scrolling ": "no",
  8481. "style": {
  8482. "cssText": "border:0; width:100%; height:100%;"
  8483. },
  8484. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8485. })
  8486. _box.appendChild(_iframe);
  8487. _box.appendChild(_jie);
  8488. _formdiv = new U.UF.UI.form(
  8489. "思维网格",
  8490. _box, {
  8491. "id": "mindNetwork" + cid + stage + task + tool,
  8492. "style": {
  8493. "width": "90%",
  8494. "height": "90%",
  8495. "overflow": 'hidden'
  8496. },
  8497. "onresize": function () { }
  8498. }, {
  8499. closecallback: function () { }
  8500. }, {
  8501. "style": {
  8502. "height": "36px"
  8503. }
  8504. }).form; //创建窗体
  8505. _taskbar = {
  8506. "id": str + _formdiv.id,
  8507. "style": {
  8508. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8509. },
  8510. "name": "思维网格",
  8511. "forms": _formdiv,
  8512. "click": function () {
  8513. U.MD.D.I.openApplication(str, obj, info);
  8514. }
  8515. }
  8516. break;
  8517. case "courseDesign":
  8518. _iframe = $$("iframe", {
  8519. "webkitallowfullscreen": "",
  8520. "mozallowfullscreen": "",
  8521. "allowfullscreen": "",
  8522. "frameborder": "no",
  8523. "border": "0",
  8524. "scrolling ": "no",
  8525. "style": {
  8526. "cssText": "border:0; width:100%; height:100%;"
  8527. },
  8528. "src": "/course-design-vue"
  8529. })
  8530. _box.appendChild(_iframe);
  8531. _box.appendChild(_jie);
  8532. _formdiv = new U.UF.UI.form(
  8533. "项目设计",
  8534. _box, {
  8535. "id": "courseDesign" + cid + stage + task + tool,
  8536. "style": {
  8537. "width": "90%",
  8538. "height": "90%",
  8539. "overflow": 'hidden'
  8540. },
  8541. "onresize": function () { }
  8542. }, {
  8543. closecallback: function () { }
  8544. }, {
  8545. "style": {
  8546. "height": "36px"
  8547. }
  8548. }).form; //创建窗体
  8549. _taskbar = {
  8550. "id": str + _formdiv.id,
  8551. "style": {
  8552. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8553. },
  8554. "name": "项目设计",
  8555. "forms": _formdiv,
  8556. "click": function () {
  8557. U.MD.D.I.openApplication(str, obj, info);
  8558. }
  8559. }
  8560. break;
  8561. }
  8562. const script1 = document.createElement("script");
  8563. script1.type = "text/javascript";
  8564. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8565. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8566. const script2 = document.createElement("script");
  8567. script2.type = "text/javascript";
  8568. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8569. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8570. const script3 = document.createElement("script");
  8571. script3.type = "text/javascript";
  8572. script3.charset = "UTF-8";
  8573. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8574. const script4 = document.createElement("script");
  8575. script4.type = "text/javascript";
  8576. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8577. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8578. if (_iframe) {
  8579. if (str == 'doc') {
  8580. _iframe = _formdiv.querySelector('iframe')
  8581. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8582. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8583. _iframe.contentWindow.document.body.appendChild(script1);
  8584. _iframe.contentWindow.document.body.appendChild(script2);
  8585. // _iframe.contentWindow.document.body.appendChild(script3);
  8586. _iframe.contentWindow.document.body.appendChild(script4);
  8587. })
  8588. if (onloadListener) {
  8589. _iframe.contentDocument.location.reload()
  8590. } else {
  8591. _iframe.contentDocument.location.reload()
  8592. }
  8593. } else if (str == 'courseDesign') {
  8594. U.UF.DL.iframeLoad(_iframe, function () {
  8595. // _iframe.contentWindow.U.MD.O.W.load();
  8596. // _iframe.contentWindow.document.body.appendChild(script1);
  8597. _iframe.contentWindow.document.body.appendChild(script2);
  8598. _iframe.contentWindow.document.body.appendChild(script4);
  8599. })
  8600. } else if (str == 'mind') {
  8601. _iframe = _formdiv.querySelector('iframe')
  8602. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8603. //
  8604. _iframe.contentWindow.document.body.appendChild(script1);
  8605. _iframe.contentWindow.document.body.appendChild(script2);
  8606. _iframe.contentWindow.document.body.appendChild(script4);
  8607. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8608. })
  8609. if (onloadListener) {
  8610. _iframe.contentDocument.location.reload()
  8611. } else {
  8612. _iframe.contentDocument.location.reload()
  8613. }
  8614. } else if (str == 'whiteboard') {
  8615. _iframe = _formdiv.querySelector('iframe')
  8616. let onloadListener = _iframe.onload = () => {
  8617. _iframe.contentWindow.document.body.appendChild(script1);
  8618. _iframe.contentWindow.document.body.appendChild(script2);
  8619. _iframe.contentWindow.document.body.appendChild(script4);
  8620. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8621. };
  8622. // if (onloadListener) {
  8623. // try {
  8624. // _iframe.src += "?cocorobo="+new Date().getTime()
  8625. // _iframe.contentWindow.document.location.reload()
  8626. // } catch (error) {
  8627. // }
  8628. // } else {
  8629. // _iframe.contentDocument.location.reload()
  8630. // }
  8631. } else {
  8632. _iframe.onload = () => {
  8633. _iframe.contentWindow.document.body.appendChild(script1);
  8634. _iframe.contentWindow.document.body.appendChild(script2);
  8635. // _iframe.contentWindow.document.body.appendChild(script3);
  8636. _iframe.contentWindow.document.body.appendChild(script4);
  8637. };
  8638. }
  8639. _jie.onclick = async () => {
  8640. let text = ''
  8641. if (aTool == 1) {
  8642. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8643. } else if (aTool == 6) {
  8644. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8645. } else if (aTool == 3) {
  8646. text = await U.MD.D.I.getEditorContent(_iframe);
  8647. }
  8648. _loading.style.display = 'flex'
  8649. console.log(_loading);
  8650. var _ajs = _iframe.contentWindow.document.createElement("script");
  8651. _ajs.type = "text/javascript";
  8652. _ajs.innerHTML =
  8653. // 'console.log(' + _loading + ');\n' +
  8654. 'var _js = document.createElement("script");\n' +
  8655. '_js.type="text/javascript";\n' +
  8656. '_js.charset="UTF-8";\n' +
  8657. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8658. "_js.onload = function(){\n" +
  8659. ' var a = document.getElementsByTagName("img")\n' +
  8660. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8661. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8662. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8663. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8664. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8665. "beforeUpload_shishi(file," +
  8666. "'" +
  8667. _userid +
  8668. "'" +
  8669. ", " +
  8670. "'" +
  8671. _cid +
  8672. "'" +
  8673. ", " +
  8674. "'" +
  8675. _stage +
  8676. "'" +
  8677. ", " +
  8678. "'" +
  8679. _task +
  8680. "'" +
  8681. ", " +
  8682. "'" +
  8683. _tool +
  8684. "'" +
  8685. ", " +
  8686. "'" +
  8687. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  8688. "'" +
  8689. ", " +
  8690. "'" +
  8691. aTool +
  8692. "'" +
  8693. ", " +
  8694. "`" +
  8695. text +
  8696. "`" +
  8697. ")\n" +
  8698. " });\n" +
  8699. "}\n" +
  8700. "document.head.appendChild(_js);\n";
  8701. _iframe.contentWindow.document.head.appendChild(_ajs);
  8702. }
  8703. }
  8704. //U.MD.D.I.openClick(str);
  8705. //如果有任务栏信息
  8706. // if (_taskbar) {
  8707. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8708. // }
  8709. }
  8710. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  8711. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8712. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8713. _userinfo = US.userInfo, //登录用户信息
  8714. _userid = US.userInfo.userid //登录用户id
  8715. let _iframe;
  8716. let _cid = cid,
  8717. _stage = stage,
  8718. _task = task,
  8719. _tool = tool;
  8720. var _jie = $$("div", {
  8721. "style": {
  8722. "position": "absolute",
  8723. "bottom": "50px",
  8724. "right": "50px",
  8725. "zIndex": "9999",
  8726. "backgroundColor": "#2268bc",
  8727. "color": "#fff",
  8728. "padding": "12px 20px",
  8729. "cursor": "pointer",
  8730. "borderRadius": "4px",
  8731. },
  8732. "innerHTML": "提交作业"
  8733. })
  8734. let aTool = ''
  8735. let _loading = document.createElement('div')
  8736. _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;"
  8737. // _loading.id = "";
  8738. let _lchild = document.createElement('div')
  8739. let _limg = document.createElement('img')
  8740. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8741. _limg.style = "width: 26px;margin-right: 10px;"
  8742. _lchild.appendChild(_limg)
  8743. let _lspan = document.createElement('span')
  8744. _lspan.innerHTML = "上传中..."
  8745. _lchild.appendChild(_lspan)
  8746. _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%);"
  8747. _loading.appendChild(_lchild)
  8748. let _box = $$('div', {
  8749. "style": {
  8750. "position": "relative",
  8751. "width": "100%",
  8752. "height": "100%",
  8753. },
  8754. })
  8755. _box.appendChild(_loading)
  8756. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  8757. switch (str) {
  8758. case "whiteboard":
  8759. aTool = 1;
  8760. _iframe = $$("iframe", {
  8761. "frameborder": "no",
  8762. "border": "0",
  8763. "scrolling ": "no",
  8764. "style": {
  8765. "cssText": "border:0;width:100%;height:100%"
  8766. },
  8767. "src": "https://beta.iwb.cocorobo.cn/"
  8768. })
  8769. _box.appendChild(_iframe);
  8770. _box.appendChild(_jie);
  8771. _formdiv = new U.UF.UI.form(
  8772. "电子白板",
  8773. _box, {
  8774. "id": "whiteboard" + cid + stage + task + tool,
  8775. "style": {
  8776. "width": "90%",
  8777. "height": "90%",
  8778. "overflow": 'hidden'
  8779. },
  8780. "onresize": function () { }
  8781. }, {
  8782. closecallback: function () { }
  8783. }, {
  8784. "style": {
  8785. "height": "36px"
  8786. }
  8787. }).form; //创建窗体
  8788. _taskbar = {
  8789. "id": str + _formdiv.id,
  8790. "style": {
  8791. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8792. },
  8793. "name": "电子白板",
  8794. "forms": _formdiv,
  8795. "click": function () {
  8796. U.MD.D.I.openApplication(str, obj, info);
  8797. }
  8798. }
  8799. break;
  8800. case "mind":
  8801. aTool = 3;
  8802. _iframe = $$("iframe", {
  8803. "frameborder": "no",
  8804. "border": "0",
  8805. "scrolling ": "no",
  8806. "style": {
  8807. "cssText": "border:0;width:100%;height:100%"
  8808. },
  8809. "src": "/kityminder-editor/dist/index.html"
  8810. })
  8811. _box.appendChild(_iframe);
  8812. _box.appendChild(_jie);
  8813. _formdiv = new U.UF.UI.form(
  8814. "思维导图",
  8815. _box, { //"/jsmind/example/demo.html"
  8816. "id": "mind" + cid + stage + task + tool,
  8817. "style": {
  8818. "width": "90%",
  8819. "height": "90%",
  8820. "overflow": 'hidden'
  8821. },
  8822. "onresize": function () { }
  8823. }, {
  8824. closecallback: function () { }
  8825. }, {
  8826. "style": {
  8827. "height": "36px"
  8828. }
  8829. }).form; //创建窗体
  8830. _taskbar = {
  8831. "id": str + _formdiv.id,
  8832. "style": {
  8833. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8834. },
  8835. "name": "思维导图",
  8836. "forms": _formdiv,
  8837. "click": function () {
  8838. U.MD.D.I.openApplication(str, obj, info);
  8839. }
  8840. }
  8841. break;
  8842. case "MindMap":
  8843. aTool = 3;
  8844. _iframe = $$("iframe", {
  8845. "frameborder": "no",
  8846. "border": "0",
  8847. "scrolling ": "no",
  8848. "style": {
  8849. "cssText": "border:0;width:100%;height:100%"
  8850. },
  8851. "src": "//cloud.cocorobo.cn/mind/"
  8852. })
  8853. _box.appendChild(_iframe);
  8854. _box.appendChild(_jie);
  8855. _formdiv = new U.UF.UI.form(
  8856. "思维导图",
  8857. _box, { //"/jsmind/example/demo.html"
  8858. "id": "mind" + cid + stage + task + tool,
  8859. "style": {
  8860. "width": "90%",
  8861. "height": "90%",
  8862. "overflow": 'hidden'
  8863. },
  8864. "onresize": function () { }
  8865. }, {
  8866. closecallback: function () { }
  8867. }, {
  8868. "style": {
  8869. "height": "36px"
  8870. }
  8871. }).form; //创建窗体
  8872. _taskbar = {
  8873. "id": str + _formdiv.id,
  8874. "style": {
  8875. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8876. },
  8877. "name": "思维导图",
  8878. "forms": _formdiv,
  8879. "click": function () {
  8880. U.MD.D.I.openApplication(str, obj, info);
  8881. }
  8882. }
  8883. break;
  8884. case "doc":
  8885. aTool = 6;
  8886. _iframe = $$("iframe", {
  8887. "frameborder": "no",
  8888. "border": "0",
  8889. "scrolling ": "no",
  8890. "style": {
  8891. "cssText": "border:0;width:100%;height:100%"
  8892. },
  8893. "src": "/Office/Word/WordEditArea.htm"
  8894. })
  8895. _box.appendChild(_iframe);
  8896. _box.appendChild(_jie);
  8897. _formdiv = new U.UF.UI.form(
  8898. "协同文档",
  8899. _box, {
  8900. "id": "doc" + cid + stage + task + tool,
  8901. "style": {
  8902. "width": "90%",
  8903. "height": "90%",
  8904. "overflow": 'hidden'
  8905. },
  8906. "onresize": function () { }
  8907. }, {
  8908. closecallback: function () { }
  8909. }, {
  8910. "style": {
  8911. "height": "36px"
  8912. }
  8913. }).form; //创建窗体
  8914. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8915. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8916. })
  8917. _taskbar = {
  8918. "id": str + _formdiv.id,
  8919. "style": {
  8920. "backgroundImage": "url(/img/icon/doc.png)"
  8921. },
  8922. "name": "协同文档",
  8923. "forms": _formdiv,
  8924. "click": function () {
  8925. U.MD.D.I.openApplication(str, obj, info);
  8926. }
  8927. }
  8928. break;
  8929. case "mindNetwork": //好友打开
  8930. aTool = 7;
  8931. _iframe = $$("iframe", {
  8932. "webkitallowfullscreen": "",
  8933. "mozallowfullscreen": "",
  8934. "allowfullscreen": "",
  8935. "frameborder": "no",
  8936. "border": "0",
  8937. "scrolling ": "no",
  8938. "style": {
  8939. "cssText": "border:0; width:100%; height:100%;"
  8940. },
  8941. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8942. })
  8943. _box.appendChild(_iframe);
  8944. _box.appendChild(_jie);
  8945. _formdiv = new U.UF.UI.form(
  8946. "思维网格",
  8947. _box, {
  8948. "id": "mindNetwork" + cid + stage + task + tool,
  8949. "style": {
  8950. "width": "90%",
  8951. "height": "90%",
  8952. "overflow": 'hidden'
  8953. },
  8954. "onresize": function () { }
  8955. }, {
  8956. closecallback: function () { }
  8957. }, {
  8958. "style": {
  8959. "height": "36px"
  8960. }
  8961. }).form; //创建窗体
  8962. _taskbar = {
  8963. "id": str + _formdiv.id,
  8964. "style": {
  8965. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8966. },
  8967. "name": "思维网格",
  8968. "forms": _formdiv,
  8969. "click": function () {
  8970. U.MD.D.I.openApplication(str, obj, info);
  8971. }
  8972. }
  8973. break;
  8974. case "courseDesign":
  8975. _iframe = $$("iframe", {
  8976. "webkitallowfullscreen": "",
  8977. "mozallowfullscreen": "",
  8978. "allowfullscreen": "",
  8979. "frameborder": "no",
  8980. "border": "0",
  8981. "scrolling ": "no",
  8982. "style": {
  8983. "cssText": "border:0; width:100%; height:100%;"
  8984. },
  8985. "src": "/course-design-vue"
  8986. })
  8987. _box.appendChild(_iframe);
  8988. _box.appendChild(_jie);
  8989. _formdiv = new U.UF.UI.form(
  8990. "项目设计",
  8991. _box, {
  8992. "id": "courseDesign" + cid + stage + task + tool,
  8993. "style": {
  8994. "width": "90%",
  8995. "height": "90%",
  8996. "overflow": 'hidden'
  8997. },
  8998. "onresize": function () { }
  8999. }, {
  9000. closecallback: function () { }
  9001. }, {
  9002. "style": {
  9003. "height": "36px"
  9004. }
  9005. }).form; //创建窗体
  9006. _taskbar = {
  9007. "id": str + _formdiv.id,
  9008. "style": {
  9009. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9010. },
  9011. "name": "项目设计",
  9012. "forms": _formdiv,
  9013. "click": function () {
  9014. U.MD.D.I.openApplication(str, obj, info);
  9015. }
  9016. }
  9017. break;
  9018. }
  9019. const script1 = document.createElement("script");
  9020. script1.type = "text/javascript";
  9021. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9022. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9023. const script2 = document.createElement("script");
  9024. script2.type = "text/javascript";
  9025. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9026. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9027. const script3 = document.createElement("script");
  9028. script3.type = "text/javascript";
  9029. script3.charset = "UTF-8";
  9030. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9031. const script4 = document.createElement("script");
  9032. script4.type = "text/javascript";
  9033. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9034. script4.src = window.origin + "/js/Common/jietu2E.js";
  9035. if (_iframe) {
  9036. if (str == 'doc') {
  9037. _iframe = _formdiv.querySelector('iframe')
  9038. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9039. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9040. _iframe.contentWindow.document.body.appendChild(script1);
  9041. _iframe.contentWindow.document.body.appendChild(script2);
  9042. // _iframe.contentWindow.document.body.appendChild(script3);
  9043. _iframe.contentWindow.document.body.appendChild(script4);
  9044. })
  9045. if (onloadListener) {
  9046. _iframe.contentDocument.location.reload()
  9047. } else {
  9048. _iframe.contentDocument.location.reload()
  9049. }
  9050. } else if (str == 'courseDesign') {
  9051. U.UF.DL.iframeLoad(_iframe, function () {
  9052. // _iframe.contentWindow.U.MD.O.W.load();
  9053. // _iframe.contentWindow.document.body.appendChild(script1);
  9054. _iframe.contentWindow.document.body.appendChild(script2);
  9055. _iframe.contentWindow.document.body.appendChild(script4);
  9056. })
  9057. } else if (str == 'mind') {
  9058. _iframe = _formdiv.querySelector('iframe')
  9059. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9060. //
  9061. _iframe.contentWindow.document.body.appendChild(script1);
  9062. _iframe.contentWindow.document.body.appendChild(script2);
  9063. _iframe.contentWindow.document.body.appendChild(script4);
  9064. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9065. })
  9066. if (onloadListener) {
  9067. _iframe.contentDocument.location.reload()
  9068. } else {
  9069. _iframe.contentDocument.location.reload()
  9070. }
  9071. } else if (str == 'whiteboard') {
  9072. _iframe = _formdiv.querySelector('iframe')
  9073. let onloadListener = _iframe.onload = () => {
  9074. _iframe.contentWindow.document.body.appendChild(script1);
  9075. _iframe.contentWindow.document.body.appendChild(script2);
  9076. _iframe.contentWindow.document.body.appendChild(script4);
  9077. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9078. };
  9079. // if (onloadListener) {
  9080. // try {
  9081. // _iframe.src += "?cocorobo="+new Date().getTime()
  9082. // _iframe.contentWindow.document.location.reload()
  9083. // } catch (error) {
  9084. // }
  9085. // } else {
  9086. // _iframe.contentDocument.location.reload()
  9087. // }
  9088. } else {
  9089. _iframe.onload = () => {
  9090. _iframe.contentWindow.document.body.appendChild(script1);
  9091. _iframe.contentWindow.document.body.appendChild(script2);
  9092. // _iframe.contentWindow.document.body.appendChild(script3);
  9093. _iframe.contentWindow.document.body.appendChild(script4);
  9094. };
  9095. }
  9096. _jie.onclick = async () => {
  9097. let text = ''
  9098. if (aTool == 1) {
  9099. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9100. } else if (aTool == 6) {
  9101. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9102. } else if (aTool == 3) {
  9103. text = await U.MD.D.I.getEditorContent(_iframe);
  9104. }
  9105. _loading.style.display = 'flex'
  9106. console.log(_loading);
  9107. var _ajs = _iframe.contentWindow.document.createElement("script");
  9108. _ajs.type = "text/javascript";
  9109. _ajs.innerHTML =
  9110. // 'console.log(' + _loading + ');\n' +
  9111. 'var _js = document.createElement("script");\n' +
  9112. '_js.type="text/javascript";\n' +
  9113. '_js.charset="UTF-8";\n' +
  9114. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9115. "_js.onload = function(){\n" +
  9116. ' var a = document.getElementsByTagName("img")\n' +
  9117. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9118. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9119. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9120. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9121. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9122. "beforeUpload_shishi(file," +
  9123. "'" +
  9124. _userid +
  9125. "'" +
  9126. ", " +
  9127. "'" +
  9128. _cid +
  9129. "'" +
  9130. ", " +
  9131. "'" +
  9132. _stage +
  9133. "'" +
  9134. ", " +
  9135. "'" +
  9136. _task +
  9137. "'" +
  9138. ", " +
  9139. "'" +
  9140. _tool +
  9141. "'" +
  9142. ", " +
  9143. "'" +
  9144. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  9145. "'" +
  9146. ", " +
  9147. "'" +
  9148. aTool +
  9149. "'" +
  9150. ", " +
  9151. "`" +
  9152. text +
  9153. "`" +
  9154. ")\n" +
  9155. " });\n" +
  9156. "}\n" +
  9157. "document.head.appendChild(_js);\n";
  9158. _iframe.contentWindow.document.head.appendChild(_ajs);
  9159. }
  9160. }
  9161. //U.MD.D.I.openClick(str);
  9162. //如果有任务栏信息
  9163. // if (_taskbar) {
  9164. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9165. // }
  9166. }
  9167. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  9168. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9169. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9170. _userid = student.userid, //登录用户id
  9171. _username = student.student //用户名字
  9172. let _iframe;
  9173. let _cid = cid,
  9174. _stage = stage,
  9175. _task = task,
  9176. _tool = tool;
  9177. var _jie = $$("div", {
  9178. "style": {
  9179. "position": "absolute",
  9180. "bottom": "50px",
  9181. "right": "50px",
  9182. "zIndex": "9999",
  9183. "backgroundColor": "#2268bc",
  9184. "color": "#fff",
  9185. "padding": "12px 20px",
  9186. "cursor": "pointer",
  9187. "borderRadius": "4px",
  9188. },
  9189. "innerHTML": "提交作业"
  9190. })
  9191. let aTool = ''
  9192. let _loading = document.createElement('div')
  9193. _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;"
  9194. // _loading.id = "";
  9195. let _lchild = document.createElement('div')
  9196. let _limg = document.createElement('img')
  9197. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9198. _limg.style = "width: 26px;margin-right: 10px;"
  9199. _lchild.appendChild(_limg)
  9200. let _lspan = document.createElement('span')
  9201. _lspan.innerHTML = "上传中..."
  9202. _lchild.appendChild(_lspan)
  9203. _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%);"
  9204. _loading.appendChild(_lchild)
  9205. var _box = $$('div', {
  9206. "style": {
  9207. "position": "relative",
  9208. "width": "100%",
  9209. "height": "100%",
  9210. },
  9211. })
  9212. _box.appendChild(_loading)
  9213. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  9214. switch (str) {
  9215. case "whiteboard":
  9216. aTool = 1;
  9217. _iframe = $$("iframe", {
  9218. "frameborder": "no",
  9219. "border": "0",
  9220. "scrolling ": "no",
  9221. "style": {
  9222. "cssText": "border:0;width:100%;height:100%"
  9223. },
  9224. "src": "https://beta.iwb.cocorobo.cn/"
  9225. })
  9226. _box.appendChild(_iframe);
  9227. _box.appendChild(_jie);
  9228. _formdiv = new U.UF.UI.form(
  9229. "电子白板-" + _username,
  9230. _box, {
  9231. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9232. "style": {
  9233. "width": "90%",
  9234. "height": "90%",
  9235. "overflow": 'hidden'
  9236. },
  9237. "onresize": function () { }
  9238. }, {
  9239. closecallback: function () { }
  9240. }, {
  9241. "style": {
  9242. "height": "36px"
  9243. }
  9244. }).form; //创建窗体
  9245. _taskbar = {
  9246. "id": str + _formdiv.id,
  9247. "style": {
  9248. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9249. },
  9250. "name": "电子白板",
  9251. "forms": _formdiv,
  9252. "click": function () {
  9253. U.MD.D.I.openApplication(str, obj, info);
  9254. }
  9255. }
  9256. break;
  9257. case "mind":
  9258. aTool = 3;
  9259. _iframe = $$("iframe", {
  9260. "frameborder": "no",
  9261. "border": "0",
  9262. "scrolling ": "no",
  9263. "style": {
  9264. "cssText": "border:0;width:100%;height:100%"
  9265. },
  9266. "src": "/kityminder-editor/dist/index.html"
  9267. })
  9268. _box.appendChild(_iframe);
  9269. _box.appendChild(_jie);
  9270. _formdiv = new U.UF.UI.form(
  9271. "思维导图-" + _username,
  9272. _box, { //"/jsmind/example/demo.html"
  9273. "id": "mind" + cid + stage + task + tool + _userid,
  9274. "style": {
  9275. "width": "90%",
  9276. "height": "90%",
  9277. "overflow": 'hidden'
  9278. },
  9279. "onresize": function () { }
  9280. }, {
  9281. closecallback: function () { }
  9282. }, {
  9283. "style": {
  9284. "height": "36px"
  9285. }
  9286. }).form; //创建窗体
  9287. _taskbar = {
  9288. "id": str + _formdiv.id,
  9289. "style": {
  9290. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9291. },
  9292. "name": "思维导图",
  9293. "forms": _formdiv,
  9294. "click": function () {
  9295. U.MD.D.I.openApplication(str, obj, info);
  9296. }
  9297. }
  9298. break;
  9299. case "MindMap":
  9300. aTool = 3;
  9301. _iframe = $$("iframe", {
  9302. "frameborder": "no",
  9303. "border": "0",
  9304. "scrolling ": "no",
  9305. "style": {
  9306. "cssText": "border:0;width:100%;height:100%"
  9307. },
  9308. "src": "//cloud.cocorobo.cn/mind/"
  9309. })
  9310. _box.appendChild(_iframe);
  9311. _box.appendChild(_jie);
  9312. _formdiv = new U.UF.UI.form(
  9313. "思维导图-" + _username,
  9314. _box, { //"/jsmind/example/demo.html"
  9315. "id": "mind" + cid + stage + task + tool + _userid,
  9316. "style": {
  9317. "width": "90%",
  9318. "height": "90%",
  9319. "overflow": 'hidden'
  9320. },
  9321. "onresize": function () { }
  9322. }, {
  9323. closecallback: function () { }
  9324. }, {
  9325. "style": {
  9326. "height": "36px"
  9327. }
  9328. }).form; //创建窗体
  9329. _taskbar = {
  9330. "id": str + _formdiv.id,
  9331. "style": {
  9332. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9333. },
  9334. "name": "思维导图",
  9335. "forms": _formdiv,
  9336. "click": function () {
  9337. U.MD.D.I.openApplication(str, obj, info);
  9338. }
  9339. }
  9340. break;
  9341. case "doc":
  9342. aTool = 6;
  9343. _iframe = $$("iframe", {
  9344. "frameborder": "no",
  9345. "border": "0",
  9346. "scrolling ": "no",
  9347. "style": {
  9348. "cssText": "border:0;width:100%;height:100%"
  9349. },
  9350. "src": "/Office/Word/WordEditArea.htm"
  9351. })
  9352. _box.appendChild(_iframe);
  9353. _box.appendChild(_jie);
  9354. _formdiv = new U.UF.UI.form(
  9355. "协同文档-" + _username,
  9356. _box, {
  9357. "id": "doc" + cid + stage + task + tool + _userid,
  9358. "style": {
  9359. "width": "90%",
  9360. "height": "90%",
  9361. "overflow": 'hidden'
  9362. },
  9363. "onresize": function () { }
  9364. }, {
  9365. closecallback: function () { }
  9366. }, {
  9367. "style": {
  9368. "height": "36px"
  9369. }
  9370. }).form; //创建窗体
  9371. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9372. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9373. })
  9374. _taskbar = {
  9375. "id": str + _formdiv.id,
  9376. "style": {
  9377. "backgroundImage": "url(/img/icon/doc.png)"
  9378. },
  9379. "name": "协同文档",
  9380. "forms": _formdiv,
  9381. "click": function () {
  9382. U.MD.D.I.openApplication(str, obj, info);
  9383. }
  9384. }
  9385. break;
  9386. case "mindNetwork": //好友打开
  9387. aTool = 7;
  9388. _iframe = $$("iframe", {
  9389. "webkitallowfullscreen": "",
  9390. "mozallowfullscreen": "",
  9391. "allowfullscreen": "",
  9392. "frameborder": "no",
  9393. "border": "0",
  9394. "scrolling ": "no",
  9395. "style": {
  9396. "cssText": "border:0; width:100%; height:100%;"
  9397. },
  9398. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9399. })
  9400. _box.appendChild(_iframe);
  9401. _box.appendChild(_jie);
  9402. _formdiv = new U.UF.UI.form(
  9403. "思维网格-" + _username,
  9404. _box, {
  9405. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9406. "style": {
  9407. "width": "90%",
  9408. "height": "90%",
  9409. "overflow": 'hidden'
  9410. },
  9411. "onresize": function () { }
  9412. }, {
  9413. closecallback: function () { }
  9414. }, {
  9415. "style": {
  9416. "height": "36px"
  9417. }
  9418. }).form; //创建窗体
  9419. _taskbar = {
  9420. "id": str + _formdiv.id,
  9421. "style": {
  9422. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9423. },
  9424. "name": "思维网格",
  9425. "forms": _formdiv,
  9426. "click": function () {
  9427. U.MD.D.I.openApplication(str, obj, info);
  9428. }
  9429. }
  9430. break;
  9431. case "courseDesign":
  9432. _iframe = $$("iframe", {
  9433. "webkitallowfullscreen": "",
  9434. "mozallowfullscreen": "",
  9435. "allowfullscreen": "",
  9436. "frameborder": "no",
  9437. "border": "0",
  9438. "scrolling ": "no",
  9439. "style": {
  9440. "cssText": "border:0; width:100%; height:100%;"
  9441. },
  9442. "src": "/course-design-vue"
  9443. })
  9444. _box.appendChild(_iframe);
  9445. _box.appendChild(_jie);
  9446. _formdiv = new U.UF.UI.form(
  9447. "项目设计-" + _username,
  9448. _box, {
  9449. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9450. "style": {
  9451. "width": "90%",
  9452. "height": "90%",
  9453. "overflow": 'hidden'
  9454. },
  9455. "onresize": function () { }
  9456. }, {
  9457. closecallback: function () { }
  9458. }, {
  9459. "style": {
  9460. "height": "36px"
  9461. }
  9462. }).form; //创建窗体
  9463. _taskbar = {
  9464. "id": str + _formdiv.id,
  9465. "style": {
  9466. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9467. },
  9468. "name": "项目设计",
  9469. "forms": _formdiv,
  9470. "click": function () {
  9471. U.MD.D.I.openApplication(str, obj, info);
  9472. }
  9473. }
  9474. break;
  9475. }
  9476. const script1 = document.createElement("script");
  9477. script1.type = "text/javascript";
  9478. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9479. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9480. const script2 = document.createElement("script");
  9481. script2.type = "text/javascript";
  9482. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9483. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9484. const script3 = document.createElement("script");
  9485. script3.type = "text/javascript";
  9486. script3.charset = "UTF-8";
  9487. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9488. const script4 = document.createElement("script");
  9489. script4.type = "text/javascript";
  9490. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9491. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  9492. if (_iframe) {
  9493. if (str == 'doc') {
  9494. _iframe = _formdiv.querySelector('iframe')
  9495. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9496. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9497. _iframe.contentWindow.document.body.appendChild(script1);
  9498. _iframe.contentWindow.document.body.appendChild(script2);
  9499. // _iframe.contentWindow.document.body.appendChild(script3);
  9500. _iframe.contentWindow.document.body.appendChild(script4);
  9501. })
  9502. if (onloadListener) {
  9503. _iframe.contentDocument.location.reload()
  9504. } else {
  9505. _iframe.contentDocument.location.reload()
  9506. }
  9507. } else if (str == 'courseDesign') {
  9508. U.UF.DL.iframeLoad(_iframe, function () {
  9509. // _iframe.contentWindow.U.MD.O.W.load();
  9510. // _iframe.contentWindow.document.body.appendChild(script1);
  9511. _iframe.contentWindow.document.body.appendChild(script2);
  9512. _iframe.contentWindow.document.body.appendChild(script4);
  9513. })
  9514. } else if (str == 'mind') {
  9515. _iframe = _formdiv.querySelector('iframe')
  9516. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9517. //
  9518. _iframe.contentWindow.document.body.appendChild(script1);
  9519. _iframe.contentWindow.document.body.appendChild(script2);
  9520. _iframe.contentWindow.document.body.appendChild(script4);
  9521. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9522. })
  9523. if (onloadListener) {
  9524. _iframe.contentDocument.location.reload()
  9525. } else {
  9526. _iframe.contentDocument.location.reload()
  9527. }
  9528. } else if (str == 'whiteboard') {
  9529. _iframe = _formdiv.querySelector('iframe')
  9530. let onloadListener = _iframe.onload = () => {
  9531. _iframe.contentWindow.document.body.appendChild(script1);
  9532. _iframe.contentWindow.document.body.appendChild(script2);
  9533. _iframe.contentWindow.document.body.appendChild(script4);
  9534. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9535. };
  9536. // if (onloadListener) {
  9537. // try {
  9538. // _iframe.src += "?cocorobo="+new Date().getTime()
  9539. // _iframe.contentWindow.document.location.reload()
  9540. // } catch (error) {
  9541. // }
  9542. // } else {
  9543. // _iframe.contentDocument.location.reload()
  9544. // }
  9545. } else {
  9546. _iframe.onload = () => {
  9547. _iframe.contentWindow.document.body.appendChild(script1);
  9548. _iframe.contentWindow.document.body.appendChild(script2);
  9549. // _iframe.contentWindow.document.body.appendChild(script3);
  9550. _iframe.contentWindow.document.body.appendChild(script4);
  9551. };
  9552. }
  9553. _jie.onclick = async () => {
  9554. let text = ''
  9555. if (aTool == 1) {
  9556. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9557. } else if (aTool == 6) {
  9558. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9559. } else if (aTool == 3) {
  9560. text = await U.MD.D.I.getEditorContent(_iframe);
  9561. }
  9562. _loading.style.display = 'flex'
  9563. console.log(_loading);
  9564. var _ajs = _iframe.contentWindow.document.createElement("script");
  9565. _ajs.type = "text/javascript";
  9566. _ajs.innerHTML =
  9567. // 'console.log(' + _loading + ');\n' +
  9568. 'var _js = document.createElement("script");\n' +
  9569. '_js.type="text/javascript";\n' +
  9570. '_js.charset="UTF-8";\n' +
  9571. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9572. "_js.onload = function(){\n" +
  9573. ' var a = document.getElementsByTagName("img")\n' +
  9574. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9575. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9576. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9577. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9578. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9579. "beforeUpload_shishi(file," +
  9580. "'" +
  9581. _userid +
  9582. "'" +
  9583. ", " +
  9584. "'" +
  9585. _cid +
  9586. "'" +
  9587. ", " +
  9588. "'" +
  9589. _stage +
  9590. "'" +
  9591. ", " +
  9592. "'" +
  9593. _task +
  9594. "'" +
  9595. ", " +
  9596. "'" +
  9597. _tool +
  9598. "'" +
  9599. ", " +
  9600. "'" +
  9601. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  9602. "'" +
  9603. ", " +
  9604. "'" +
  9605. aTool +
  9606. "'" +
  9607. ", " +
  9608. "`" +
  9609. text +
  9610. "`" +
  9611. ")\n" +
  9612. " });\n" +
  9613. "}\n" +
  9614. "document.head.appendChild(_js);\n";
  9615. _iframe.contentWindow.document.head.appendChild(_ajs);
  9616. }
  9617. }
  9618. }
  9619. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  9620. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9621. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9622. _userid = student.userid, //登录用户id
  9623. _username = student.student //用户名字
  9624. let _iframe;
  9625. let _cid = cid,
  9626. _stage = stage,
  9627. _task = task,
  9628. _tool = tool;
  9629. var _jie = $$("div", {
  9630. "style": {
  9631. "position": "absolute",
  9632. "bottom": "50px",
  9633. "right": "50px",
  9634. "zIndex": "9999",
  9635. "backgroundColor": "#2268bc",
  9636. "color": "#fff",
  9637. "padding": "12px 20px",
  9638. "cursor": "pointer",
  9639. "borderRadius": "4px",
  9640. },
  9641. "innerHTML": "提交作业"
  9642. })
  9643. let aTool = ''
  9644. let _loading = document.createElement('div')
  9645. _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;"
  9646. // _loading.id = "";
  9647. let _lchild = document.createElement('div')
  9648. let _limg = document.createElement('img')
  9649. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9650. _limg.style = "width: 26px;margin-right: 10px;"
  9651. _lchild.appendChild(_limg)
  9652. let _lspan = document.createElement('span')
  9653. _lspan.innerHTML = "上传中..."
  9654. _lchild.appendChild(_lspan)
  9655. _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%);"
  9656. _loading.appendChild(_lchild)
  9657. var _box = $$('div', {
  9658. "style": {
  9659. "position": "relative",
  9660. "width": "100%",
  9661. "height": "100%",
  9662. },
  9663. })
  9664. _box.appendChild(_loading)
  9665. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  9666. switch (str) {
  9667. case "whiteboard":
  9668. aTool = 1;
  9669. _iframe = $$("iframe", {
  9670. "frameborder": "no",
  9671. "border": "0",
  9672. "scrolling ": "no",
  9673. "style": {
  9674. "cssText": "border:0;width:100%;height:100%"
  9675. },
  9676. "src": "https://beta.iwb.cocorobo.cn/"
  9677. })
  9678. _box.appendChild(_iframe);
  9679. _box.appendChild(_jie);
  9680. _formdiv = new U.UF.UI.form(
  9681. "电子白板-" + _username,
  9682. _box, {
  9683. "id": "whiteboard" + cid + stage + task + tool + _userid,
  9684. "style": {
  9685. "width": "90%",
  9686. "height": "90%",
  9687. "overflow": 'hidden'
  9688. },
  9689. "onresize": function () { }
  9690. }, {
  9691. closecallback: function () { }
  9692. }, {
  9693. "style": {
  9694. "height": "36px"
  9695. }
  9696. }).form; //创建窗体
  9697. _taskbar = {
  9698. "id": str + _formdiv.id,
  9699. "style": {
  9700. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9701. },
  9702. "name": "电子白板",
  9703. "forms": _formdiv,
  9704. "click": function () {
  9705. U.MD.D.I.openApplication(str, obj, info);
  9706. }
  9707. }
  9708. break;
  9709. case "mind":
  9710. aTool = 3;
  9711. _iframe = $$("iframe", {
  9712. "frameborder": "no",
  9713. "border": "0",
  9714. "scrolling ": "no",
  9715. "style": {
  9716. "cssText": "border:0;width:100%;height:100%"
  9717. },
  9718. "src": "/kityminder-editor/dist/index.html"
  9719. })
  9720. _box.appendChild(_iframe);
  9721. _box.appendChild(_jie);
  9722. _formdiv = new U.UF.UI.form(
  9723. "思维导图-" + _username,
  9724. _box, { //"/jsmind/example/demo.html"
  9725. "id": "mind" + cid + stage + task + tool + _userid,
  9726. "style": {
  9727. "width": "90%",
  9728. "height": "90%",
  9729. "overflow": 'hidden'
  9730. },
  9731. "onresize": function () { }
  9732. }, {
  9733. closecallback: function () { }
  9734. }, {
  9735. "style": {
  9736. "height": "36px"
  9737. }
  9738. }).form; //创建窗体
  9739. _taskbar = {
  9740. "id": str + _formdiv.id,
  9741. "style": {
  9742. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9743. },
  9744. "name": "思维导图",
  9745. "forms": _formdiv,
  9746. "click": function () {
  9747. U.MD.D.I.openApplication(str, obj, info);
  9748. }
  9749. }
  9750. break;
  9751. case "MindMap":
  9752. aTool = 3;
  9753. _iframe = $$("iframe", {
  9754. "frameborder": "no",
  9755. "border": "0",
  9756. "scrolling ": "no",
  9757. "style": {
  9758. "cssText": "border:0;width:100%;height:100%"
  9759. },
  9760. "src": "//cloud.cocorobo.cn/mind/"
  9761. })
  9762. _box.appendChild(_iframe);
  9763. _box.appendChild(_jie);
  9764. _formdiv = new U.UF.UI.form(
  9765. "思维导图-" + _username,
  9766. _box, { //"/jsmind/example/demo.html"
  9767. "id": "mind" + cid + stage + task + tool + _userid,
  9768. "style": {
  9769. "width": "90%",
  9770. "height": "90%",
  9771. "overflow": 'hidden'
  9772. },
  9773. "onresize": function () { }
  9774. }, {
  9775. closecallback: function () { }
  9776. }, {
  9777. "style": {
  9778. "height": "36px"
  9779. }
  9780. }).form; //创建窗体
  9781. _taskbar = {
  9782. "id": str + _formdiv.id,
  9783. "style": {
  9784. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9785. },
  9786. "name": "思维导图",
  9787. "forms": _formdiv,
  9788. "click": function () {
  9789. U.MD.D.I.openApplication(str, obj, info);
  9790. }
  9791. }
  9792. break;
  9793. case "doc":
  9794. aTool = 6;
  9795. _iframe = $$("iframe", {
  9796. "frameborder": "no",
  9797. "border": "0",
  9798. "scrolling ": "no",
  9799. "style": {
  9800. "cssText": "border:0;width:100%;height:100%"
  9801. },
  9802. "src": "/Office/Word/WordEditArea.htm"
  9803. })
  9804. _box.appendChild(_iframe);
  9805. _box.appendChild(_jie);
  9806. _formdiv = new U.UF.UI.form(
  9807. "协同文档-" + _username,
  9808. _box, {
  9809. "id": "doc" + cid + stage + task + tool + _userid,
  9810. "style": {
  9811. "width": "90%",
  9812. "height": "90%",
  9813. "overflow": 'hidden'
  9814. },
  9815. "onresize": function () { }
  9816. }, {
  9817. closecallback: function () { }
  9818. }, {
  9819. "style": {
  9820. "height": "36px"
  9821. }
  9822. }).form; //创建窗体
  9823. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9824. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9825. })
  9826. _taskbar = {
  9827. "id": str + _formdiv.id,
  9828. "style": {
  9829. "backgroundImage": "url(/img/icon/doc.png)"
  9830. },
  9831. "name": "协同文档",
  9832. "forms": _formdiv,
  9833. "click": function () {
  9834. U.MD.D.I.openApplication(str, obj, info);
  9835. }
  9836. }
  9837. break;
  9838. case "mindNetwork": //好友打开
  9839. aTool = 7;
  9840. _iframe = $$("iframe", {
  9841. "webkitallowfullscreen": "",
  9842. "mozallowfullscreen": "",
  9843. "allowfullscreen": "",
  9844. "frameborder": "no",
  9845. "border": "0",
  9846. "scrolling ": "no",
  9847. "style": {
  9848. "cssText": "border:0; width:100%; height:100%;"
  9849. },
  9850. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  9851. })
  9852. _box.appendChild(_iframe);
  9853. _box.appendChild(_jie);
  9854. _formdiv = new U.UF.UI.form(
  9855. "思维网格-" + _username,
  9856. _box, {
  9857. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  9858. "style": {
  9859. "width": "90%",
  9860. "height": "90%",
  9861. "overflow": 'hidden'
  9862. },
  9863. "onresize": function () { }
  9864. }, {
  9865. closecallback: function () { }
  9866. }, {
  9867. "style": {
  9868. "height": "36px"
  9869. }
  9870. }).form; //创建窗体
  9871. _taskbar = {
  9872. "id": str + _formdiv.id,
  9873. "style": {
  9874. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  9875. },
  9876. "name": "思维网格",
  9877. "forms": _formdiv,
  9878. "click": function () {
  9879. U.MD.D.I.openApplication(str, obj, info);
  9880. }
  9881. }
  9882. break;
  9883. case "courseDesign":
  9884. _iframe = $$("iframe", {
  9885. "webkitallowfullscreen": "",
  9886. "mozallowfullscreen": "",
  9887. "allowfullscreen": "",
  9888. "frameborder": "no",
  9889. "border": "0",
  9890. "scrolling ": "no",
  9891. "style": {
  9892. "cssText": "border:0; width:100%; height:100%;"
  9893. },
  9894. "src": "/course-design-vue"
  9895. })
  9896. _box.appendChild(_iframe);
  9897. _box.appendChild(_jie);
  9898. _formdiv = new U.UF.UI.form(
  9899. "项目设计-" + _username,
  9900. _box, {
  9901. "id": "courseDesign" + cid + stage + task + tool + _userid,
  9902. "style": {
  9903. "width": "90%",
  9904. "height": "90%",
  9905. "overflow": 'hidden'
  9906. },
  9907. "onresize": function () { }
  9908. }, {
  9909. closecallback: function () { }
  9910. }, {
  9911. "style": {
  9912. "height": "36px"
  9913. }
  9914. }).form; //创建窗体
  9915. _taskbar = {
  9916. "id": str + _formdiv.id,
  9917. "style": {
  9918. "backgroundImage": "url(/img/icon/courseDesign.png)"
  9919. },
  9920. "name": "项目设计",
  9921. "forms": _formdiv,
  9922. "click": function () {
  9923. U.MD.D.I.openApplication(str, obj, info);
  9924. }
  9925. }
  9926. break;
  9927. }
  9928. const script1 = document.createElement("script");
  9929. script1.type = "text/javascript";
  9930. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9931. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9932. const script2 = document.createElement("script");
  9933. script2.type = "text/javascript";
  9934. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9935. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9936. const script3 = document.createElement("script");
  9937. script3.type = "text/javascript";
  9938. script3.charset = "UTF-8";
  9939. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9940. const script4 = document.createElement("script");
  9941. script4.type = "text/javascript";
  9942. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  9943. script4.src = window.origin + "/js/Common/jietu2E.js";
  9944. if (_iframe) {
  9945. if (str == 'doc') {
  9946. _iframe = _formdiv.querySelector('iframe')
  9947. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9948. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  9949. _iframe.contentWindow.document.body.appendChild(script1);
  9950. _iframe.contentWindow.document.body.appendChild(script2);
  9951. // _iframe.contentWindow.document.body.appendChild(script3);
  9952. _iframe.contentWindow.document.body.appendChild(script4);
  9953. })
  9954. if (onloadListener) {
  9955. _iframe.contentDocument.location.reload()
  9956. } else {
  9957. _iframe.contentDocument.location.reload()
  9958. }
  9959. } else if (str == 'courseDesign') {
  9960. U.UF.DL.iframeLoad(_iframe, function () {
  9961. // _iframe.contentWindow.U.MD.O.W.load();
  9962. // _iframe.contentWindow.document.body.appendChild(script1);
  9963. _iframe.contentWindow.document.body.appendChild(script2);
  9964. _iframe.contentWindow.document.body.appendChild(script4);
  9965. })
  9966. } else if (str == 'mind') {
  9967. _iframe = _formdiv.querySelector('iframe')
  9968. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9969. //
  9970. _iframe.contentWindow.document.body.appendChild(script1);
  9971. _iframe.contentWindow.document.body.appendChild(script2);
  9972. _iframe.contentWindow.document.body.appendChild(script4);
  9973. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  9974. })
  9975. if (onloadListener) {
  9976. _iframe.contentDocument.location.reload()
  9977. } else {
  9978. _iframe.contentDocument.location.reload()
  9979. }
  9980. } else if (str == 'whiteboard') {
  9981. _iframe = _formdiv.querySelector('iframe')
  9982. let onloadListener = _iframe.onload = () => {
  9983. _iframe.contentWindow.document.body.appendChild(script1);
  9984. _iframe.contentWindow.document.body.appendChild(script2);
  9985. _iframe.contentWindow.document.body.appendChild(script4);
  9986. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  9987. };
  9988. // if (onloadListener) {
  9989. // try {
  9990. // _iframe.src += "?cocorobo="+new Date().getTime()
  9991. // _iframe.contentWindow.document.location.reload()
  9992. // } catch (error) {
  9993. // }
  9994. // } else {
  9995. // _iframe.contentDocument.location.reload()
  9996. // }
  9997. } else {
  9998. _iframe.onload = () => {
  9999. _iframe.contentWindow.document.body.appendChild(script1);
  10000. _iframe.contentWindow.document.body.appendChild(script2);
  10001. // _iframe.contentWindow.document.body.appendChild(script3);
  10002. _iframe.contentWindow.document.body.appendChild(script4);
  10003. };
  10004. }
  10005. _jie.onclick = async () => {
  10006. let text = ''
  10007. if (aTool == 1) {
  10008. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  10009. } else if (aTool == 6) {
  10010. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10011. } else if (aTool == 3) {
  10012. text = await U.MD.D.I.getEditorContent(_iframe);
  10013. }
  10014. _loading.style.display = 'flex'
  10015. console.log(_loading);
  10016. var _ajs = _iframe.contentWindow.document.createElement("script");
  10017. _ajs.type = "text/javascript";
  10018. _ajs.innerHTML =
  10019. // 'console.log(' + _loading + ');\n' +
  10020. 'var _js = document.createElement("script");\n' +
  10021. '_js.type="text/javascript";\n' +
  10022. '_js.charset="UTF-8";\n' +
  10023. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10024. "_js.onload = function(){\n" +
  10025. ' var a = document.getElementsByTagName("img")\n' +
  10026. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10027. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10028. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10029. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10030. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10031. "beforeUpload_shishi(file," +
  10032. "'" +
  10033. _userid +
  10034. "'" +
  10035. ", " +
  10036. "'" +
  10037. _cid +
  10038. "'" +
  10039. ", " +
  10040. "'" +
  10041. _stage +
  10042. "'" +
  10043. ", " +
  10044. "'" +
  10045. _task +
  10046. "'" +
  10047. ", " +
  10048. "'" +
  10049. _tool +
  10050. "'" +
  10051. ", " +
  10052. "'" +
  10053. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  10054. "'" +
  10055. ", " +
  10056. "'" +
  10057. aTool +
  10058. "'" +
  10059. ", " +
  10060. "`" +
  10061. text +
  10062. "`" +
  10063. ")\n" +
  10064. " });\n" +
  10065. "}\n" +
  10066. "document.head.appendChild(_js);\n";
  10067. _iframe.contentWindow.document.head.appendChild(_ajs);
  10068. }
  10069. }
  10070. }
  10071. U.MD.D.I.getEditorContent = function (iframe) {
  10072. return new Promise((resolve, reject) => {
  10073. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  10074. console.log(content);
  10075. resolve(content)
  10076. });
  10077. });
  10078. }
  10079. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  10080. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  10081. // if (res.value[0].length > 0) {
  10082. // // resolve(res.value[0][0].text);
  10083. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  10084. // $(fileInput).val('');
  10085. // });
  10086. // }
  10087. // }, [], { "type": "GET", "withCredentials": true });
  10088. var xmlhttp;
  10089. var Mac, Sn, DeviceId
  10090. if (window.XMLHttpRequest) {
  10091. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  10092. xmlhttp = new XMLHttpRequest();
  10093. } else {
  10094. // IE6, IE5 浏览器执行代码
  10095. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  10096. }
  10097. xmlhttp.onreadystatechange = function () {
  10098. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  10099. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  10100. // resolve(res.value[0][0].text);
  10101. if (type == '2') {
  10102. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  10103. } else if (type == '3') {
  10104. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  10105. }
  10106. } else {
  10107. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  10108. }
  10109. }
  10110. }
  10111. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  10112. xmlhttp.send();
  10113. }
  10114. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  10115. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10116. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10117. _userinfo = US.userInfo, //登录用户信息
  10118. _userid = US.userInfo.userid //登录用户id
  10119. let _iframe;
  10120. let _cid = cid,
  10121. _stage = stage,
  10122. _task = task,
  10123. _tool = tool;
  10124. var _jie = $$("div", {
  10125. "style": {
  10126. "position": "absolute",
  10127. "bottom": "50px",
  10128. "right": "50px",
  10129. "zIndex": "9999",
  10130. "backgroundColor": "#2268bc",
  10131. "color": "#fff",
  10132. "padding": "12px 20px",
  10133. "cursor": "pointer",
  10134. "borderRadius": "4px",
  10135. },
  10136. "innerHTML": "确认并提交"
  10137. })
  10138. let aTool = ''
  10139. let _loading = document.createElement('div')
  10140. _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;"
  10141. // _loading.id = "";
  10142. let _lchild = document.createElement('div')
  10143. let _limg = document.createElement('img')
  10144. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10145. _limg.style = "width: 26px;margin-right: 10px;"
  10146. _lchild.appendChild(_limg)
  10147. let _lspan = document.createElement('span')
  10148. _lspan.innerHTML = "上传中..."
  10149. _lchild.appendChild(_lspan)
  10150. _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%);"
  10151. _loading.appendChild(_lchild)
  10152. var _box = $$('div', {
  10153. "style": {
  10154. "position": "relative",
  10155. "width": "100%",
  10156. "height": "100%",
  10157. },
  10158. })
  10159. _box.appendChild(_loading)
  10160. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  10161. switch (str) {
  10162. case "whiteboard":
  10163. aTool = 1;
  10164. _iframe = $$("iframe", {
  10165. "frameborder": "no",
  10166. "border": "0",
  10167. "scrolling ": "no",
  10168. "style": {
  10169. "cssText": "border:0;width:100%;height:100%"
  10170. },
  10171. "src": "https://beta.iwb.cocorobo.cn/"
  10172. })
  10173. _box.appendChild(_iframe);
  10174. _box.appendChild(_jie);
  10175. _formdiv = new U.UF.UI.form(
  10176. "电子白板",
  10177. _box, {
  10178. "id": "whiteboards" + cid + stage + task + tool,
  10179. "style": {
  10180. "width": "90%",
  10181. "height": "90%",
  10182. "overflow": 'hidden'
  10183. },
  10184. "onresize": function () { }
  10185. }, {
  10186. closecallback: function () { }
  10187. }, {
  10188. "style": {
  10189. "height": "36px"
  10190. }
  10191. }).form; //创建窗体
  10192. _taskbar = {
  10193. "id": str + _formdiv.id,
  10194. "style": {
  10195. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10196. },
  10197. "name": "电子白板",
  10198. "forms": _formdiv,
  10199. "click": function () {
  10200. U.MD.D.I.openApplication(str, obj, info);
  10201. }
  10202. }
  10203. break;
  10204. case "mind":
  10205. aTool = 3;
  10206. _iframe = $$("iframe", {
  10207. "frameborder": "no",
  10208. "border": "0",
  10209. "scrolling ": "no",
  10210. "style": {
  10211. "cssText": "border:0;width:100%;height:100%"
  10212. },
  10213. "src": "/kityminder-editor/dist/index.html"
  10214. });
  10215. _box.appendChild(_iframe);
  10216. _box.appendChild(_jie);
  10217. _formdiv = new U.UF.UI.form(
  10218. "思维导图",
  10219. _box, { //"/jsmind/example/demo.html"
  10220. "id": "minds" + cid + stage + task + tool,
  10221. "style": {
  10222. "width": "90%",
  10223. "height": "90%",
  10224. "overflow": 'hidden'
  10225. },
  10226. "onresize": function () { }
  10227. }, {
  10228. closecallback: function () { }
  10229. }, {
  10230. "style": {
  10231. "height": "36px"
  10232. }
  10233. }).form; //创建窗体
  10234. _taskbar = {
  10235. "id": str + _formdiv.id,
  10236. "style": {
  10237. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10238. },
  10239. "name": "思维导图",
  10240. "forms": _formdiv,
  10241. "click": function () {
  10242. U.MD.D.I.openApplication(str, obj, info);
  10243. }
  10244. }
  10245. break;
  10246. case "doc":
  10247. aTool = 6;
  10248. _iframe = $$("iframe", {
  10249. "frameborder": "no",
  10250. "border": "0",
  10251. "scrolling ": "no",
  10252. "style": {
  10253. "cssText": "border:0;width:100%;height:100%"
  10254. },
  10255. "src": "/Office/Word/WordEditArea.htm"
  10256. })
  10257. _box.appendChild(_iframe);
  10258. _box.appendChild(_jie);
  10259. _formdiv = new U.UF.UI.form(
  10260. "协同文档",
  10261. _box, {
  10262. "id": "docs" + cid + stage + task + tool,
  10263. "style": {
  10264. "width": "90%",
  10265. "height": "90%",
  10266. "overflow": 'hidden'
  10267. },
  10268. "onresize": function () { }
  10269. }, {
  10270. closecallback: function () { }
  10271. }, {
  10272. "style": {
  10273. "height": "36px"
  10274. }
  10275. }).form; //创建窗体
  10276. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10277. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10278. })
  10279. _taskbar = {
  10280. "id": str + _formdiv.id,
  10281. "style": {
  10282. "backgroundImage": "url(/img/icon/doc.png)"
  10283. },
  10284. "name": "协同文档",
  10285. "forms": _formdiv,
  10286. "click": function () {
  10287. U.MD.D.I.openApplication(str, obj, info);
  10288. }
  10289. }
  10290. break;
  10291. }
  10292. const script1 = document.createElement("script");
  10293. script1.type = "text/javascript";
  10294. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10295. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10296. const script2 = document.createElement("script");
  10297. script2.type = "text/javascript";
  10298. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10299. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10300. const script3 = document.createElement("script");
  10301. script3.type = "text/javascript";
  10302. script3.charset = "UTF-8";
  10303. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10304. const script4 = document.createElement("script");
  10305. script4.type = "text/javascript";
  10306. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10307. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  10308. if (_iframe) {
  10309. if (str == 'doc') {
  10310. _iframe = _formdiv.querySelector('iframe')
  10311. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10312. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10313. _iframe.contentWindow.document.body.appendChild(script1);
  10314. _iframe.contentWindow.document.body.appendChild(script2);
  10315. // _iframe.contentWindow.document.body.appendChild(script3);
  10316. _iframe.contentWindow.document.body.appendChild(script4);
  10317. })
  10318. if (onloadListener) {
  10319. _iframe.contentDocument.location.reload()
  10320. } else {
  10321. _iframe.contentDocument.location.reload()
  10322. }
  10323. } else if (str == 'mind') {
  10324. _iframe = _formdiv.querySelector('iframe')
  10325. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10326. _iframe.contentWindow.document.body.appendChild(script1);
  10327. _iframe.contentWindow.document.body.appendChild(script2);
  10328. _iframe.contentWindow.document.body.appendChild(script4);
  10329. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10330. })
  10331. if (onloadListener) {
  10332. _iframe.contentDocument.location.reload()
  10333. } else {
  10334. _iframe.contentDocument.location.reload()
  10335. }
  10336. } else {
  10337. _iframe.onload = () => {
  10338. _iframe.contentWindow.document.body.appendChild(script1);
  10339. _iframe.contentWindow.document.body.appendChild(script2);
  10340. // _iframe.contentWindow.document.body.appendChild(script3);
  10341. _iframe.contentWindow.document.body.appendChild(script4);
  10342. };
  10343. }
  10344. _jie.onclick = async () => {
  10345. let text = ''
  10346. if (aTool == 6) {
  10347. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10348. } else if (aTool == 3) {
  10349. text = await U.MD.D.I.getEditorContent(_iframe);
  10350. }
  10351. _loading.style.display = 'flex'
  10352. console.log(_loading);
  10353. var _ajs = _iframe.contentWindow.document.createElement("script");
  10354. _ajs.type = "text/javascript";
  10355. _ajs.innerHTML =
  10356. // 'console.log(' + _loading + ');\n' +
  10357. 'var _js = document.createElement("script");\n' +
  10358. '_js.type="text/javascript";\n' +
  10359. '_js.charset="UTF-8";\n' +
  10360. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10361. "_js.onload = function(){\n" +
  10362. ' var a = document.getElementsByTagName("img")\n' +
  10363. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10364. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10365. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10366. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10367. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10368. "beforeUpload_shishi(file," +
  10369. "'" +
  10370. _userid +
  10371. "'" +
  10372. ", " +
  10373. "'" +
  10374. _cid +
  10375. "'" +
  10376. ", " +
  10377. "'" +
  10378. _stage +
  10379. "'" +
  10380. ", " +
  10381. "'" +
  10382. _task +
  10383. "'" +
  10384. ", " +
  10385. "'" +
  10386. _tool +
  10387. "'" +
  10388. ", " +
  10389. "'" +
  10390. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  10391. "'" +
  10392. ", " +
  10393. "'" +
  10394. aTool +
  10395. "'" +
  10396. ", " +
  10397. "`" +
  10398. text +
  10399. "`" +
  10400. ")\n" +
  10401. " });\n" +
  10402. "}\n" +
  10403. "document.head.appendChild(_js);\n";
  10404. _iframe.contentWindow.document.head.appendChild(_ajs);
  10405. }
  10406. }
  10407. //U.MD.D.I.openClick(str);
  10408. //如果有任务栏信息
  10409. // if (_taskbar) {
  10410. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10411. // }
  10412. }
  10413. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  10414. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10415. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10416. _userinfo = US.userInfo, //登录用户信息
  10417. _userid = US.userInfo.userid //登录用户id
  10418. let _iframe;
  10419. let _cid = cid,
  10420. _stage = stage,
  10421. _task = task,
  10422. _tool = tool;
  10423. var _jie = $$("div", {
  10424. "style": {
  10425. "position": "absolute",
  10426. "bottom": "50px",
  10427. "right": "50px",
  10428. "zIndex": "9999",
  10429. "backgroundColor": "#2268bc",
  10430. "color": "#fff",
  10431. "padding": "12px 20px",
  10432. "cursor": "pointer",
  10433. "borderRadius": "4px",
  10434. },
  10435. "innerHTML": "确认并提交"
  10436. })
  10437. let aTool = ''
  10438. let _loading = document.createElement('div')
  10439. _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;"
  10440. // _loading.id = "";
  10441. let _lchild = document.createElement('div')
  10442. let _limg = document.createElement('img')
  10443. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10444. _limg.style = "width: 26px;margin-right: 10px;"
  10445. _lchild.appendChild(_limg)
  10446. let _lspan = document.createElement('span')
  10447. _lspan.innerHTML = "上传中..."
  10448. _lchild.appendChild(_lspan)
  10449. _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%);"
  10450. _loading.appendChild(_lchild)
  10451. var _box = $$('div', {
  10452. "style": {
  10453. "position": "relative",
  10454. "width": "100%",
  10455. "height": "100%",
  10456. },
  10457. })
  10458. _box.appendChild(_loading)
  10459. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  10460. switch (str) {
  10461. case "whiteboard":
  10462. aTool = 1;
  10463. _iframe = $$("iframe", {
  10464. "frameborder": "no",
  10465. "border": "0",
  10466. "scrolling ": "no",
  10467. "style": {
  10468. "cssText": "border:0;width:100%;height:100%"
  10469. },
  10470. "src": "https://beta.iwb.cocorobo.cn/"
  10471. })
  10472. _box.appendChild(_iframe);
  10473. _box.appendChild(_jie);
  10474. _formdiv = new U.UF.UI.form(
  10475. "电子白板",
  10476. _box, {
  10477. "id": "whiteboards" + cid + stage + task + tool,
  10478. "style": {
  10479. "width": "90%",
  10480. "height": "90%",
  10481. "overflow": 'hidden'
  10482. },
  10483. "onresize": function () { }
  10484. }, {
  10485. closecallback: function () { }
  10486. }, {
  10487. "style": {
  10488. "height": "36px"
  10489. }
  10490. }).form; //创建窗体
  10491. _taskbar = {
  10492. "id": str + _formdiv.id,
  10493. "style": {
  10494. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10495. },
  10496. "name": "电子白板",
  10497. "forms": _formdiv,
  10498. "click": function () {
  10499. U.MD.D.I.openApplication(str, obj, info);
  10500. }
  10501. }
  10502. break;
  10503. case "mind":
  10504. aTool = 3;
  10505. _iframe = $$("iframe", {
  10506. "frameborder": "no",
  10507. "border": "0",
  10508. "scrolling ": "no",
  10509. "style": {
  10510. "cssText": "border:0;width:100%;height:100%"
  10511. },
  10512. "src": "/kityminder-editor/dist/index.html"
  10513. });
  10514. _box.appendChild(_iframe);
  10515. _box.appendChild(_jie);
  10516. _formdiv = new U.UF.UI.form(
  10517. "思维导图",
  10518. _box, { //"/jsmind/example/demo.html"
  10519. "id": "minds" + cid + stage + task + tool,
  10520. "style": {
  10521. "width": "90%",
  10522. "height": "90%",
  10523. "overflow": 'hidden'
  10524. },
  10525. "onresize": function () { }
  10526. }, {
  10527. closecallback: function () { }
  10528. }, {
  10529. "style": {
  10530. "height": "36px"
  10531. }
  10532. }).form; //创建窗体
  10533. _taskbar = {
  10534. "id": str + _formdiv.id,
  10535. "style": {
  10536. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10537. },
  10538. "name": "思维导图",
  10539. "forms": _formdiv,
  10540. "click": function () {
  10541. U.MD.D.I.openApplication(str, obj, info);
  10542. }
  10543. }
  10544. break;
  10545. case "doc":
  10546. aTool = 6;
  10547. _iframe = $$("iframe", {
  10548. "frameborder": "no",
  10549. "border": "0",
  10550. "scrolling ": "no",
  10551. "style": {
  10552. "cssText": "border:0;width:100%;height:100%"
  10553. },
  10554. "src": "/Office/Word/WordEditArea.htm"
  10555. })
  10556. _box.appendChild(_iframe);
  10557. _box.appendChild(_jie);
  10558. _formdiv = new U.UF.UI.form(
  10559. "协同文档",
  10560. _box, {
  10561. "id": "docs" + cid + stage + task + tool,
  10562. "style": {
  10563. "width": "90%",
  10564. "height": "90%",
  10565. "overflow": 'hidden'
  10566. },
  10567. "onresize": function () { }
  10568. }, {
  10569. closecallback: function () { }
  10570. }, {
  10571. "style": {
  10572. "height": "36px"
  10573. }
  10574. }).form; //创建窗体
  10575. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10576. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10577. })
  10578. _taskbar = {
  10579. "id": str + _formdiv.id,
  10580. "style": {
  10581. "backgroundImage": "url(/img/icon/doc.png)"
  10582. },
  10583. "name": "协同文档",
  10584. "forms": _formdiv,
  10585. "click": function () {
  10586. U.MD.D.I.openApplication(str, obj, info);
  10587. }
  10588. }
  10589. break;
  10590. }
  10591. const script1 = document.createElement("script");
  10592. script1.type = "text/javascript";
  10593. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  10594. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  10595. const script2 = document.createElement("script");
  10596. script2.type = "text/javascript";
  10597. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  10598. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  10599. const script3 = document.createElement("script");
  10600. script3.type = "text/javascript";
  10601. script3.charset = "UTF-8";
  10602. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  10603. const script4 = document.createElement("script");
  10604. script4.type = "text/javascript";
  10605. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  10606. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  10607. if (_iframe) {
  10608. if (str == 'doc') {
  10609. _iframe = _formdiv.querySelector('iframe')
  10610. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10611. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10612. _iframe.contentWindow.document.body.appendChild(script1);
  10613. _iframe.contentWindow.document.body.appendChild(script2);
  10614. // _iframe.contentWindow.document.body.appendChild(script3);
  10615. _iframe.contentWindow.document.body.appendChild(script4);
  10616. })
  10617. if (onloadListener) {
  10618. _iframe.contentDocument.location.reload()
  10619. } else {
  10620. _iframe.contentDocument.location.reload()
  10621. }
  10622. } else if (str == 'mind') {
  10623. _iframe = _formdiv.querySelector('iframe')
  10624. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10625. _iframe.contentWindow.document.body.appendChild(script1);
  10626. _iframe.contentWindow.document.body.appendChild(script2);
  10627. _iframe.contentWindow.document.body.appendChild(script4);
  10628. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  10629. })
  10630. if (onloadListener) {
  10631. _iframe.contentDocument.location.reload()
  10632. } else {
  10633. _iframe.contentDocument.location.reload()
  10634. }
  10635. } else {
  10636. _iframe.onload = () => {
  10637. _iframe.contentWindow.document.body.appendChild(script1);
  10638. _iframe.contentWindow.document.body.appendChild(script2);
  10639. // _iframe.contentWindow.document.body.appendChild(script3);
  10640. _iframe.contentWindow.document.body.appendChild(script4);
  10641. };
  10642. }
  10643. _jie.onclick = async () => {
  10644. let text = ''
  10645. if (aTool == 6) {
  10646. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  10647. } else if (aTool == 3) {
  10648. text = await U.MD.D.I.getEditorContent(_iframe);
  10649. }
  10650. _loading.style.display = 'flex'
  10651. console.log(_loading);
  10652. var _ajs = _iframe.contentWindow.document.createElement("script");
  10653. _ajs.type = "text/javascript";
  10654. _ajs.innerHTML =
  10655. // 'console.log(' + _loading + ');\n' +
  10656. 'var _js = document.createElement("script");\n' +
  10657. '_js.type="text/javascript";\n' +
  10658. '_js.charset="UTF-8";\n' +
  10659. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  10660. "_js.onload = function(){\n" +
  10661. ' var a = document.getElementsByTagName("img")\n' +
  10662. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  10663. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  10664. '  var base64Url = canvas.toDataURL("image/png");\n' +
  10665. 'var base64 = "<img src=" + base64Url + " />"\n' +
  10666. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  10667. "beforeUpload_shishi(file," +
  10668. "'" +
  10669. _userid +
  10670. "'" +
  10671. ", " +
  10672. "'" +
  10673. _cid +
  10674. "'" +
  10675. ", " +
  10676. "'" +
  10677. _stage +
  10678. "'" +
  10679. ", " +
  10680. "'" +
  10681. _task +
  10682. "'" +
  10683. ", " +
  10684. "'" +
  10685. _tool +
  10686. "'" +
  10687. ", " +
  10688. "'" +
  10689. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  10690. "'" +
  10691. ", " +
  10692. "'" +
  10693. aTool +
  10694. "'" +
  10695. ", " +
  10696. "`" +
  10697. text +
  10698. "`" +
  10699. ")\n" +
  10700. " });\n" +
  10701. "}\n" +
  10702. "document.head.appendChild(_js);\n";
  10703. _iframe.contentWindow.document.head.appendChild(_ajs);
  10704. }
  10705. }
  10706. //U.MD.D.I.openClick(str);
  10707. //如果有任务栏信息
  10708. // if (_taskbar) {
  10709. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  10710. // }
  10711. }
  10712. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  10713. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10714. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10715. _userinfo = US.userInfo, //登录用户信息
  10716. _userid = US.userInfo.userid //登录用户id
  10717. let _iframe;
  10718. let _cid = cid,
  10719. _stage = stage,
  10720. _task = task,
  10721. _tool = tool;
  10722. var _jie = $$("div", {
  10723. "style": {
  10724. "position": "absolute",
  10725. "bottom": "50px",
  10726. "right": "50px",
  10727. "zIndex": "9999",
  10728. "backgroundColor": "#2268bc",
  10729. "color": "#fff",
  10730. "padding": "12px 20px",
  10731. "cursor": "pointer",
  10732. "borderRadius": "4px",
  10733. },
  10734. "innerHTML": "上传模板"
  10735. })
  10736. let aTool = ''
  10737. let _loading = document.createElement('div')
  10738. _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;"
  10739. // _loading.id = "";
  10740. let _lchild = document.createElement('div')
  10741. let _limg = document.createElement('img')
  10742. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10743. _limg.style = "width: 26px;margin-right: 10px;"
  10744. _lchild.appendChild(_limg)
  10745. let _lspan = document.createElement('span')
  10746. _lspan.innerHTML = "上传中..."
  10747. _lchild.appendChild(_lspan)
  10748. _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%);"
  10749. _loading.appendChild(_lchild)
  10750. var _box = $$('div', {
  10751. "style": {
  10752. "position": "relative",
  10753. "width": "100%",
  10754. "height": "100%",
  10755. },
  10756. })
  10757. _box.appendChild(_loading)
  10758. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  10759. switch (str) {
  10760. case "whiteboard":
  10761. aTool = 1;
  10762. _iframe = $$("iframe", {
  10763. "frameborder": "no",
  10764. "border": "0",
  10765. "scrolling ": "no",
  10766. "style": {
  10767. "cssText": "border:0;width:100%;height:100%"
  10768. },
  10769. "src": "https://beta.iwb.cocorobo.cn/"
  10770. })
  10771. _box.appendChild(_iframe);
  10772. _box.appendChild(_jie);
  10773. _formdiv = new U.UF.UI.form(
  10774. "电子白板",
  10775. _box, {
  10776. "id": "whiteboards_Yu" + cid + stage + task + tool,
  10777. "style": {
  10778. "width": "90%",
  10779. "height": "90%",
  10780. "overflow": 'hidden'
  10781. },
  10782. "onresize": function () { }
  10783. }, {
  10784. closecallback: function () { }
  10785. }, {
  10786. "style": {
  10787. "height": "36px"
  10788. }
  10789. }).form; //创建窗体
  10790. _taskbar = {
  10791. "id": str + _formdiv.id,
  10792. "style": {
  10793. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  10794. },
  10795. "name": "电子白板",
  10796. "forms": _formdiv,
  10797. "click": function () {
  10798. U.MD.D.I.openApplication(str, obj, info);
  10799. }
  10800. }
  10801. break;
  10802. case "mind":
  10803. aTool = 3;
  10804. _iframe = $$("iframe", {
  10805. "frameborder": "no",
  10806. "border": "0",
  10807. "scrolling ": "no",
  10808. "style": {
  10809. "cssText": "border:0;width:100%;height:100%"
  10810. },
  10811. "src": "/kityminder-editor/dist/index.html"
  10812. });
  10813. _box.appendChild(_iframe);
  10814. _box.appendChild(_jie);
  10815. _formdiv = new U.UF.UI.form(
  10816. "思维导图",
  10817. _box, { //"/jsmind/example/demo.html"
  10818. "id": "minds_Yu" + cid + stage + task + tool,
  10819. "style": {
  10820. "width": "90%",
  10821. "height": "90%",
  10822. "overflow": 'hidden'
  10823. },
  10824. "onresize": function () { }
  10825. }, {
  10826. closecallback: function () { }
  10827. }, {
  10828. "style": {
  10829. "height": "36px"
  10830. }
  10831. }).form; //创建窗体
  10832. _taskbar = {
  10833. "id": str + _formdiv.id,
  10834. "style": {
  10835. "backgroundImage": "url(/img/icon/mindMapping.png)"
  10836. },
  10837. "name": "思维导图",
  10838. "forms": _formdiv,
  10839. "click": function () {
  10840. U.MD.D.I.openApplication(str, obj, info);
  10841. }
  10842. }
  10843. break;
  10844. case "doc":
  10845. aTool = 6;
  10846. _iframe = $$("iframe", {
  10847. "frameborder": "no",
  10848. "border": "0",
  10849. "scrolling ": "no",
  10850. "style": {
  10851. "cssText": "border:0;width:100%;height:100%"
  10852. },
  10853. "src": "/Office/Word/WordEditArea.htm"
  10854. })
  10855. _box.appendChild(_iframe);
  10856. _box.appendChild(_jie);
  10857. _formdiv = new U.UF.UI.form(
  10858. "协同文档",
  10859. _box, {
  10860. "id": "docs_Yu" + cid + stage + task + tool,
  10861. "style": {
  10862. "width": "90%",
  10863. "height": "90%",
  10864. "overflow": 'hidden'
  10865. },
  10866. "onresize": function () { }
  10867. }, {
  10868. closecallback: function () { }
  10869. }, {
  10870. "style": {
  10871. "height": "36px"
  10872. }
  10873. }).form; //创建窗体
  10874. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  10875. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10876. })
  10877. _taskbar = {
  10878. "id": str + _formdiv.id,
  10879. "style": {
  10880. "backgroundImage": "url(/img/icon/doc.png)"
  10881. },
  10882. "name": "协同文档",
  10883. "forms": _formdiv,
  10884. "click": function () {
  10885. U.MD.D.I.openApplication(str, obj, info);
  10886. }
  10887. }
  10888. break;
  10889. case "CocoPi":
  10890. aTool = 57;
  10891. _iframe = $$("iframe", {
  10892. "allowpaymentrequest": "allowpaymentrequest",
  10893. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  10894. "webkitallowfullscreen": "",
  10895. "mozallowfullscreen": "",
  10896. "frameborder": "no",
  10897. "border": "0",
  10898. "scrolling ": "no",
  10899. "style": {
  10900. "cssText": "border:0;width:100%;height:100%"
  10901. },
  10902. "src": "https://pi.cocorobo.cn/"
  10903. })
  10904. _box.appendChild(_iframe);
  10905. _box.appendChild(_jie);
  10906. _formdiv = new U.UF.UI.form(
  10907. "CocoPi",
  10908. _box, {
  10909. "id": "CocoPi_Yu" + cid + stage + task + tool,
  10910. "style": {
  10911. "width": "90%",
  10912. "height": "90%",
  10913. "overflow": 'hidden'
  10914. },
  10915. "onresize": function () { }
  10916. }, {
  10917. closecallback: function () { }
  10918. }, {
  10919. "style": {
  10920. "height": "36px"
  10921. }
  10922. }).form; //创建窗体
  10923. _taskbar = {
  10924. "id": str + _formdiv.id,
  10925. "style": {
  10926. "backgroundImage": "url(/img/icon/cocopi.png)"
  10927. },
  10928. "name": "CocoPi",
  10929. "forms": _formdiv,
  10930. "click": function () {
  10931. U.MD.D.I.openApplication(str, obj, info);
  10932. }
  10933. }
  10934. break;
  10935. case "ppt":
  10936. aTool = 73;
  10937. _iframe = $$("iframe", {
  10938. "frameborder": "no",
  10939. "border": "0",
  10940. "scrolling ": "no",
  10941. "style": {
  10942. "cssText": "border:0;width:100%;height:100%"
  10943. },
  10944. "src": "https://ppt.cocorobo.cn/"
  10945. });
  10946. _box.appendChild(_iframe);
  10947. _box.appendChild(_jie);
  10948. _formdiv = new U.UF.UI.form(
  10949. "PPT",
  10950. _box, { //"/jsmind/example/demo.html"
  10951. "id": "ppts_Yu" + cid + stage + task + tool,
  10952. "style": {
  10953. "width": "90%",
  10954. "height": "90%",
  10955. "overflow": 'hidden'
  10956. },
  10957. "onresize": function () { }
  10958. }, {
  10959. closecallback: function () { }
  10960. }, {
  10961. "style": {
  10962. "height": "36px"
  10963. }
  10964. }).form; //创建窗体
  10965. _taskbar = {
  10966. "id": str + _formdiv.id,
  10967. "style": {
  10968. "backgroundImage": "url(/img/icon/ppt.png)"
  10969. },
  10970. "name": "PPT",
  10971. "forms": _formdiv,
  10972. "click": function () {
  10973. U.MD.D.I.openApplication(str, obj, info);
  10974. }
  10975. }
  10976. break;
  10977. }
  10978. if (_iframe) {
  10979. if (str == 'doc') {
  10980. _iframe = _formdiv.querySelector('iframe')
  10981. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10982. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  10983. })
  10984. if (onloadListener) {
  10985. _iframe.contentDocument.location.reload()
  10986. } else {
  10987. _iframe.contentDocument.location.reload()
  10988. }
  10989. } else if (str == 'mind') {
  10990. _iframe = _formdiv.querySelector('iframe')
  10991. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10992. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  10993. })
  10994. if (onloadListener) {
  10995. _iframe.contentDocument.location.reload()
  10996. } else {
  10997. _iframe.contentDocument.location.reload()
  10998. }
  10999. } else if (str == 'whiteboard') {
  11000. _iframe = _formdiv.querySelector('iframe')
  11001. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11002. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  11003. })
  11004. // if (onloadListener) {
  11005. // try {
  11006. // _iframe.src += "?cocorobo="+new Date().getTime()
  11007. // _iframe.contentWindow.document.location.reload()
  11008. // } catch (error) {
  11009. // }
  11010. // } else {
  11011. // _iframe.contentDocument.location.reload()
  11012. // }
  11013. } else if (str == 'CocoPi') {
  11014. _iframe = _formdiv.querySelector('iframe')
  11015. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11016. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  11017. })
  11018. if (onloadListener) {
  11019. _iframe.contentDocument.location.reload()
  11020. } else {
  11021. _iframe.contentDocument.location.reload()
  11022. }
  11023. } else if (str == 'ppt') {
  11024. _iframe = _formdiv.querySelector('iframe')
  11025. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11026. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '5', _iframe)
  11027. })
  11028. if (onloadListener) {
  11029. _iframe.contentDocument.location.reload()
  11030. } else {
  11031. _iframe.contentDocument.location.reload()
  11032. }
  11033. } else {
  11034. _iframe.onload = () => { };
  11035. }
  11036. _jie.onclick = async () => {
  11037. let text = ''
  11038. let files = ''
  11039. let type = '2'
  11040. if (aTool == 1) {
  11041. text = _iframe.contentWindow.h.app.scene.elements
  11042. files = _iframe.contentWindow.h.app.files
  11043. type = '3'
  11044. } else if (aTool == 6) {
  11045. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  11046. type = '1'
  11047. } else if (aTool == 3) {
  11048. text = await U.MD.D.I.getEditorContent(_iframe);
  11049. type = '2'
  11050. } else if (aTool == 57) {
  11051. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  11052. type = '4'
  11053. } else if (aTool == 73) {
  11054. text = encodeURIComponent(JSON.stringify(_iframe.contentWindow.window.exportJSON()))
  11055. type = '5'
  11056. }
  11057. _loading.style.display = 'flex'
  11058. if(aTool == 1){
  11059. U.MD.D.I.downloadFile(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan, files, 1)
  11060. }else {
  11061. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  11062. }
  11063. }
  11064. }
  11065. //U.MD.D.I.openClick(str);
  11066. //如果有任务栏信息
  11067. // if (_taskbar) {
  11068. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  11069. // }
  11070. }
  11071. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  11072. var xmlhttp;
  11073. var Mac, Sn, DeviceId
  11074. if (window.XMLHttpRequest) {
  11075. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11076. xmlhttp = new XMLHttpRequest();
  11077. } else {
  11078. // IE6, IE5 浏览器执行代码
  11079. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11080. }
  11081. xmlhttp.onreadystatechange = function () {
  11082. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11083. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11084. // resolve(res.value[0][0].text);
  11085. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11086. }
  11087. }
  11088. }
  11089. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11090. xmlhttp.send();
  11091. }
  11092. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  11093. var xmlhttp;
  11094. var Mac, Sn, DeviceId
  11095. if (window.XMLHttpRequest) {
  11096. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11097. xmlhttp = new XMLHttpRequest();
  11098. } else {
  11099. // IE6, IE5 浏览器执行代码
  11100. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11101. }
  11102. xmlhttp.onreadystatechange = function () {
  11103. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11104. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  11105. // resolve(res.value[0][0].text);
  11106. if (type == '2') {
  11107. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  11108. } else if (type == '3') {
  11109. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  11110. } else if (type == '4') {
  11111. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  11112. } else if (type == '5') {
  11113. iframe.contentWindow.window.readJSON(decodeURIComponent(JSON.parse(xmlhttp.response)[0][0].text), true)
  11114. }
  11115. } else {
  11116. if (type == '2') {
  11117. iframe.contentWindow.editor.minder.importData('json', '')
  11118. } else if (type == '3') {
  11119. iframe.contentWindow.h.app.updateScene({ elements: [] })
  11120. } else if (type == '4') {
  11121. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11122. }
  11123. }
  11124. }
  11125. }
  11126. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  11127. xmlhttp.send();
  11128. }
  11129. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  11130. var xmlhttp;
  11131. var Mac, Sn, DeviceId
  11132. if (window.XMLHttpRequest) {
  11133. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  11134. xmlhttp = new XMLHttpRequest();
  11135. } else {
  11136. // IE6, IE5 浏览器执行代码
  11137. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  11138. }
  11139. xmlhttp.onreadystatechange = function () {
  11140. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11141. if (xmlhttp.response) {
  11142. // resolve(res.value[0][0].text);
  11143. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  11144. // $(fileInput).val('');
  11145. // });
  11146. span.innerHTML = '上传成功'
  11147. setTimeout(() => {
  11148. loading.style.display = 'none'
  11149. }, 1000);
  11150. }
  11151. }
  11152. }
  11153. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  11154. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  11155. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  11156. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  11157. // 设置请求头,表示请求体的编码格式
  11158. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  11159. // 设置请求体,使用url-encoded格式的数据
  11160. }
  11161. U.MD.D.I.downloadFile = function (cid, s, task, t, uid, type, text, loading, span, files, yuType) {
  11162. // 合并处理并优化,遍历 files 并上传
  11163. let _fileArray = Object.keys(files);
  11164. if (!_fileArray.length){
  11165. let text_str = JSON.stringify({
  11166. element: text,
  11167. files: []
  11168. });
  11169. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span)
  11170. return;
  11171. }
  11172. // 一次性为 S3 配置好凭据和桶
  11173. var credentials = {
  11174. accessKeyId: "AKIATLPEDU37QV5CHLMH",
  11175. secretAccessKey: "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",
  11176. };
  11177. window.AWS.config.update(credentials);
  11178. window.AWS.config.region = "cn-northwest-1";
  11179. var bucket = new window.AWS.S3({
  11180. params: { Bucket: "ccrb" }
  11181. });
  11182. // 用于追踪上传数量,收集所有 url
  11183. let uploadedCount = 0;
  11184. let total = _fileArray.length;
  11185. let uploadedFiles = [];
  11186. _fileArray.forEach(function (key, idx) {
  11187. let fileObj = files[key];
  11188. if (!fileObj || !fileObj.dataURL) {
  11189. uploadedFiles[idx] = null;
  11190. uploadedCount++;
  11191. if (uploadedCount === total) finalizeUpload();
  11192. return;
  11193. }
  11194. // 若 dataURL 是 base64,则转为 File
  11195. if (typeof fileObj.dataURL === "string") {
  11196. let filename = fileObj.name || ('file_' + key);
  11197. fileObj.dataURL = dataURLtoFile_shishi(fileObj.dataURL, filename);
  11198. }
  11199. let file = fileObj.dataURL;
  11200. if (file) {
  11201. let ext = (file.name && file.name.split('.').pop()) || 'png';
  11202. let basename = (file.name && file.name.split('.')[0]) || ('file_' + key);
  11203. var params = {
  11204. Key: basename + '_' + new Date().getTime() + "." + ext,
  11205. ContentType: file.type,
  11206. Body: file,
  11207. "Access-Control-Allow-Credentials": "*",
  11208. ACL: "public-read",
  11209. };
  11210. var options = {
  11211. partSize: 2048 * 1024 * 1024,
  11212. queueSize: 2,
  11213. leavePartsOnError: true,
  11214. };
  11215. bucket.upload(params, options)
  11216. .on("httpUploadProgress", function (evt) {
  11217. // 如有需要可处理进度
  11218. })
  11219. .send(function (err, data) {
  11220. if (data) {
  11221. console.log(data.Location);
  11222. files[key].dataURL = data.Location;
  11223. uploadedFiles[idx] = {
  11224. name: fileObj.name || '',
  11225. url: data.Location
  11226. };
  11227. } else {
  11228. uploadedFiles[idx] = null;
  11229. }
  11230. uploadedCount++;
  11231. if (uploadedCount === total) finalizeUpload();
  11232. });
  11233. } else {
  11234. uploadedFiles[idx] = null;
  11235. uploadedCount++;
  11236. if (uploadedCount === total) finalizeUpload();
  11237. }
  11238. });
  11239. function finalizeUpload() {
  11240. // 过滤掉空的项
  11241. let fileList = uploadedFiles.filter(Boolean);
  11242. let text_str = JSON.stringify({
  11243. element: text,
  11244. files: fileList
  11245. });
  11246. U.MD.D.I.setContents(cid, s, task, t, uid, type, text_str, loading, span);
  11247. }
  11248. }
  11249. function dataURLtoFile_shishi(dataurl, filename) {
  11250. let arr = dataurl.split(","),
  11251. mime = arr[0].match(/:(.*?);/)[1],
  11252. bstr = atob(arr[1]),
  11253. n = bstr.length,
  11254. u8arr = new Uint8Array(n);
  11255. while (n--) {
  11256. u8arr[n] = bstr.charCodeAt(n);
  11257. }
  11258. return new File([u8arr], filename, {
  11259. type: mime
  11260. });
  11261. }
  11262. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  11263. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11264. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11265. _userinfo = US.userInfo, //登录用户信息
  11266. _userid = US.userInfo.userid //登录用户id
  11267. let _iframe;
  11268. let _cid = cid,
  11269. _stage = stage,
  11270. _task = task,
  11271. _tool = tool;
  11272. var _jie = $$("div", {
  11273. "style": {
  11274. "position": "absolute",
  11275. "bottom": "50px",
  11276. "right": "50px",
  11277. "zIndex": "9999",
  11278. "backgroundColor": "#2268bc",
  11279. "color": "#fff",
  11280. "padding": "12px 20px",
  11281. "cursor": "pointer",
  11282. "borderRadius": "4px",
  11283. },
  11284. "innerHTML": "提交作业"
  11285. })
  11286. let aTool = ''
  11287. let _loading = document.createElement('div')
  11288. _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;"
  11289. // _loading.id = "";
  11290. let _lchild = document.createElement('div')
  11291. let _limg = document.createElement('img')
  11292. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11293. _limg.style = "width: 26px;margin-right: 10px;"
  11294. _lchild.appendChild(_limg)
  11295. let _lspan = document.createElement('span')
  11296. _lspan.innerHTML = "上传中..."
  11297. _lchild.appendChild(_lspan)
  11298. _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%);"
  11299. _loading.appendChild(_lchild)
  11300. var _box = $$('div', {
  11301. "style": {
  11302. "position": "relative",
  11303. "width": "100%",
  11304. "height": "100%",
  11305. },
  11306. })
  11307. _box.appendChild(_loading)
  11308. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  11309. switch (str) {
  11310. case "CocoPi":
  11311. aTool = 57;
  11312. _iframe = $$("iframe", {
  11313. "allowpaymentrequest": "allowpaymentrequest",
  11314. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11315. "webkitallowfullscreen": "",
  11316. "mozallowfullscreen": "",
  11317. "frameborder": "no",
  11318. "border": "0",
  11319. "scrolling ": "no",
  11320. "style": {
  11321. "cssText": "border:0;width:100%;height:100%"
  11322. },
  11323. "src": "https://pi.cocorobo.cn/"
  11324. })
  11325. _box.appendChild(_iframe);
  11326. _box.appendChild(_jie);
  11327. _formdiv = new U.UF.UI.form(
  11328. "CocoPi",
  11329. _box, {
  11330. "id": "CocoPi_Upload" + cid + stage + task + tool,
  11331. "style": {
  11332. "width": "90%",
  11333. "height": "90%",
  11334. "overflow": 'hidden'
  11335. },
  11336. "onresize": function () { }
  11337. }, {
  11338. closecallback: function () { }
  11339. }, {
  11340. "style": {
  11341. "height": "36px"
  11342. }
  11343. }).form; //创建窗体
  11344. _taskbar = {
  11345. "id": str + _formdiv.id,
  11346. "style": {
  11347. "backgroundImage": "url(/img/icon/cocopi.png)"
  11348. },
  11349. "name": "CocoPi",
  11350. "forms": _formdiv,
  11351. "click": function () {
  11352. U.MD.D.I.openApplication(str, obj, info);
  11353. }
  11354. }
  11355. break;
  11356. }
  11357. if (_iframe) {
  11358. if (str == 'CocoPi') {
  11359. _iframe = _formdiv.querySelector('iframe')
  11360. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11361. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11362. })
  11363. if (onloadListener) {
  11364. _iframe.contentDocument.location.reload()
  11365. } else {
  11366. _iframe.contentDocument.location.reload()
  11367. }
  11368. }
  11369. _jie.onclick = async () => {
  11370. let text = ''
  11371. if (aTool == 57) {
  11372. text = _iframe.contentWindow.getLoadXmlStr()
  11373. }
  11374. _loading.style.display = 'flex'
  11375. console.log(_loading);
  11376. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11377. _loading.style.display = 'none'
  11378. let _div = document.createElement('div')
  11379. _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;"
  11380. let _inner = document.createElement('div')
  11381. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11382. _inner.innerHTML = "上传成功"
  11383. _div.appendChild(_inner)
  11384. _iframe.contentWindow.window.document.body.appendChild(_div)
  11385. _div.onclick = () => {
  11386. _iframe.contentWindow.window.document.body.removeChild(_div)
  11387. }
  11388. setTimeout(() => {
  11389. _iframe.contentWindow.window.document.body.removeChild(_div)
  11390. }, 1000);
  11391. }, [], { "type": "POST", "withCredentials": true });
  11392. }
  11393. }
  11394. }
  11395. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  11396. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  11397. _formdiv, //创建任务栏时同时弹出的窗体元素。
  11398. _userid = student.userid, //登录用户id
  11399. _username = student.student //用户名字
  11400. let _iframe;
  11401. let _cid = cid,
  11402. _stage = stage,
  11403. _task = task,
  11404. _tool = tool;
  11405. var _jie = $$("div", {
  11406. "style": {
  11407. "position": "absolute",
  11408. "bottom": "50px",
  11409. "right": "50px",
  11410. "zIndex": "9999",
  11411. "backgroundColor": "#2268bc",
  11412. "color": "#fff",
  11413. "padding": "12px 20px",
  11414. "cursor": "pointer",
  11415. "borderRadius": "4px",
  11416. },
  11417. "innerHTML": "提交作业"
  11418. })
  11419. let aTool = ''
  11420. let _loading = document.createElement('div')
  11421. _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;"
  11422. // _loading.id = "";
  11423. let _lchild = document.createElement('div')
  11424. let _limg = document.createElement('img')
  11425. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  11426. _limg.style = "width: 26px;margin-right: 10px;"
  11427. _lchild.appendChild(_limg)
  11428. let _lspan = document.createElement('span')
  11429. _lspan.innerHTML = "上传中..."
  11430. _lchild.appendChild(_lspan)
  11431. _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%);"
  11432. _loading.appendChild(_lchild)
  11433. var _box = $$('div', {
  11434. "style": {
  11435. "position": "relative",
  11436. "width": "100%",
  11437. "height": "100%",
  11438. },
  11439. })
  11440. _box.appendChild(_loading)
  11441. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  11442. switch (str) {
  11443. case "CocoPi":
  11444. aTool = 57;
  11445. _iframe = $$("iframe", {
  11446. "allowpaymentrequest": "allowpaymentrequest",
  11447. "allow": "camera *; microphone *; display-capture; midi; encrypted-media; fullscreen; geolocation; clipboard-read; clipboard-write; accelerometer; autoplay; gyroscope; payment; picture-in-picture; usb; xr-spatial-tracking;usb",
  11448. "webkitallowfullscreen": "",
  11449. "mozallowfullscreen": "",
  11450. "frameborder": "no",
  11451. "border": "0",
  11452. "scrolling ": "no",
  11453. "style": {
  11454. "cssText": "border:0;width:100%;height:100%"
  11455. },
  11456. "src": "https://pi.cocorobo.cn/"
  11457. })
  11458. _box.appendChild(_iframe);
  11459. _box.appendChild(_jie);
  11460. _formdiv = new U.UF.UI.form(
  11461. "CocoPi-" + _username,
  11462. _box, {
  11463. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  11464. "style": {
  11465. "width": "90%",
  11466. "height": "90%",
  11467. "overflow": 'hidden'
  11468. },
  11469. "onresize": function () { }
  11470. }, {
  11471. closecallback: function () { }
  11472. }, {
  11473. "style": {
  11474. "height": "36px"
  11475. }
  11476. }).form; //创建窗体
  11477. _taskbar = {
  11478. "id": str + _formdiv.id,
  11479. "style": {
  11480. "backgroundImage": "url(/img/icon/cocopi.png)"
  11481. },
  11482. "name": "CocoPi",
  11483. "forms": _formdiv,
  11484. "click": function () {
  11485. U.MD.D.I.openApplication(str, obj, info);
  11486. }
  11487. }
  11488. break;
  11489. }
  11490. if (_iframe) {
  11491. if (str == 'CocoPi') {
  11492. _iframe = _formdiv.querySelector('iframe')
  11493. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  11494. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  11495. })
  11496. if (onloadListener) {
  11497. _iframe.contentDocument.location.reload()
  11498. } else {
  11499. _iframe.contentDocument.location.reload()
  11500. }
  11501. }
  11502. _jie.onclick = async () => {
  11503. let text = ''
  11504. if (aTool == 57) {
  11505. text = _iframe.contentWindow.getLoadXmlStr()
  11506. }
  11507. _loading.style.display = 'flex'
  11508. console.log(_loading);
  11509. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  11510. _loading.style.display = 'none'
  11511. let _div = document.createElement('div')
  11512. _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;"
  11513. let _inner = document.createElement('div')
  11514. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  11515. _inner.innerHTML = "上传成功"
  11516. _div.appendChild(_inner)
  11517. _iframe.contentWindow.window.document.body.appendChild(_div)
  11518. _div.onclick = () => {
  11519. _iframe.contentWindow.window.document.body.removeChild(_div)
  11520. }
  11521. setTimeout(() => {
  11522. _iframe.contentWindow.window.document.body.removeChild(_div)
  11523. }, 1000);
  11524. }, [], { "type": "POST", "withCredentials": true });
  11525. }
  11526. }
  11527. }
  11528. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  11529. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  11530. if (res.value[0].length > 0) {
  11531. if (atool == 57) {
  11532. iframe.contentWindow.loadingXml(res.value[0][0].content)
  11533. }
  11534. } else {
  11535. if (atool == 57) {
  11536. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  11537. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  11538. }
  11539. }
  11540. }, [], { "type": "POST", "withCredentials": true });
  11541. }
  11542. U.MD.D.addOp = function (text, type, time) {
  11543. var userInfo = US.userInfo;
  11544. if (Object.keys(userInfo).length !== 0) {
  11545. U.A.Request(US.Config.pbl + "addOperationTimeT", [userInfo.userid, text, type, time], function (res) {
  11546. }, [], { "type": "POST", "withCredentials": true });
  11547. }
  11548. }