DeskTop.js 614 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966
  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. ];
  106. U.MD.D.I.studentDeskIcon = [
  107. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  108. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  109. // { "Name": "我的项目", "Url": "studnetProject", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  110. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  111. // { "Name": "我的评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  112. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  113. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  114. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  115. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  116. // { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  117. // { "Name": "量规评分", "Url": "score", "style": { "cssText": "background-image:url(/img/icon/score.png)" } },
  118. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  119. // { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  120. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  121. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  122. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  123. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  124. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  125. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  126. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  127. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  128. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  129. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  130. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  131. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  132. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  133. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  134. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  135. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  136. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  137. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  138. ];
  139. U.MD.D.I.studentDeskIcon2 = [
  140. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  141. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  142. // { "Name": "实时课堂", "Url": "studentClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  143. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  144. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  145. ]
  146. U.MD.D.I.studentDeskIcon3 = [
  147. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  148. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  149. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  150. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  151. ]
  152. U.MD.D.I.schoolDeskIcon = [
  153. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  154. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  155. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  156. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  157. { "Name": "学习资料", "Url": "stuLibrary", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  158. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  159. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  160. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  161. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  162. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  163. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  164. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  165. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  166. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  167. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  168. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  169. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  170. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  171. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  172. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  173. // { "Name": "国家教育", "Url": "resources", "style": { "cssText": "background-image:url(/img/icon/resources.png)" } },
  174. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  175. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  176. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  177. ];
  178. U.MD.D.I.orgDeskIcon = [
  179. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  180. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  181. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  182. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgCase.png)" } },
  183. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  184. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  185. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  186. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  187. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  188. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  189. { "Name": "案例征集", "Url": "ytpbl", "style": { "cssText": "background-image:url(/img/icon/gpbl2.png)" } },
  190. ];
  191. U.MD.D.I.orgStemDeskIcon = [
  192. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  193. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  194. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  195. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  196. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  197. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  198. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  199. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  200. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  201. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  202. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  203. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  204. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  205. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  206. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  207. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  208. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  209. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  210. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  211. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  212. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  213. ];
  214. U.MD.D.I.szulsDeskIcon = [
  215. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  216. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  217. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  218. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  219. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  220. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  221. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  222. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  223. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  224. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  225. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  226. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  227. ];
  228. U.MD.D.I.hanDeskIcon = [
  229. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgProject.png)" } },
  230. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgStudy.png)" } },
  231. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/orgIcon/orgEva.png)" } },
  232. { "Name": "汉字家族", "Url": "hanFamily", "style": { "cssText": "background-image:url(/img/icon/hanFamily.png)" } },
  233. { "Name": "国学经典", "Url": "hanClassics", "style": { "cssText": "background-image:url(/img/icon/hanClassics.png)" } },
  234. { "Name": "笔画训练", "Url": "hanTraining", "style": { "cssText": "background-image:url(/img/icon/hanTraining.png)" } },
  235. { "Name": "书法课堂", "Url": "hanClass", "style": { "cssText": "background-image:url(/img/icon/hanClass.png)" } },
  236. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  237. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  238. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  239. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  240. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  242. ];
  243. U.MD.D.I.GMteacherDeskIcon = [
  244. { "Name": "课程管理", "Url": "projectGM", "style": { "cssText": "background-image:url(/img/icon/gm/courseMange.png)" } },
  245. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  246. { "Name": "学生管理", "Url": "studentGM", "style": { "cssText": "background-image:url(/img/icon/gm/student.png)" } },
  247. { "Name": "学生评价", "Url": "evaluateGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  248. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  249. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  250. { "Name": "班级管理", "Url": "classGM", "style": { "cssText": "background-image:url(/img/icon/gm/class.png)" } },
  251. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  252. { "Name": "课程进展", "Url": "caseGM", "style": { "cssText": "background-image:url(/img/icon/gm/case.png)" } },
  253. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  254. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  255. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  256. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  257. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  258. ];
  259. U.MD.D.I.GMstudentDeskIcon = [
  260. { "Name": "课程中心", "Url": "studyGM", "style": { "cssText": "background-image:url(/img/icon/gm/learning.png)" } },
  261. { "Name": "我的评价", "Url": "evaluateSGM", "style": { "cssText": "background-image:url(/img/icon/gm/evaluate.png)" } },
  262. { "Name": "我的资料", "Url": "dataGM", "style": { "cssText": "background-image:url(/img/icon/gm/data.png)" } },
  263. { "Name": "素材库", "Url": "meterialGM", "style": { "cssText": "background-image:url(/img/icon/gm/material.png)" } },
  264. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  266. ];
  267. //松山湖
  268. U.MD.D.I.SONGteacherDeskIcon = [
  269. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  270. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  271. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  272. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  273. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  274. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  275. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  276. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  277. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  278. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  279. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  280. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  281. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  282. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  283. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  284. // { "Name": "实时课堂", "Url": "teacherClassRoom", "style": { "cssText": "background-image:url(/img/icon/classRoom.png)" } },
  285. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  286. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  287. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  288. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  289. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  290. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  291. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  292. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  293. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  294. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  295. // { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  296. // { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  297. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  298. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  299. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  300. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  301. // { "Name": "赛诺梵", "Url": "snf", "style": { "cssText": "background-image:url(/img/icon/snf.png)" } },
  302. // { "Name": "汉字宫", "Url": "han", "style": { "cssText": "background-image:url(/img/icon/han.png)" } },
  303. // { "Name": "jupyter", "Url": "jupyter", "style": { "cssText": "background-image:url(/img/icon/jupyter.png)" } },
  304. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  305. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  306. ];
  307. U.MD.D.I.tcStudentDeskIcon = [
  308. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  309. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  310. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  311. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  312. ];
  313. U.MD.D.I.tcTeacherDeskIcon = [
  314. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  315. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  316. { "Name": "师生项目", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  317. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  318. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  319. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  320. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  321. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  322. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  323. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  324. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  325. ];
  326. U.MD.D.I.tcOrganizerDeskIcon = [
  327. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  328. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  329. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  330. { "Name": "师生项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  331. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  332. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  333. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  334. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  335. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  336. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  337. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  338. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  339. ];
  340. U.MD.D.I.szscStudentDeskIcon = [
  341. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  342. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  343. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  344. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  345. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  346. ];
  347. U.MD.D.I.szscTeacherDeskIcon = [
  348. // { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  349. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  350. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  351. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  352. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  353. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  354. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  355. { "Name": "学生管理", "Url": "tcStudent", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  356. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  357. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  358. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  359. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  360. ];
  361. U.MD.D.I.szscOrganizerDeskIcon = [
  362. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  363. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  364. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  365. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  366. // { "Name": "学校管理", "Url": "tcSchool", "style": { "cssText": "background-image:url(/img/icon/school.png)" } },
  367. { "Name": "教师管理", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  368. { "Name": "我的资料", "Url": "tcData", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  369. { "Name": "消息通知", "Url": "tcNotice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  370. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  371. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  372. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  373. ];
  374. U.MD.D.I.wankeTeacherDeskIcon = [ //1c3b9def-8fbe-11ed-b13d-005056b86db5
  375. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  376. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  377. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  378. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  379. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  380. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  381. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  382. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  383. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  384. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  385. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  386. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  387. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  388. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  389. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  390. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  391. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  392. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  393. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  394. ];
  395. U.MD.D.I.wankeAdminDeskIcon = [
  396. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  397. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  398. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  399. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  400. { "Name": "PBL项目", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  401. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  402. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  403. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  404. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  405. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  406. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  407. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  408. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  409. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  410. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  411. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  412. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  413. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  414. ];
  415. U.MD.D.I.lhsTeacherDeskIcon = [ //未来小学
  416. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  417. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  418. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  419. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  420. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  421. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  422. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  423. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  424. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  426. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  427. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  428. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  429. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  430. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  431. ];
  432. U.MD.D.I.lhsAdminDeskIcon = [ //未来小学admin
  433. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  434. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  435. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  436. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  437. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  438. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  439. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  440. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  441. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  442. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  443. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  445. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  446. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  447. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  448. ];
  449. //明德教师桌面图标的全局变量
  450. U.MD.D.I.MingdeTeacherDeskIcon = [
  451. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  452. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  453. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  454. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  455. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  456. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  457. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  458. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  459. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  460. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  461. // { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  462. // { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  463. // { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  464. // { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  465. // { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  466. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  467. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  468. // { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  469. // { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  470. // { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  471. // { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  472. // { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  473. // { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  474. // { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  475. // { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  476. // { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  477. // { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  478. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  479. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  480. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  481. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  482. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  483. ];
  484. //97c4ee8b-d010-4042-986d-e9d3c217264f
  485. //教师桌面图标的全局变量
  486. U.MD.D.I.zhoujiaTeacherDeskIcon = [
  487. { "Name": "工作项目", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  488. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  489. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  490. // { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  491. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  492. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  493. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  494. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  495. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  496. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  497. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  498. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  499. ];
  500. //福田
  501. U.MD.D.I.futianTeacherDeskIcon = [
  502. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  503. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  504. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  505. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  506. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  507. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  508. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  509. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  510. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  511. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  512. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  513. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  514. ];
  515. //福田
  516. U.MD.D.I.futianAdminDeskIcon = [
  517. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  518. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  519. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  520. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  521. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  522. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  523. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  524. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  525. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  526. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  527. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  528. ];
  529. //lotech
  530. U.MD.D.I.lotechTeacherDeskIcon = [
  531. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  532. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  533. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  534. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  535. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  536. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  537. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  538. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  539. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  540. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  541. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  542. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  543. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  544. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  545. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  546. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  547. ];
  548. //龙华中心小学教师桌面图标的全局变量
  549. U.MD.D.I.longhuateacherDeskIcon = [
  550. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  551. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  552. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  553. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  554. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  555. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  556. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  557. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  558. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  559. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  560. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  561. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  562. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  563. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  564. ];
  565. //教科院实小教师桌面图标的全局变量
  566. U.MD.D.I.siesteacherDeskIcon = [
  567. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  568. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  569. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  570. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  571. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  572. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  573. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  574. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  575. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  576. // { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  577. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  578. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  579. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  580. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  581. { "Name": "项目进展", "Url": "CaseDesignS", "style": { "cssText": "background-image:url(/img/icon/CaseDesignS.png)" } },
  582. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  583. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  584. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  585. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  586. { "Name": "数据融合", "Url": "dataBoardSies", "style": { "cssText": "background-image:url(/img/icon/dataBoardSies.png)" } },
  587. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  588. { "Name": "评测看板", "Url": "dataBoardTest", "style": { "cssText": "background-image:url(/img/icon/databoardTest.png)" } },
  589. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  590. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  591. { "Name": "教师管理", "Url": "testTeacherSies", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  592. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  593. ];
  594. //教科院实小教师桌面图标的全局变量
  595. U.MD.D.I.siesStudentDeskIcon = [
  596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  597. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  598. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  599. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  600. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  601. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  602. ];
  603. //中山小学教师桌面图标的全局变量
  604. U.MD.D.I.guzmsteacherDeskIcon = [
  605. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  606. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  607. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  608. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  610. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  611. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  612. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  613. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  614. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  615. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  616. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  617. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  618. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  619. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  620. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  621. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  622. ];
  623. //中山小学学生桌面图标的全局变量
  624. U.MD.D.I.guzmsStudentDeskIcon = [
  625. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  626. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  627. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  628. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  629. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  630. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  631. ];
  632. //福田
  633. U.MD.D.I.gdjgTeacherDeskIcon = [
  634. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  635. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  636. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  637. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  638. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  639. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  641. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  642. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  643. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  644. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  645. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  646. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  647. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  648. ];
  649. //gdjg
  650. U.MD.D.I.gdjgAdminDeskIcon = [
  651. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  652. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  653. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  654. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  655. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  656. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  657. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  658. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  659. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  660. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  661. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  662. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  663. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  664. ];
  665. //hk
  666. U.MD.D.I.hkteacherDeskIcon = [
  667. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  668. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  671. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  672. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  673. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  674. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  675. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  676. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  677. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  678. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  679. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  680. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  681. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  682. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  683. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  684. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  685. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  686. ];
  687. //hk
  688. U.MD.D.I.hkStudentDeskIcon = [
  689. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  690. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  691. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  692. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  693. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  695. ];
  696. //hk
  697. U.MD.D.I.hkaceteacherDeskIcon = [
  698. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  699. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  700. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  701. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  702. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  704. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  705. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  706. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  707. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  708. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  709. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  710. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  711. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  712. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  714. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  717. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  718. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  719. ];
  720. //hk
  721. U.MD.D.I.hkaceStudentDeskIcon = [
  722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  723. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  724. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  725. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  726. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  728. ];
  729. //香海正覺蓮社佛教正覺中學
  730. U.MD.D.I.hkZJLSteacherDeskIcon = [
  731. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  732. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  733. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  734. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  735. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  736. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  737. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  738. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  739. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  740. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  741. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  742. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  743. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  744. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  745. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  746. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  747. ];
  748. //香海正覺蓮社佛教正覺中學
  749. U.MD.D.I.hkZJLSStudentDeskIcon = [
  750. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  751. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  752. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  753. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  754. ];
  755. //云海
  756. U.MD.D.I.yunhaiTeacherDeskIcon = [
  757. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  758. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  759. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  760. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  761. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  762. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  763. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  764. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  765. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  766. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  767. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  768. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  769. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  770. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  771. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  772. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  773. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  774. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  775. ];
  776. //福田
  777. U.MD.D.I.heyuanTeacherDeskIcon = [
  778. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  779. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  780. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  781. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  782. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  783. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  784. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  785. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  786. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  787. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  788. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  789. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  790. ];
  791. //福田
  792. U.MD.D.I.heyuanAdminDeskIcon = [
  793. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  794. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  795. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  796. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  797. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  798. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  799. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  800. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  801. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  802. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  803. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  804. ];
  805. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  806. U.MD.D.I.szherTeacherDeskIcon = [
  807. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  808. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  809. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  810. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  811. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  812. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  813. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  814. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  815. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  817. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  818. ];
  819. //dsei
  820. U.MD.D.I.dseiTeacherDeskIcon = [
  821. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  822. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  823. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  824. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  825. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  826. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  827. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  828. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  829. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  830. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  831. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  832. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  833. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  834. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  835. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  836. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  837. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  838. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  839. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  840. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.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": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  844. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  845. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  846. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  847. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  848. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  849. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  850. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  851. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  852. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  853. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  854. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  855. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  856. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  857. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  858. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  859. { "Name": "AI协同", "Url": "ainew", "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": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  862. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  863. ];
  864. //dsei
  865. U.MD.D.I.dseiAdminDeskIcon = [
  866. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  867. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  868. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  869. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  870. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  871. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  872. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  873. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  874. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  875. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  876. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  877. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  878. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  879. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  880. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  881. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  882. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  883. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  884. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  885. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  886. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  887. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  888. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  889. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  890. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  891. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  892. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  893. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  894. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  895. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  896. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  897. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  898. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  899. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  900. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  901. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  902. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  903. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  904. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  905. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  906. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  907. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  908. ];
  909. //dsei
  910. U.MD.D.I.dseiStudentDeskIcon = [
  911. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  912. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  913. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  914. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  915. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  916. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  917. ];
  918. //未来教育基地
  919. U.MD.D.I.szjkyTeacherDeskIcon = [
  920. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  921. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  922. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  923. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  924. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  925. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  926. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  927. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  928. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  929. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  930. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  931. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  932. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  933. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  934. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  935. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  936. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  937. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  938. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  939. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  940. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  941. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  942. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  943. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  944. ];
  945. //未来教育基地
  946. U.MD.D.I.szjkyAdminDeskIcon = [
  947. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  948. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  949. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  950. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  951. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  952. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  953. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  954. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  955. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  956. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  957. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  958. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  959. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  960. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  961. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  962. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  963. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  964. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  965. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  966. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  967. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  968. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  969. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  970. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  971. ];
  972. //未来教育基地
  973. U.MD.D.I.szjkyStudentDeskIcon = [
  974. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  975. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  976. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  977. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  978. ];
  979. //成华教育局
  980. U.MD.D.I.chjyjTeacherDeskIcon = [
  981. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  982. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  983. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  984. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  985. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  986. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  987. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  988. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  989. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  990. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  991. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  992. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  993. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  994. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  995. ];
  996. //成华教育局chjyj
  997. U.MD.D.I.chjyjAdminDeskIcon = [
  998. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  999. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1000. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1001. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1002. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1003. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1004. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1005. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1006. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1007. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1008. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1009. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1010. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1011. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1012. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1013. ];
  1014. //成华教育局chjyj
  1015. U.MD.D.I.chjyjStudentDeskIcon = [
  1016. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1017. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1018. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1019. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1020. ];
  1021. //tpc
  1022. U.MD.D.I.tpcStudentDeskIcon = [
  1023. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1024. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1025. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1026. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1027. ];
  1028. //tpc
  1029. U.MD.D.I.tpcTeacherDeskIcon = [
  1030. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1031. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1032. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1033. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1034. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1035. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1036. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1037. ];
  1038. //tpc
  1039. U.MD.D.I.tpcAdminDeskIcon = [
  1040. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1041. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1042. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1043. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1044. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1045. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1046. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1047. ];
  1048. //THU-IOE
  1049. U.MD.D.I.thuioeTeacherDeskIcon = [
  1050. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1051. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1052. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1053. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1054. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1055. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1056. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1057. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1058. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1059. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1060. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1061. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1062. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1063. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1064. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1065. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1066. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1067. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1068. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1069. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1070. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1071. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1072. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1073. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1074. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1075. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1076. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1077. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1078. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1079. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1080. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1081. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1082. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1083. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1084. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1085. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1086. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1087. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1088. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1089. ];
  1090. //THU-IOE
  1091. U.MD.D.I.thuioeStudentDeskIcon = [
  1092. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1093. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1094. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1095. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1096. ];
  1097. //jccssyl
  1098. U.MD.D.I.jccssylTeacherDeskIcon = [
  1099. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1100. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1101. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1102. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1103. { "Name": "项目管理", "Url": "studentCourseS", "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": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1106. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1107. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1108. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1109. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1110. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1111. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1112. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1113. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1114. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1115. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1116. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1117. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1118. ];
  1119. //jccssyl
  1120. U.MD.D.I.jccssylStudentDeskIcon = [
  1121. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1122. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1123. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1124. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1125. ];
  1126. //cale
  1127. U.MD.D.I.caleTeacherDeskIcon = [
  1128. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1129. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1130. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1131. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1132. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1133. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1134. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1135. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1136. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1137. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1138. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1139. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1140. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1141. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1142. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1143. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1144. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1145. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1146. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1147. ];
  1148. //cale
  1149. U.MD.D.I.caleStudentDeskIcon = [
  1150. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1151. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1152. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1153. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1154. ];
  1155. //lqwmsgzs
  1156. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1157. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1158. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1159. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1160. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1161. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1162. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1163. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1164. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1165. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1166. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1167. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1168. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1169. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1170. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1171. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1172. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1173. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1174. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1175. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1176. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1177. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1178. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1179. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1180. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1181. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1182. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1183. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1184. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1185. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1186. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1187. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1188. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1189. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1190. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1191. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1192. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1193. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1194. ];
  1195. //lqwmsgzs
  1196. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1197. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1198. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1199. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1200. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1201. ];
  1202. //盐田区幼儿园
  1203. U.MD.D.I.ytyTeacherDeskIcon = [
  1204. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1205. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1206. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1207. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1208. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1209. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1210. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1211. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1212. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1213. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1214. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1215. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1216. ];
  1217. //盐田区幼儿园
  1218. U.MD.D.I.ytyStudentDeskIcon = [
  1219. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1220. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1221. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1222. ];
  1223. //scnuai
  1224. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1225. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1226. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1227. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1228. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1229. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1230. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1231. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1232. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1233. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1234. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1235. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1236. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1237. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1238. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1239. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1240. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1241. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1242. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1243. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1244. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1245. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1246. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1247. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1248. ];
  1249. //scnuai
  1250. U.MD.D.I.scnuaiAdminDeskIcon = [
  1251. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1252. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1253. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1254. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1255. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1256. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1257. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1258. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1259. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1260. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1261. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1262. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1263. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1264. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1265. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1266. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1267. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1268. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1269. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1270. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1271. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1272. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1273. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1274. ];
  1275. //scnuai
  1276. U.MD.D.I.scnuaiStudentDeskIcon = [
  1277. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1278. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1279. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1280. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1281. ];
  1282. //cocobiz
  1283. U.MD.D.I.cocobizteacherDeskIcon = [
  1284. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1285. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1286. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1287. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1288. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1289. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1290. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1291. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1292. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1293. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1294. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1295. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1296. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1297. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1298. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1299. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1300. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1301. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1302. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1303. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1304. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1305. ];
  1306. //cocobiz
  1307. U.MD.D.I.cocobizStudentDeskIcon = [
  1308. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1309. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1310. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1311. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1312. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1313. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1314. ];
  1315. //xxzjky
  1316. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1317. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1318. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1319. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1320. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1321. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1322. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1323. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1324. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1325. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1326. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1327. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1328. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1329. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1330. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1331. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1332. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1333. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1334. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1335. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1336. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1337. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1338. ];
  1339. //xxzjky
  1340. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1341. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1342. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1343. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1344. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1345. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1346. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1347. ];
  1348. //nsfx
  1349. U.MD.D.I.nsfxTeacherDeskIcon = [
  1350. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1351. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1352. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1353. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1354. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1355. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1356. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1357. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1358. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1359. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1360. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1361. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1362. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1363. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1364. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1365. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1366. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1367. ];
  1368. //nsfx
  1369. U.MD.D.I.nsfxStudentDeskIcon = [
  1370. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1371. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1372. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1373. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1374. ];
  1375. //stia
  1376. U.MD.D.I.stiaTeacherDeskIcon = [
  1377. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1378. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1380. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1381. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1382. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1383. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1384. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1385. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1386. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1387. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1388. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1389. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1390. ];
  1391. //stia
  1392. U.MD.D.I.stiaStudentDeskIcon = [
  1393. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1394. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1395. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1396. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1397. ];
  1398. //szdjg
  1399. U.MD.D.I.szdjgTeacherDeskIcon = [
  1400. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1401. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. ];
  1403. //szdjg
  1404. U.MD.D.I.szdjgStudentDeskIcon = [
  1405. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1406. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1407. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1409. ];
  1410. //010607
  1411. U.MD.D.I.x010607TeacherDeskIcon = [
  1412. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1413. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1415. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1416. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1417. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1418. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1419. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1420. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1421. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1422. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1423. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1424. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1425. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1426. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1427. ];
  1428. //010607
  1429. U.MD.D.I.x010607StudentDeskIcon = [
  1430. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1431. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1432. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1433. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1434. ];
  1435. //010608
  1436. U.MD.D.I.x010608TeacherDeskIcon = [
  1437. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1438. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1440. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1441. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1442. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1443. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1444. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1445. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1446. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1447. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1448. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1449. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1450. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1451. ];
  1452. //010608
  1453. U.MD.D.I.x010608StudentDeskIcon = [
  1454. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1455. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1456. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1457. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1458. ];
  1459. //xhly
  1460. U.MD.D.I.xhlyTeacherDeskIcon = [
  1461. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1462. ];
  1463. //010608
  1464. U.MD.D.I.xhlyStudentDeskIcon = [
  1465. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1466. ];
  1467. //北师大
  1468. U.MD.D.I.BSDNSteacherDeskIcon = [
  1469. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1470. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1471. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1472. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1473. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1474. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1475. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1476. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1477. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1478. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1479. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1480. ];
  1481. //北师大
  1482. U.MD.D.I.BSDNSstudentDeskIcon = [
  1483. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1484. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1485. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1486. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1487. ];
  1488. //CUHK_EDU
  1489. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1490. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1491. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1493. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1494. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1495. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1496. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1497. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1498. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1499. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1500. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1501. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1502. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1503. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1504. ];
  1505. //CUHK_EDU
  1506. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1507. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1508. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1509. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1510. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1511. ];
  1512. //010503
  1513. U.MD.D.I.x010503TeacherDeskIcon = [
  1514. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1515. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. ];
  1517. //010503
  1518. U.MD.D.I.x010503StudentDeskIcon = [
  1519. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1520. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1521. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1523. ];
  1524. //SPROUT Lab
  1525. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1526. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1527. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1528. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1529. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1530. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1531. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1532. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1533. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1534. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1535. ];
  1536. //SPROUT Lab
  1537. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1538. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1539. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1540. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1541. ];
  1542. //#region 桌面初始化a
  1543. /**
  1544. * 初始化桌面的起始函数
  1545. *
  1546. */
  1547. U.MD.D.I.init = function () {
  1548. if ($("#U_MD_D_K")[0]) {
  1549. //初始化桌面图标
  1550. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1551. // var clickUrl = ':12588/requestIp.php';
  1552. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1553. // U.MD.D.I.Ip = data;
  1554. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1555. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1556. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1557. // })
  1558. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1559. // })
  1560. }
  1561. }
  1562. /**
  1563. * 模式切换
  1564. *
  1565. */
  1566. U.MD.D.I.ModeCheck = function (type) {
  1567. if (US.Config.type == type) {
  1568. return
  1569. }
  1570. US.Config.type = type
  1571. $('.U_PBL_Check .active')[0].className = ''
  1572. if (type == 1) {
  1573. $('.U_PBL_Check div')[0].className = 'active'
  1574. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1575. } else {
  1576. $('.U_PBL_Check div')[1].className = 'active'
  1577. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1578. }
  1579. //初始化桌面图标
  1580. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1581. if (type == 2) {
  1582. U.MD.D.I.openApplication("project")
  1583. }
  1584. }
  1585. /**
  1586. * 隐藏任务栏
  1587. *
  1588. * @param {element} 桌面元素
  1589. */
  1590. U.MD.D.I.hiddenTaskbar = function (el) {
  1591. //任务栏位置变小
  1592. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1593. //桌面的位置变大
  1594. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1595. }
  1596. /**
  1597. * 隐藏任务栏
  1598. *
  1599. * @param {element} 桌面元素
  1600. */
  1601. U.MD.D.I.hiddenTaskbarout = function (el) {
  1602. //任务栏位置变小
  1603. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1604. //任务栏位置变化
  1605. U.selectEl(el).css({ "bottom": "-60px" });
  1606. //桌面的位置变大
  1607. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1608. }
  1609. }
  1610. /**
  1611. * 初始化打印桌面图标
  1612. *
  1613. * @param {element} 桌面元素
  1614. */
  1615. U.MD.D.I.initDesktopIcons = function (el, type) {
  1616. var i, //用于循环
  1617. _content, //桌面图标元素
  1618. _iconcontent, //桌面图标元素
  1619. _frag = $$("frag"), //定义一个碎片元素
  1620. _type = US.userInfo.type,
  1621. _org = US.userInfo.org,
  1622. _oid = US.userInfo.organizeid,
  1623. _role = US.userInfo.role,
  1624. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1625. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1626. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1627. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1628. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1629. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1630. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1631. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1632. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1633. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1634. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1635. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1636. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1637. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1638. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1639. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1640. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1641. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1642. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1643. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1644. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1645. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1646. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1647. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1648. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1649. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1650. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1651. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1652. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1653. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1654. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1655. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1656. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1657. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1658. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1659. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1660. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1661. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1662. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1663. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1664. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1665. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1666. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1667. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1668. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1669. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1670. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1671. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1672. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1673. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1674. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1675. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1676. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1677. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1678. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1679. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1680. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1681. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1682. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1683. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1684. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1685. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1686. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1687. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1688. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1689. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1690. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1691. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1692. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1693. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1694. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1695. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1696. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1697. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1698. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1699. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1700. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1701. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1702. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1703. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1704. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1705. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1706. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1707. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1708. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1709. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1710. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1711. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1712. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1713. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1714. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1715. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //未来教育基地
  1716. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1717. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1718. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //scnuai
  1719. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5'];
  1720. 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'];
  1721. //清楚桌面图标
  1722. el.innerHTML = "";
  1723. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1724. _teacherDesktopIconInfo.push(
  1725. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1726. { "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)" } },
  1727. )
  1728. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1729. }
  1730. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1731. _teacherDesktopIconInfo.push(
  1732. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1733. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1734. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1735. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1736. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1737. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1738. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1739. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1740. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1741. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1742. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1743. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1744. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1745. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1746. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1747. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1748. )
  1749. }
  1750. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1751. _teacherDesktopIconInfo.push(
  1752. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1753. )
  1754. }
  1755. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1756. // _teacherDesktopIconInfo.push(
  1757. // )
  1758. // }
  1759. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1760. _teacherDesktopIconInfo.push(
  1761. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1762. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1763. )
  1764. }
  1765. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1766. _teacherDesktopIconInfo.push(
  1767. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1768. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1769. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1770. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1771. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1772. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1773. )
  1774. _studentDesktopIconInfo.push(
  1775. )
  1776. }
  1777. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1778. _teacherDesktopIconInfo.push(
  1779. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1780. )
  1781. _studentDesktopIconInfo.push(
  1782. )
  1783. }
  1784. //010606 组织
  1785. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5') {
  1786. _teacherDesktopIconInfo.push(
  1787. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1788. )
  1789. _studentDesktopIconInfo.push(
  1790. )
  1791. }
  1792. //麒麟二中 和 民新小学
  1793. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1794. _teacherDesktopIconInfo.push(
  1795. )
  1796. }
  1797. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  1798. _teacherDesktopIconInfo.push(
  1799. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1800. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1801. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1802. )
  1803. }
  1804. //北师大附中(010601)
  1805. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  1806. // _teacherDesktopIconInfo.push(
  1807. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1808. // )
  1809. // _studentDesktopIconInfo.push(
  1810. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1811. // )
  1812. // }
  1813. //樂善堂余近卿中學
  1814. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  1815. _teacherDesktopIconInfo.push(
  1816. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1817. )
  1818. }
  1819. // Education Artificial Intelligence
  1820. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  1821. _teacherDesktopIconInfo.push(
  1822. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1823. )
  1824. }
  1825. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  1826. _teacherDesktopIconInfo.push(
  1827. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1828. )
  1829. }
  1830. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  1831. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  1832. _teacherDesktopIconInfo.push(
  1833. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1834. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1835. )
  1836. }
  1837. //麒麟二中
  1838. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  1839. _studentDesktopIconInfo.push(
  1840. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1841. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1842. )
  1843. }
  1844. //万科双语
  1845. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  1846. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  1847. if (el.Name == '项目管理') {
  1848. el.Name = 'PBL项目'
  1849. }
  1850. return el
  1851. })
  1852. _studentDesktopIconInfo3.push(
  1853. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1854. )
  1855. }
  1856. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  1857. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  1858. return el.Name != '魔盒识字' && el.Name != '24点'
  1859. })
  1860. }
  1861. 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) {
  1862. _studentDesktopIconInfo.push(
  1863. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1864. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1865. )
  1866. }
  1867. //循环创建桌面图标
  1868. if (type == 1) {
  1869. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  1870. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  1871. _content = $$("div", {
  1872. className: "U_MD_D_KO",
  1873. "onmousedown": U.UF.C.closure(function (obj) {
  1874. //防止拖动图标即打开了桌面应用
  1875. U.MD.D.click(this, obj);
  1876. }, [_studentDesktopIconInfo[i]]),
  1877. "onclick": U.UF.C.closure(function (obj) {
  1878. //防止拖动图标即打开了桌面应用
  1879. U.MD.D.click(this, obj);
  1880. }, [_studentDesktopIconInfo[i]])
  1881. }, _frag); //
  1882. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1883. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  1884. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  1885. }
  1886. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  1887. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  1888. _content = $$("div", {
  1889. className: "U_MD_D_KO",
  1890. "onmousedown": U.UF.C.closure(function (obj) {
  1891. //防止拖动图标即打开了桌面应用
  1892. U.MD.D.click(this, obj);
  1893. }, [_hkZJLSStudentDeskIconInfo[i]]),
  1894. "onclick": U.UF.C.closure(function (obj) {
  1895. //防止拖动图标即打开了桌面应用
  1896. U.MD.D.click(this, obj);
  1897. }, [_hkZJLSStudentDeskIconInfo[i]])
  1898. }, _frag); //
  1899. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1900. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  1901. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  1902. } //
  1903. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  1904. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  1905. _content = $$("div", {
  1906. className: "U_MD_D_KO",
  1907. "onmousedown": U.UF.C.closure(function (obj) {
  1908. //防止拖动图标即打开了桌面应用
  1909. U.MD.D.click(this, obj);
  1910. }, [_ytyStudentDeskIconInfo[i]]),
  1911. "onclick": U.UF.C.closure(function (obj) {
  1912. //防止拖动图标即打开了桌面应用
  1913. U.MD.D.click(this, obj);
  1914. }, [_ytyStudentDeskIconInfo[i]])
  1915. }, _frag); //
  1916. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1917. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  1918. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  1919. } //
  1920. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  1921. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  1922. _content = $$("div", {
  1923. className: "U_MD_D_KO",
  1924. "onmousedown": U.UF.C.closure(function (obj) {
  1925. //防止拖动图标即打开了桌面应用
  1926. U.MD.D.click(this, obj);
  1927. }, [_jccssylStudentDeskIconInfo[i]]),
  1928. "onclick": U.UF.C.closure(function (obj) {
  1929. //防止拖动图标即打开了桌面应用
  1930. U.MD.D.click(this, obj);
  1931. }, [_jccssylStudentDeskIconInfo[i]])
  1932. }, _frag); //
  1933. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1934. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  1935. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  1936. }
  1937. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  1938. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  1939. _content = $$("div", {
  1940. className: "U_MD_D_KO",
  1941. "onmousedown": U.UF.C.closure(function (obj) {
  1942. //防止拖动图标即打开了桌面应用
  1943. U.MD.D.click(this, obj);
  1944. }, [_scnuaiStudentDeskIconInfo[i]]),
  1945. "onclick": U.UF.C.closure(function (obj) {
  1946. //防止拖动图标即打开了桌面应用
  1947. U.MD.D.click(this, obj);
  1948. }, [_scnuaiStudentDeskIconInfo[i]])
  1949. }, _frag); //
  1950. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1951. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  1952. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  1953. }
  1954. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  1955. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  1956. _content = $$("div", {
  1957. className: "U_MD_D_KO",
  1958. "onmousedown": U.UF.C.closure(function (obj) {
  1959. //防止拖动图标即打开了桌面应用
  1960. U.MD.D.click(this, obj);
  1961. }, [_caleStudentDeskIconInfo[i]]),
  1962. "onclick": U.UF.C.closure(function (obj) {
  1963. //防止拖动图标即打开了桌面应用
  1964. U.MD.D.click(this, obj);
  1965. }, [_caleStudentDeskIconInfo[i]])
  1966. }, _frag); //
  1967. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1968. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  1969. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  1970. }
  1971. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  1972. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  1973. _content = $$("div", {
  1974. className: "U_MD_D_KO",
  1975. "onmousedown": U.UF.C.closure(function (obj) {
  1976. //防止拖动图标即打开了桌面应用
  1977. U.MD.D.click(this, obj);
  1978. }, [_thuioeStudentDeskIconInfo[i]]),
  1979. "onclick": U.UF.C.closure(function (obj) {
  1980. //防止拖动图标即打开了桌面应用
  1981. U.MD.D.click(this, obj);
  1982. }, [_thuioeStudentDeskIconInfo[i]])
  1983. }, _frag); //
  1984. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  1985. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  1986. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  1987. }
  1988. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  1989. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  1990. _content = $$("div", {
  1991. className: "U_MD_D_KO",
  1992. "onmousedown": U.UF.C.closure(function (obj) {
  1993. //防止拖动图标即打开了桌面应用
  1994. U.MD.D.click(this, obj);
  1995. }, [_tpcStudentDeskIconInfo[i]]),
  1996. "onclick": U.UF.C.closure(function (obj) {
  1997. //防止拖动图标即打开了桌面应用
  1998. U.MD.D.click(this, obj);
  1999. }, [_tpcStudentDeskIconInfo[i]])
  2000. }, _frag); //
  2001. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2002. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2003. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2004. } //
  2005. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2006. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2007. _content = $$("div", {
  2008. className: "U_MD_D_KO",
  2009. "onmousedown": U.UF.C.closure(function (obj) {
  2010. //防止拖动图标即打开了桌面应用
  2011. U.MD.D.click(this, obj);
  2012. }, [_chjyjStudentDeskIconInfo[i]]),
  2013. "onclick": U.UF.C.closure(function (obj) {
  2014. //防止拖动图标即打开了桌面应用
  2015. U.MD.D.click(this, obj);
  2016. }, [_chjyjStudentDeskIconInfo[i]])
  2017. }, _frag); //
  2018. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2019. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2020. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2021. }
  2022. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2023. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2024. _content = $$("div", {
  2025. className: "U_MD_D_KO",
  2026. "onmousedown": U.UF.C.closure(function (obj) {
  2027. //防止拖动图标即打开了桌面应用
  2028. U.MD.D.click(this, obj);
  2029. }, [_szjkyStudentDeskIconInfo[i]]),
  2030. "onclick": U.UF.C.closure(function (obj) {
  2031. //防止拖动图标即打开了桌面应用
  2032. U.MD.D.click(this, obj);
  2033. }, [_szjkyStudentDeskIconInfo[i]])
  2034. }, _frag); //
  2035. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2036. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2037. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2038. }
  2039. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2040. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2041. _content = $$("div", {
  2042. className: "U_MD_D_KO",
  2043. "onmousedown": U.UF.C.closure(function (obj) {
  2044. //防止拖动图标即打开了桌面应用
  2045. U.MD.D.click(this, obj);
  2046. }, [_dseiStudentDeskIconInfo[i]]),
  2047. "onclick": U.UF.C.closure(function (obj) {
  2048. //防止拖动图标即打开了桌面应用
  2049. U.MD.D.click(this, obj);
  2050. }, [_dseiStudentDeskIconInfo[i]])
  2051. }, _frag); //
  2052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2055. }
  2056. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2057. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2058. _content = $$("div", {
  2059. className: "U_MD_D_KO",
  2060. "onmousedown": U.UF.C.closure(function (obj) {
  2061. //防止拖动图标即打开了桌面应用
  2062. U.MD.D.click(this, obj);
  2063. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2064. "onclick": U.UF.C.closure(function (obj) {
  2065. //防止拖动图标即打开了桌面应用
  2066. U.MD.D.click(this, obj);
  2067. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2068. }, _frag); //
  2069. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2070. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2071. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2072. }
  2073. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2074. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2075. _content = $$("div", {
  2076. className: "U_MD_D_KO",
  2077. "onmousedown": U.UF.C.closure(function (obj) {
  2078. //防止拖动图标即打开了桌面应用
  2079. U.MD.D.click(this, obj);
  2080. }, [_nsfxStudentDeskIconInfo[i]]),
  2081. "onclick": U.UF.C.closure(function (obj) {
  2082. //防止拖动图标即打开了桌面应用
  2083. U.MD.D.click(this, obj);
  2084. }, [_nsfxStudentDeskIconInfo[i]])
  2085. }, _frag); //
  2086. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2087. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2088. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2089. }
  2090. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2091. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2092. _content = $$("div", {
  2093. className: "U_MD_D_KO",
  2094. "onmousedown": U.UF.C.closure(function (obj) {
  2095. //防止拖动图标即打开了桌面应用
  2096. U.MD.D.click(this, obj);
  2097. }, [_stiaStudentDeskIconInfo[i]]),
  2098. "onclick": U.UF.C.closure(function (obj) {
  2099. //防止拖动图标即打开了桌面应用
  2100. U.MD.D.click(this, obj);
  2101. }, [_stiaStudentDeskIconInfo[i]])
  2102. }, _frag); //
  2103. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2104. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2105. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2106. }
  2107. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2108. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2109. _content = $$("div", {
  2110. className: "U_MD_D_KO",
  2111. "onmousedown": U.UF.C.closure(function (obj) {
  2112. //防止拖动图标即打开了桌面应用
  2113. U.MD.D.click(this, obj);
  2114. }, [_szdjgStudentDeskIconInfo[i]]),
  2115. "onclick": U.UF.C.closure(function (obj) {
  2116. //防止拖动图标即打开了桌面应用
  2117. U.MD.D.click(this, obj);
  2118. }, [_szdjgStudentDeskIconInfo[i]])
  2119. }, _frag); //
  2120. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2121. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2122. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2123. }
  2124. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2125. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2126. _content = $$("div", {
  2127. className: "U_MD_D_KO",
  2128. "onmousedown": U.UF.C.closure(function (obj) {
  2129. //防止拖动图标即打开了桌面应用
  2130. U.MD.D.click(this, obj);
  2131. }, [_x010607StudentDeskIconInfo[i]]),
  2132. "onclick": U.UF.C.closure(function (obj) {
  2133. //防止拖动图标即打开了桌面应用
  2134. U.MD.D.click(this, obj);
  2135. }, [_x010607StudentDeskIconInfo[i]])
  2136. }, _frag); //
  2137. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2138. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2139. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2140. }
  2141. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2142. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2143. _content = $$("div", {
  2144. className: "U_MD_D_KO",
  2145. "onmousedown": U.UF.C.closure(function (obj) {
  2146. //防止拖动图标即打开了桌面应用
  2147. U.MD.D.click(this, obj);
  2148. }, [_xhlyStudentDeskIconInfo[i]]),
  2149. "onclick": U.UF.C.closure(function (obj) {
  2150. //防止拖动图标即打开了桌面应用
  2151. U.MD.D.click(this, obj);
  2152. }, [_xhlyStudentDeskIconInfo[i]])
  2153. }, _frag); //
  2154. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2155. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2156. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2157. }
  2158. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2159. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2160. _content = $$("div", {
  2161. className: "U_MD_D_KO",
  2162. "onmousedown": U.UF.C.closure(function (obj) {
  2163. //防止拖动图标即打开了桌面应用
  2164. U.MD.D.click(this, obj);
  2165. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2166. "onclick": U.UF.C.closure(function (obj) {
  2167. //防止拖动图标即打开了桌面应用
  2168. U.MD.D.click(this, obj);
  2169. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2170. }, _frag); //
  2171. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2174. }
  2175. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2176. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2177. _content = $$("div", {
  2178. className: "U_MD_D_KO",
  2179. "onmousedown": U.UF.C.closure(function (obj) {
  2180. //防止拖动图标即打开了桌面应用
  2181. U.MD.D.click(this, obj);
  2182. }, [_x010503StudentDeskIconInfo[i]]),
  2183. "onclick": U.UF.C.closure(function (obj) {
  2184. //防止拖动图标即打开了桌面应用
  2185. U.MD.D.click(this, obj);
  2186. }, [_x010503StudentDeskIconInfo[i]])
  2187. }, _frag); //
  2188. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2189. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2190. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2191. }
  2192. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2193. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2194. _content = $$("div", {
  2195. className: "U_MD_D_KO",
  2196. "onmousedown": U.UF.C.closure(function (obj) {
  2197. //防止拖动图标即打开了桌面应用
  2198. U.MD.D.click(this, obj);
  2199. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2200. "onclick": U.UF.C.closure(function (obj) {
  2201. //防止拖动图标即打开了桌面应用
  2202. U.MD.D.click(this, obj);
  2203. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2204. }, _frag); //
  2205. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2206. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2207. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2208. }
  2209. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2210. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2211. _content = $$("div", {
  2212. className: "U_MD_D_KO",
  2213. "onmousedown": U.UF.C.closure(function (obj) {
  2214. //防止拖动图标即打开了桌面应用
  2215. U.MD.D.click(this, obj);
  2216. }, [_x010608StudentDeskIconInfo[i]]),
  2217. "onclick": U.UF.C.closure(function (obj) {
  2218. //防止拖动图标即打开了桌面应用
  2219. U.MD.D.click(this, obj);
  2220. }, [_x010608StudentDeskIconInfo[i]])
  2221. }, _frag); //
  2222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2225. }
  2226. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2227. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2228. _content = $$("div", {
  2229. className: "U_MD_D_KO",
  2230. "onmousedown": U.UF.C.closure(function (obj) {
  2231. //防止拖动图标即打开了桌面应用
  2232. U.MD.D.click(this, obj);
  2233. }, [_siesStudentDeskIconInfo[i]]),
  2234. "onclick": U.UF.C.closure(function (obj) {
  2235. //防止拖动图标即打开了桌面应用
  2236. U.MD.D.click(this, obj);
  2237. }, [_siesStudentDeskIconInfo[i]])
  2238. }, _frag); //
  2239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2242. }
  2243. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2244. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2245. _content = $$("div", {
  2246. className: "U_MD_D_KO",
  2247. "onmousedown": U.UF.C.closure(function (obj) {
  2248. //防止拖动图标即打开了桌面应用
  2249. U.MD.D.click(this, obj);
  2250. }, [_guzmsStudentDeskIconInfo[i]]),
  2251. "onclick": U.UF.C.closure(function (obj) {
  2252. //防止拖动图标即打开了桌面应用
  2253. U.MD.D.click(this, obj);
  2254. }, [_guzmsStudentDeskIconInfo[i]])
  2255. }, _frag); //
  2256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2259. }
  2260. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2261. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2262. _content = $$("div", {
  2263. className: "U_MD_D_KO",
  2264. "onmousedown": U.UF.C.closure(function (obj) {
  2265. //防止拖动图标即打开了桌面应用
  2266. U.MD.D.click(this, obj);
  2267. }, [_hkStudentDeskIconInfo[i]]),
  2268. "onclick": U.UF.C.closure(function (obj) {
  2269. //防止拖动图标即打开了桌面应用
  2270. U.MD.D.click(this, obj);
  2271. }, [_hkStudentDeskIconInfo[i]])
  2272. }, _frag); //
  2273. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2274. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2275. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2276. }
  2277. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2278. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2279. _content = $$("div", {
  2280. className: "U_MD_D_KO",
  2281. "onmousedown": U.UF.C.closure(function (obj) {
  2282. //防止拖动图标即打开了桌面应用
  2283. U.MD.D.click(this, obj);
  2284. }, [_hkaceStudentDeskIconInfo[i]]),
  2285. "onclick": U.UF.C.closure(function (obj) {
  2286. //防止拖动图标即打开了桌面应用
  2287. U.MD.D.click(this, obj);
  2288. }, [_hkaceStudentDeskIconInfo[i]])
  2289. }, _frag); //
  2290. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2291. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2292. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2293. }
  2294. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2295. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2296. _content = $$("div", {
  2297. className: "U_MD_D_KO",
  2298. "onmousedown": U.UF.C.closure(function (obj) {
  2299. //防止拖动图标即打开了桌面应用
  2300. U.MD.D.click(this, obj);
  2301. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2302. "onclick": U.UF.C.closure(function (obj) {
  2303. //防止拖动图标即打开了桌面应用
  2304. U.MD.D.click(this, obj);
  2305. }, [_BSDNSstudentDesktopIconInfo[i]])
  2306. }, _frag); //
  2307. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2308. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2309. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2310. }
  2311. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2312. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2313. _content = $$("div", {
  2314. className: "U_MD_D_KO",
  2315. "onmousedown": U.UF.C.closure(function (obj) {
  2316. //防止拖动图标即打开了桌面应用
  2317. U.MD.D.click(this, obj);
  2318. }, [_cocobizStudentDeskIconInfo[i]]),
  2319. "onclick": U.UF.C.closure(function (obj) {
  2320. //防止拖动图标即打开了桌面应用
  2321. U.MD.D.click(this, obj);
  2322. }, [_cocobizStudentDeskIconInfo[i]])
  2323. }, _frag); //
  2324. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2325. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2326. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2327. }
  2328. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2329. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2330. _content = $$("div", {
  2331. className: "U_MD_D_KO",
  2332. "onmousedown": U.UF.C.closure(function (obj) {
  2333. //防止拖动图标即打开了桌面应用
  2334. U.MD.D.click(this, obj);
  2335. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2336. "onclick": U.UF.C.closure(function (obj) {
  2337. //防止拖动图标即打开了桌面应用
  2338. U.MD.D.click(this, obj);
  2339. }, [_xxzjkyStudentDeskIconInfo[i]])
  2340. }, _frag); //
  2341. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2342. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2343. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2344. }
  2345. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2346. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2347. _content = $$("div", {
  2348. className: "U_MD_D_KO",
  2349. "onmousedown": U.UF.C.closure(function (obj) {
  2350. //防止拖动图标即打开了桌面应用
  2351. U.MD.D.click(this, obj);
  2352. }, [_studentDesktopIconInfo[i]]),
  2353. "onclick": U.UF.C.closure(function (obj) {
  2354. //防止拖动图标即打开了桌面应用
  2355. U.MD.D.click(this, obj);
  2356. }, [_studentDesktopIconInfo[i]])
  2357. }, _frag); //
  2358. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2359. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2360. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2361. }
  2362. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2363. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2364. _content = $$("div", {
  2365. className: "U_MD_D_KO",
  2366. "onmousedown": U.UF.C.closure(function (obj) {
  2367. //防止拖动图标即打开了桌面应用
  2368. U.MD.D.click(this, obj);
  2369. }, [_tcStudentDeskIconInfo[i]]),
  2370. "onclick": U.UF.C.closure(function (obj) {
  2371. //防止拖动图标即打开了桌面应用
  2372. U.MD.D.click(this, obj);
  2373. }, [_tcStudentDeskIconInfo[i]])
  2374. }, _frag); //
  2375. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2376. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2377. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2378. }
  2379. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2380. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  2381. _content = $$("div", {
  2382. className: "U_MD_D_KO",
  2383. "onmousedown": U.UF.C.closure(function (obj) {
  2384. //防止拖动图标即打开了桌面应用
  2385. U.MD.D.click(this, obj);
  2386. }, [_szscStudentDeskIconInfo[i]]),
  2387. "onclick": U.UF.C.closure(function (obj) {
  2388. //防止拖动图标即打开了桌面应用
  2389. U.MD.D.click(this, obj);
  2390. }, [_szscStudentDeskIconInfo[i]])
  2391. }, _frag); //
  2392. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2393. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2394. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2395. }
  2396. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2397. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2398. _content = $$("div", {
  2399. className: "U_MD_D_KO",
  2400. "onmousedown": U.UF.C.closure(function (obj) {
  2401. //防止拖动图标即打开了桌面应用
  2402. U.MD.D.click(this, obj);
  2403. }, [_studentDesktopIconInfo3[i]]),
  2404. "onclick": U.UF.C.closure(function (obj) {
  2405. //防止拖动图标即打开了桌面应用
  2406. U.MD.D.click(this, obj);
  2407. }, [_studentDesktopIconInfo3[i]])
  2408. }, _frag); //
  2409. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2410. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2411. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2412. }
  2413. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2414. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2415. _content = $$("div", {
  2416. className: "U_MD_D_KO",
  2417. "onmousedown": U.UF.C.closure(function (obj) {
  2418. //防止拖动图标即打开了桌面应用
  2419. U.MD.D.click(this, obj);
  2420. }, [_studentDesktopIconInfo2[i]]),
  2421. "onclick": U.UF.C.closure(function (obj) {
  2422. //防止拖动图标即打开了桌面应用
  2423. U.MD.D.click(this, obj);
  2424. }, [_studentDesktopIconInfo2[i]])
  2425. }, _frag); //
  2426. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2427. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2428. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2429. }
  2430. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2431. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2432. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2433. continue
  2434. }
  2435. _content = $$("div", {
  2436. className: "U_MD_D_KO",
  2437. "onmousedown": U.UF.C.closure(function (obj) {
  2438. //防止拖动图标即打开了桌面应用
  2439. U.MD.D.click(this, obj);
  2440. }, [_wanketeacherDesktopIconInfo[i]]),
  2441. "onclick": U.UF.C.closure(function (obj) {
  2442. //防止拖动图标即打开了桌面应用
  2443. U.MD.D.click(this, obj);
  2444. }, [_wanketeacherDesktopIconInfo[i]])
  2445. }, _frag); //
  2446. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2447. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2448. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2449. }
  2450. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2451. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2452. _content = $$("div", {
  2453. className: "U_MD_D_KO",
  2454. "onmousedown": U.UF.C.closure(function (obj) {
  2455. //防止拖动图标即打开了桌面应用
  2456. U.MD.D.click(this, obj);
  2457. }, [_wankeAdminDesktopIconInfo[i]]),
  2458. "onclick": U.UF.C.closure(function (obj) {
  2459. //防止拖动图标即打开了桌面应用
  2460. U.MD.D.click(this, obj);
  2461. }, [_wankeAdminDesktopIconInfo[i]])
  2462. }, _frag); //
  2463. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2464. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2465. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2466. }
  2467. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2468. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2469. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2470. continue
  2471. }
  2472. _content = $$("div", {
  2473. className: "U_MD_D_KO",
  2474. "onmousedown": U.UF.C.closure(function (obj) {
  2475. //防止拖动图标即打开了桌面应用
  2476. U.MD.D.click(this, obj);
  2477. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2478. "onclick": U.UF.C.closure(function (obj) {
  2479. //防止拖动图标即打开了桌面应用
  2480. U.MD.D.click(this, obj);
  2481. }, [_scnuaiTeacherDeskIconInfo[i]])
  2482. }, _frag); //
  2483. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2484. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2485. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2486. }
  2487. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2488. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2489. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2490. continue
  2491. }
  2492. _content = $$("div", {
  2493. className: "U_MD_D_KO",
  2494. "onmousedown": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2498. "onclick": U.UF.C.closure(function (obj) {
  2499. //防止拖动图标即打开了桌面应用
  2500. U.MD.D.click(this, obj);
  2501. }, [_BSDNSteacherDesktopIconInfo[i]])
  2502. }, _frag); //
  2503. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2504. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2505. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2506. }
  2507. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2508. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2509. _content = $$("div", {
  2510. className: "U_MD_D_KO",
  2511. "onmousedown": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_scnuaiAdminDeskIconInfo[i]]),
  2515. "onclick": U.UF.C.closure(function (obj) {
  2516. //防止拖动图标即打开了桌面应用
  2517. U.MD.D.click(this, obj);
  2518. }, [_scnuaiAdminDeskIconInfo[i]])
  2519. }, _frag); //
  2520. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2521. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2522. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2523. }
  2524. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2525. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2526. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2527. continue
  2528. }
  2529. _content = $$("div", {
  2530. className: "U_MD_D_KO",
  2531. "onmousedown": U.UF.C.closure(function (obj) {
  2532. //防止拖动图标即打开了桌面应用
  2533. U.MD.D.click(this, obj);
  2534. }, [_jccssylTeacherDeskIconInfo[i]]),
  2535. "onclick": U.UF.C.closure(function (obj) {
  2536. //防止拖动图标即打开了桌面应用
  2537. U.MD.D.click(this, obj);
  2538. }, [_jccssylTeacherDeskIconInfo[i]])
  2539. }, _frag); //
  2540. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2541. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2542. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2543. }
  2544. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2545. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2546. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2547. continue
  2548. }
  2549. _content = $$("div", {
  2550. className: "U_MD_D_KO",
  2551. "onmousedown": U.UF.C.closure(function (obj) {
  2552. //防止拖动图标即打开了桌面应用
  2553. U.MD.D.click(this, obj);
  2554. }, [_caleTeacherDeskIconInfo[i]]),
  2555. "onclick": U.UF.C.closure(function (obj) {
  2556. //防止拖动图标即打开了桌面应用
  2557. U.MD.D.click(this, obj);
  2558. }, [_caleTeacherDeskIconInfo[i]])
  2559. }, _frag); //
  2560. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2561. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2562. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2563. }
  2564. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2565. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2566. _content = $$("div", {
  2567. className: "U_MD_D_KO",
  2568. "onmousedown": U.UF.C.closure(function (obj) {
  2569. //防止拖动图标即打开了桌面应用
  2570. U.MD.D.click(this, obj);
  2571. }, [_tpcOrganizerDeskIconInfo[i]]),
  2572. "onclick": U.UF.C.closure(function (obj) {
  2573. //防止拖动图标即打开了桌面应用
  2574. U.MD.D.click(this, obj);
  2575. }, [_tpcOrganizerDeskIconInfo[i]])
  2576. }, _frag); //
  2577. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2578. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2579. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2580. }
  2581. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2582. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2583. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2584. continue
  2585. }
  2586. _content = $$("div", {
  2587. className: "U_MD_D_KO",
  2588. "onmousedown": U.UF.C.closure(function (obj) {
  2589. //防止拖动图标即打开了桌面应用
  2590. U.MD.D.click(this, obj);
  2591. }, [_tpcTeacherDeskIconInfo[i]]),
  2592. "onclick": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_tpcTeacherDeskIconInfo[i]])
  2596. }, _frag); //
  2597. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2598. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2599. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2600. }
  2601. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2602. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2603. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2604. continue
  2605. }
  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. }, [_teacherDesktopIconInfo2[i]]),
  2612. "onclick": U.UF.C.closure(function (obj) {
  2613. //防止拖动图标即打开了桌面应用
  2614. U.MD.D.click(this, obj);
  2615. }, [_teacherDesktopIconInfo2[i]])
  2616. }, _frag); //
  2617. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2618. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2619. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2620. }
  2621. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2622. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2623. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2624. continue
  2625. }
  2626. _content = $$("div", {
  2627. className: "U_MD_D_KO",
  2628. "onmousedown": U.UF.C.closure(function (obj) {
  2629. //防止拖动图标即打开了桌面应用
  2630. U.MD.D.click(this, obj);
  2631. }, [_thuioeTeacherDeskIconInfo[i]]),
  2632. "onclick": U.UF.C.closure(function (obj) {
  2633. //防止拖动图标即打开了桌面应用
  2634. U.MD.D.click(this, obj);
  2635. }, [_thuioeTeacherDeskIconInfo[i]])
  2636. }, _frag); //
  2637. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2638. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2639. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2640. }
  2641. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2642. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2643. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2644. continue
  2645. }
  2646. _content = $$("div", {
  2647. className: "U_MD_D_KO",
  2648. "onmousedown": U.UF.C.closure(function (obj) {
  2649. //防止拖动图标即打开了桌面应用
  2650. U.MD.D.click(this, obj);
  2651. }, [_lotechTeacherDeskIconInfo[i]]),
  2652. "onclick": U.UF.C.closure(function (obj) {
  2653. //防止拖动图标即打开了桌面应用
  2654. U.MD.D.click(this, obj);
  2655. }, [_lotechTeacherDeskIconInfo[i]])
  2656. }, _frag); //
  2657. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2658. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  2659. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  2660. }//
  2661. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2662. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  2663. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2664. continue
  2665. }
  2666. _content = $$("div", {
  2667. className: "U_MD_D_KO",
  2668. "onmousedown": U.UF.C.closure(function (obj) {
  2669. //防止拖动图标即打开了桌面应用
  2670. U.MD.D.click(this, obj);
  2671. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  2672. "onclick": U.UF.C.closure(function (obj) {
  2673. //防止拖动图标即打开了桌面应用
  2674. U.MD.D.click(this, obj);
  2675. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  2676. }, _frag); //
  2677. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2678. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  2679. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2680. }
  2681. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2682. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  2683. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  2684. continue
  2685. }
  2686. _content = $$("div", {
  2687. className: "U_MD_D_KO",
  2688. "onmousedown": U.UF.C.closure(function (obj) {
  2689. //防止拖动图标即打开了桌面应用
  2690. U.MD.D.click(this, obj);
  2691. }, [_siesTeacherDeskIconInfo[i]]),
  2692. "onclick": U.UF.C.closure(function (obj) {
  2693. //防止拖动图标即打开了桌面应用
  2694. U.MD.D.click(this, obj);
  2695. }, [_siesTeacherDeskIconInfo[i]])
  2696. }, _frag); //
  2697. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2698. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  2699. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  2700. }
  2701. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2702. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  2703. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2704. continue
  2705. }
  2706. _content = $$("div", {
  2707. className: "U_MD_D_KO",
  2708. "onmousedown": U.UF.C.closure(function (obj) {
  2709. //防止拖动图标即打开了桌面应用
  2710. U.MD.D.click(this, obj);
  2711. }, [_guzmsTeacherDeskIconInfo[i]]),
  2712. "onclick": U.UF.C.closure(function (obj) {
  2713. //防止拖动图标即打开了桌面应用
  2714. U.MD.D.click(this, obj);
  2715. }, [_guzmsTeacherDeskIconInfo[i]])
  2716. }, _frag); //
  2717. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2718. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  2719. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  2720. }
  2721. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  2722. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  2723. if(_role === 0 && _longhuaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2724. continue
  2725. }
  2726. _content = $$("div", {
  2727. className: "U_MD_D_KO",
  2728. "onmousedown": U.UF.C.closure(function (obj) {
  2729. //防止拖动图标即打开了桌面应用
  2730. U.MD.D.click(this, obj);
  2731. }, [_longhuaTeacherDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_longhuaTeacherDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2742. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  2743. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2744. continue
  2745. }
  2746. _content = $$("div", {
  2747. className: "U_MD_D_KO",
  2748. "onmousedown": U.UF.C.closure(function (obj) {
  2749. //防止拖动图标即打开了桌面应用
  2750. U.MD.D.click(this, obj);
  2751. }, [_ytyTeacherDeskIconInfo[i]]),
  2752. "onclick": U.UF.C.closure(function (obj) {
  2753. //防止拖动图标即打开了桌面应用
  2754. U.MD.D.click(this, obj);
  2755. }, [_ytyTeacherDeskIconInfo[i]])
  2756. }, _frag); //
  2757. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2758. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  2759. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2760. }
  2761. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  2762. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  2763. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2764. continue
  2765. }
  2766. _content = $$("div", {
  2767. className: "U_MD_D_KO",
  2768. "onmousedown": U.UF.C.closure(function (obj) {
  2769. //防止拖动图标即打开了桌面应用
  2770. U.MD.D.click(this, obj);
  2771. }, [_yunhaiTeacherDeskIconInfo[i]]),
  2772. "onclick": U.UF.C.closure(function (obj) {
  2773. //防止拖动图标即打开了桌面应用
  2774. U.MD.D.click(this, obj);
  2775. }, [_yunhaiTeacherDeskIconInfo[i]])
  2776. }, _frag); //
  2777. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2778. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2779. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2780. } //_hkStudentDeskIconInfo
  2781. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2782. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  2783. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2784. continue
  2785. }
  2786. _content = $$("div", {
  2787. className: "U_MD_D_KO",
  2788. "onmousedown": U.UF.C.closure(function (obj) {
  2789. //防止拖动图标即打开了桌面应用
  2790. U.MD.D.click(this, obj);
  2791. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  2792. "onclick": U.UF.C.closure(function (obj) {
  2793. //防止拖动图标即打开了桌面应用
  2794. U.MD.D.click(this, obj);
  2795. }, [_hkZJLSTeacherDeskIconInfo[i]])
  2796. }, _frag); //
  2797. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2798. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  2799. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  2800. }
  2801. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2802. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  2803. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2804. continue
  2805. }
  2806. _content = $$("div", {
  2807. className: "U_MD_D_KO",
  2808. "onmousedown": U.UF.C.closure(function (obj) {
  2809. //防止拖动图标即打开了桌面应用
  2810. U.MD.D.click(this, obj);
  2811. }, [_hkTeacherDeskIconInfo[i]]),
  2812. "onclick": U.UF.C.closure(function (obj) {
  2813. //防止拖动图标即打开了桌面应用
  2814. U.MD.D.click(this, obj);
  2815. }, [_hkTeacherDeskIconInfo[i]])
  2816. }, _frag); //
  2817. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2818. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  2819. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  2820. }
  2821. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2822. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  2823. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2824. continue
  2825. }
  2826. _content = $$("div", {
  2827. className: "U_MD_D_KO",
  2828. "onmousedown": U.UF.C.closure(function (obj) {
  2829. //防止拖动图标即打开了桌面应用
  2830. U.MD.D.click(this, obj);
  2831. }, [_hkaceTeacherDeskIconInfo[i]]),
  2832. "onclick": U.UF.C.closure(function (obj) {
  2833. //防止拖动图标即打开了桌面应用
  2834. U.MD.D.click(this, obj);
  2835. }, [_hkaceTeacherDeskIconInfo[i]])
  2836. }, _frag); //
  2837. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2838. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  2839. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  2840. }
  2841. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2842. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  2843. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2844. continue
  2845. }
  2846. _content = $$("div", {
  2847. className: "U_MD_D_KO",
  2848. "onmousedown": U.UF.C.closure(function (obj) {
  2849. //防止拖动图标即打开了桌面应用
  2850. U.MD.D.click(this, obj);
  2851. }, [_cocobizTeacherDeskIconInfo[i]]),
  2852. "onclick": U.UF.C.closure(function (obj) {
  2853. //防止拖动图标即打开了桌面应用
  2854. U.MD.D.click(this, obj);
  2855. }, [_cocobizTeacherDeskIconInfo[i]])
  2856. }, _frag); //
  2857. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2858. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  2859. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  2860. }
  2861. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2862. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  2863. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2864. continue
  2865. }
  2866. _content = $$("div", {
  2867. className: "U_MD_D_KO",
  2868. "onmousedown": U.UF.C.closure(function (obj) {
  2869. //防止拖动图标即打开了桌面应用
  2870. U.MD.D.click(this, obj);
  2871. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  2872. "onclick": U.UF.C.closure(function (obj) {
  2873. //防止拖动图标即打开了桌面应用
  2874. U.MD.D.click(this, obj);
  2875. }, [_xxzjkyTeacherDeskIconInfo[i]])
  2876. }, _frag); //
  2877. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2878. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  2879. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  2880. }
  2881. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  2882. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  2883. _content = $$("div", {
  2884. className: "U_MD_D_KO",
  2885. "onmousedown": U.UF.C.closure(function (obj) {
  2886. //防止拖动图标即打开了桌面应用
  2887. U.MD.D.click(this, obj);
  2888. }, [_gdjgAdminDeskIconInfo[i]]),
  2889. "onclick": U.UF.C.closure(function (obj) {
  2890. //防止拖动图标即打开了桌面应用
  2891. U.MD.D.click(this, obj);
  2892. }, [_gdjgAdminDeskIconInfo[i]])
  2893. }, _frag); //
  2894. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2895. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  2896. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  2897. }
  2898. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  2899. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  2900. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2901. continue
  2902. }
  2903. _content = $$("div", {
  2904. className: "U_MD_D_KO",
  2905. "onmousedown": U.UF.C.closure(function (obj) {
  2906. //防止拖动图标即打开了桌面应用
  2907. U.MD.D.click(this, obj);
  2908. }, [_gdjgTeacherDeskIconInfo[i]]),
  2909. "onclick": U.UF.C.closure(function (obj) {
  2910. //防止拖动图标即打开了桌面应用
  2911. U.MD.D.click(this, obj);
  2912. }, [_gdjgTeacherDeskIconInfo[i]])
  2913. }, _frag); //
  2914. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2915. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  2916. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  2917. }
  2918. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  2919. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  2920. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2921. continue
  2922. }
  2923. _content = $$("div", {
  2924. className: "U_MD_D_KO",
  2925. "onmousedown": U.UF.C.closure(function (obj) {
  2926. //防止拖动图标即打开了桌面应用
  2927. U.MD.D.click(this, obj);
  2928. }, [_szherTeacherDeskIconInfo[i]]),
  2929. "onclick": U.UF.C.closure(function (obj) {
  2930. //防止拖动图标即打开了桌面应用
  2931. U.MD.D.click(this, obj);
  2932. }, [_szherTeacherDeskIconInfo[i]])
  2933. }, _frag); //
  2934. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2935. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  2936. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  2937. }
  2938. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  2939. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  2940. _content = $$("div", {
  2941. className: "U_MD_D_KO",
  2942. "onmousedown": U.UF.C.closure(function (obj) {
  2943. //防止拖动图标即打开了桌面应用
  2944. U.MD.D.click(this, obj);
  2945. }, [_heyuannAdminDeskIconInfo[i]]),
  2946. "onclick": U.UF.C.closure(function (obj) {
  2947. //防止拖动图标即打开了桌面应用
  2948. U.MD.D.click(this, obj);
  2949. }, [_heyuannAdminDeskIconInfo[i]])
  2950. }, _frag); //
  2951. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2952. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  2953. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  2954. }
  2955. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  2956. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  2957. if(_role === 0 && _heyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2958. continue
  2959. }
  2960. _content = $$("div", {
  2961. className: "U_MD_D_KO",
  2962. "onmousedown": U.UF.C.closure(function (obj) {
  2963. //防止拖动图标即打开了桌面应用
  2964. U.MD.D.click(this, obj);
  2965. }, [_heyuanTeacherDeskIconInfo[i]]),
  2966. "onclick": U.UF.C.closure(function (obj) {
  2967. //防止拖动图标即打开了桌面应用
  2968. U.MD.D.click(this, obj);
  2969. }, [_heyuanTeacherDeskIconInfo[i]])
  2970. }, _frag); //
  2971. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2972. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  2973. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  2974. } //
  2975. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  2976. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  2977. _content = $$("div", {
  2978. className: "U_MD_D_KO",
  2979. "onmousedown": U.UF.C.closure(function (obj) {
  2980. //防止拖动图标即打开了桌面应用
  2981. U.MD.D.click(this, obj);
  2982. }, [_dseiAdminDeskIconInfo[i]]),
  2983. "onclick": U.UF.C.closure(function (obj) {
  2984. //防止拖动图标即打开了桌面应用
  2985. U.MD.D.click(this, obj);
  2986. }, [_dseiAdminDeskIconInfo[i]])
  2987. }, _frag); //
  2988. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2989. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  2990. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  2991. }
  2992. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  2993. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  2994. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2995. continue
  2996. }
  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. }, [_dseiTeacherDeskIconInfo[i]]),
  3003. "onclick": U.UF.C.closure(function (obj) {
  3004. //防止拖动图标即打开了桌面应用
  3005. U.MD.D.click(this, obj);
  3006. }, [_dseiTeacherDeskIconInfo[i]])
  3007. }, _frag); //
  3008. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3009. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3010. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3011. } //
  3012. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3013. for (i = 0; i < _chjyjAdminDeskIconInfo.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. }, [_chjyjAdminDeskIconInfo[i]]),
  3020. "onclick": U.UF.C.closure(function (obj) {
  3021. //防止拖动图标即打开了桌面应用
  3022. U.MD.D.click(this, obj);
  3023. }, [_chjyjAdminDeskIconInfo[i]])
  3024. }, _frag); //
  3025. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3026. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3027. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3028. }//
  3029. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3030. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3031. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3032. continue
  3033. }
  3034. _content = $$("div", {
  3035. className: "U_MD_D_KO",
  3036. "onmousedown": U.UF.C.closure(function (obj) {
  3037. //防止拖动图标即打开了桌面应用
  3038. U.MD.D.click(this, obj);
  3039. }, [_chjyjTeacherDeskIconInfo[i]]),
  3040. "onclick": U.UF.C.closure(function (obj) {
  3041. //防止拖动图标即打开了桌面应用
  3042. U.MD.D.click(this, obj);
  3043. }, [_chjyjTeacherDeskIconInfo[i]])
  3044. }, _frag); //
  3045. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3046. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3047. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3048. }
  3049. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3050. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3051. _content = $$("div", {
  3052. className: "U_MD_D_KO",
  3053. "onmousedown": U.UF.C.closure(function (obj) {
  3054. //防止拖动图标即打开了桌面应用
  3055. U.MD.D.click(this, obj);
  3056. }, [_szjkyAdminDeskIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_szjkyAdminDeskIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3065. }//
  3066. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3067. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3068. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3069. continue
  3070. }
  3071. _content = $$("div", {
  3072. className: "U_MD_D_KO",
  3073. "onmousedown": U.UF.C.closure(function (obj) {
  3074. //防止拖动图标即打开了桌面应用
  3075. U.MD.D.click(this, obj);
  3076. }, [_szjkyTeacherDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_szjkyTeacherDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3087. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3088. _content = $$("div", {
  3089. className: "U_MD_D_KO",
  3090. "onmousedown": U.UF.C.closure(function (obj) {
  3091. //防止拖动图标即打开了桌面应用
  3092. U.MD.D.click(this, obj);
  3093. }, [_futianAdminDeskIconInfo[i]]),
  3094. "onclick": U.UF.C.closure(function (obj) {
  3095. //防止拖动图标即打开了桌面应用
  3096. U.MD.D.click(this, obj);
  3097. }, [_futianAdminDeskIconInfo[i]])
  3098. }, _frag); //
  3099. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3100. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3101. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3102. }
  3103. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3104. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3105. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3106. continue
  3107. }
  3108. _content = $$("div", {
  3109. className: "U_MD_D_KO",
  3110. "onmousedown": U.UF.C.closure(function (obj) {
  3111. //防止拖动图标即打开了桌面应用
  3112. U.MD.D.click(this, obj);
  3113. }, [_futianTeacherDeskIconInfo[i]]),
  3114. "onclick": U.UF.C.closure(function (obj) {
  3115. //防止拖动图标即打开了桌面应用
  3116. U.MD.D.click(this, obj);
  3117. }, [_futianTeacherDeskIconInfo[i]])
  3118. }, _frag); //
  3119. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3120. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3121. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3122. }
  3123. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3124. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3125. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3126. continue
  3127. }
  3128. _content = $$("div", {
  3129. className: "U_MD_D_KO",
  3130. "onmousedown": U.UF.C.closure(function (obj) {
  3131. //防止拖动图标即打开了桌面应用
  3132. U.MD.D.click(this, obj);
  3133. }, [_MingdeTeacherDeskIcon[i]]),
  3134. "onclick": U.UF.C.closure(function (obj) {
  3135. //防止拖动图标即打开了桌面应用
  3136. U.MD.D.click(this, obj);
  3137. }, [_MingdeTeacherDeskIcon[i]])
  3138. }, _frag); //
  3139. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3140. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3141. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3142. }
  3143. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3144. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3145. _content = $$("div", {
  3146. className: "U_MD_D_KO",
  3147. "onmousedown": U.UF.C.closure(function (obj) {
  3148. //防止拖动图标即打开了桌面应用
  3149. U.MD.D.click(this, obj);
  3150. }, [_lhsAdminDesktopIconInfo[i]]),
  3151. "onclick": U.UF.C.closure(function (obj) {
  3152. //防止拖动图标即打开了桌面应用
  3153. U.MD.D.click(this, obj);
  3154. }, [_lhsAdminDesktopIconInfo[i]])
  3155. }, _frag); //
  3156. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3157. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3158. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3159. }
  3160. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3161. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3162. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3163. continue
  3164. }
  3165. _content = $$("div", {
  3166. className: "U_MD_D_KO",
  3167. "onmousedown": U.UF.C.closure(function (obj) {
  3168. //防止拖动图标即打开了桌面应用
  3169. U.MD.D.click(this, obj);
  3170. }, [_lhsteacherDesktopIconInfo[i]]),
  3171. "onclick": U.UF.C.closure(function (obj) {
  3172. //防止拖动图标即打开了桌面应用
  3173. U.MD.D.click(this, obj);
  3174. }, [_lhsteacherDesktopIconInfo[i]])
  3175. }, _frag); //
  3176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3179. }
  3180. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3181. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3182. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3183. continue
  3184. }
  3185. _content = $$("div", {
  3186. className: "U_MD_D_KO",
  3187. "onmousedown": U.UF.C.closure(function (obj) {
  3188. //防止拖动图标即打开了桌面应用
  3189. U.MD.D.click(this, obj);
  3190. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3191. "onclick": U.UF.C.closure(function (obj) {
  3192. //防止拖动图标即打开了桌面应用
  3193. U.MD.D.click(this, obj);
  3194. }, [_zhoujiateacherDesktopIconInfo[i]])
  3195. }, _frag); //
  3196. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3197. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3198. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3199. }
  3200. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3201. for (i = 0; i < _hanDeskIcon.length; i++) {
  3202. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3203. continue
  3204. }
  3205. _content = $$("div", {
  3206. className: "U_MD_D_KO",
  3207. "onmousedown": U.UF.C.closure(function (obj) {
  3208. //防止拖动图标即打开了桌面应用
  3209. U.MD.D.click(this, obj);
  3210. }, [_hanDeskIcon[i]]),
  3211. "onclick": U.UF.C.closure(function (obj) {
  3212. //防止拖动图标即打开了桌面应用
  3213. U.MD.D.click(this, obj);
  3214. }, [_hanDeskIcon[i]])
  3215. }, _frag); //
  3216. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3217. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3218. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3219. }
  3220. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3221. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3222. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3223. continue
  3224. }
  3225. _content = $$("div", {
  3226. className: "U_MD_D_KO",
  3227. "onmousedown": U.UF.C.closure(function (obj) {
  3228. //防止拖动图标即打开了桌面应用
  3229. U.MD.D.click(this, obj);
  3230. }, [_orgStemDeskIcon[i]]),
  3231. "onclick": U.UF.C.closure(function (obj) {
  3232. //防止拖动图标即打开了桌面应用
  3233. U.MD.D.click(this, obj);
  3234. }, [_orgStemDeskIcon[i]])
  3235. }, _frag); //
  3236. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3237. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3238. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3239. }
  3240. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3241. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3242. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3243. continue
  3244. }
  3245. _content = $$("div", {
  3246. className: "U_MD_D_KO",
  3247. "onmousedown": U.UF.C.closure(function (obj) {
  3248. //防止拖动图标即打开了桌面应用
  3249. U.MD.D.click(this, obj);
  3250. }, [_szulsDeskIcon[i]]),
  3251. "onclick": U.UF.C.closure(function (obj) {
  3252. //防止拖动图标即打开了桌面应用
  3253. U.MD.D.click(this, obj);
  3254. }, [_szulsDeskIcon[i]])
  3255. }, _frag); //
  3256. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3257. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3258. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3259. }
  3260. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3261. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3262. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3263. continue
  3264. }
  3265. _content = $$("div", {
  3266. className: "U_MD_D_KO",
  3267. "onmousedown": U.UF.C.closure(function (obj) {
  3268. //防止拖动图标即打开了桌面应用
  3269. U.MD.D.click(this, obj);
  3270. }, [_orgDesktopIconInfo[i]]),
  3271. "onclick": U.UF.C.closure(function (obj) {
  3272. //防止拖动图标即打开了桌面应用
  3273. U.MD.D.click(this, obj);
  3274. }, [_orgDesktopIconInfo[i]])
  3275. }, _frag); //
  3276. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3277. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3278. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3279. }
  3280. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3281. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3282. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3283. continue
  3284. }
  3285. _content = $$("div", {
  3286. className: "U_MD_D_KO",
  3287. "onmousedown": U.UF.C.closure(function (obj) {
  3288. //防止拖动图标即打开了桌面应用
  3289. U.MD.D.click(this, obj);
  3290. }, [_schoolDesktopIconInfo[i]]),
  3291. "onclick": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_schoolDesktopIconInfo[i]])
  3295. }, _frag); //
  3296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3299. }
  3300. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3301. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3302. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3303. continue
  3304. }
  3305. _content = $$("div", {
  3306. className: "U_MD_D_KO",
  3307. "onmousedown": U.UF.C.closure(function (obj) {
  3308. //防止拖动图标即打开了桌面应用
  3309. U.MD.D.click(this, obj);
  3310. }, [_GMteacherDesktopIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_GMteacherDesktopIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3319. }
  3320. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3321. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3322. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3323. continue
  3324. }
  3325. _content = $$("div", {
  3326. className: "U_MD_D_KO",
  3327. "onmousedown": U.UF.C.closure(function (obj) {
  3328. //防止拖动图标即打开了桌面应用
  3329. U.MD.D.click(this, obj);
  3330. }, [_SONGteacherDesktopIconInfo[i]]),
  3331. "onclick": U.UF.C.closure(function (obj) {
  3332. //防止拖动图标即打开了桌面应用
  3333. U.MD.D.click(this, obj);
  3334. }, [_SONGteacherDesktopIconInfo[i]])
  3335. }, _frag); //
  3336. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3337. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3338. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3339. }
  3340. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3341. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3342. _content = $$("div", {
  3343. className: "U_MD_D_KO",
  3344. "onmousedown": U.UF.C.closure(function (obj) {
  3345. //防止拖动图标即打开了桌面应用
  3346. U.MD.D.click(this, obj);
  3347. }, [_GMstudentDesktopIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_GMstudentDesktopIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3356. }
  3357. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3358. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3359. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3360. continue
  3361. }
  3362. _content = $$("div", {
  3363. className: "U_MD_D_KO",
  3364. "onmousedown": U.UF.C.closure(function (obj) {
  3365. //防止拖动图标即打开了桌面应用
  3366. U.MD.D.click(this, obj);
  3367. }, [_tcTeacherDeskIconInfo[i]]),
  3368. "onclick": U.UF.C.closure(function (obj) {
  3369. //防止拖动图标即打开了桌面应用
  3370. U.MD.D.click(this, obj);
  3371. }, [_tcTeacherDeskIconInfo[i]])
  3372. }, _frag); //
  3373. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3374. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3375. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3376. }
  3377. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3378. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3379. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3380. continue
  3381. }
  3382. _content = $$("div", {
  3383. className: "U_MD_D_KO",
  3384. "onmousedown": U.UF.C.closure(function (obj) {
  3385. //防止拖动图标即打开了桌面应用
  3386. U.MD.D.click(this, obj);
  3387. }, [_tcOrganizerDeskIconInfo[i]]),
  3388. "onclick": U.UF.C.closure(function (obj) {
  3389. //防止拖动图标即打开了桌面应用
  3390. U.MD.D.click(this, obj);
  3391. }, [_tcOrganizerDeskIconInfo[i]])
  3392. }, _frag); //
  3393. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3394. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3395. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3396. }
  3397. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3398. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3399. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3400. continue
  3401. }
  3402. _content = $$("div", {
  3403. className: "U_MD_D_KO",
  3404. "onmousedown": U.UF.C.closure(function (obj) {
  3405. //防止拖动图标即打开了桌面应用
  3406. U.MD.D.click(this, obj);
  3407. }, [_szscTeacherDeskIconInfo[i]]),
  3408. "onclick": U.UF.C.closure(function (obj) {
  3409. //防止拖动图标即打开了桌面应用
  3410. U.MD.D.click(this, obj);
  3411. }, [_szscTeacherDeskIconInfo[i]])
  3412. }, _frag); //
  3413. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3414. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3415. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3416. }
  3417. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3418. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3419. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3420. continue
  3421. }
  3422. _content = $$("div", {
  3423. className: "U_MD_D_KO",
  3424. "onmousedown": U.UF.C.closure(function (obj) {
  3425. //防止拖动图标即打开了桌面应用
  3426. U.MD.D.click(this, obj);
  3427. }, [_szscOrganizerDeskIconInfo[i]]),
  3428. "onclick": U.UF.C.closure(function (obj) {
  3429. //防止拖动图标即打开了桌面应用
  3430. U.MD.D.click(this, obj);
  3431. }, [_szscOrganizerDeskIconInfo[i]])
  3432. }, _frag); //
  3433. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3434. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3435. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3436. }
  3437. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3438. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3439. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3440. continue
  3441. }
  3442. _content = $$("div", {
  3443. className: "U_MD_D_KO",
  3444. "onmousedown": U.UF.C.closure(function (obj) {
  3445. //防止拖动图标即打开了桌面应用
  3446. U.MD.D.click(this, obj);
  3447. }, [_nsfxTeacherDeskIconInfo[i]]),
  3448. "onclick": U.UF.C.closure(function (obj) {
  3449. //防止拖动图标即打开了桌面应用
  3450. U.MD.D.click(this, obj);
  3451. }, [_nsfxTeacherDeskIconInfo[i]])
  3452. }, _frag); //
  3453. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3454. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3455. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3456. }
  3457. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3458. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3459. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3460. continue
  3461. }
  3462. _content = $$("div", {
  3463. className: "U_MD_D_KO",
  3464. "onmousedown": U.UF.C.closure(function (obj) {
  3465. //防止拖动图标即打开了桌面应用
  3466. U.MD.D.click(this, obj);
  3467. }, [_stiaTeacherDeskIconInfo[i]]),
  3468. "onclick": U.UF.C.closure(function (obj) {
  3469. //防止拖动图标即打开了桌面应用
  3470. U.MD.D.click(this, obj);
  3471. }, [_stiaTeacherDeskIconInfo[i]])
  3472. }, _frag); //
  3473. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3474. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3475. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3476. }
  3477. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3478. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3479. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3480. continue
  3481. }
  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. }, [_szdjgTeacherDeskIconInfo[i]]),
  3488. "onclick": U.UF.C.closure(function (obj) {
  3489. //防止拖动图标即打开了桌面应用
  3490. U.MD.D.click(this, obj);
  3491. }, [_szdjgTeacherDeskIconInfo[i]])
  3492. }, _frag); //
  3493. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3494. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3495. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3496. }
  3497. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3498. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3499. if(_role === 0 && _x010607TeacherDeskIconInfo[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. }, [_x010607TeacherDeskIconInfo[i]]),
  3508. "onclick": U.UF.C.closure(function (obj) {
  3509. //防止拖动图标即打开了桌面应用
  3510. U.MD.D.click(this, obj);
  3511. }, [_x010607TeacherDeskIconInfo[i]])
  3512. }, _frag); //
  3513. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3514. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3515. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3516. }
  3517. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3518. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3519. if(_role === 0 && _xhlyTeacherDeskIconInfo[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. }, [_xhlyTeacherDeskIconInfo[i]]),
  3528. "onclick": U.UF.C.closure(function (obj) {
  3529. //防止拖动图标即打开了桌面应用
  3530. U.MD.D.click(this, obj);
  3531. }, [_xhlyTeacherDeskIconInfo[i]])
  3532. }, _frag); //
  3533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3536. }
  3537. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3538. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3539. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3540. continue
  3541. }
  3542. _content = $$("div", {
  3543. className: "U_MD_D_KO",
  3544. "onmousedown": U.UF.C.closure(function (obj) {
  3545. //防止拖动图标即打开了桌面应用
  3546. U.MD.D.click(this, obj);
  3547. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3548. "onclick": U.UF.C.closure(function (obj) {
  3549. //防止拖动图标即打开了桌面应用
  3550. U.MD.D.click(this, obj);
  3551. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3552. }, _frag); //
  3553. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3554. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3555. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3556. }
  3557. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3558. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3559. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3560. continue
  3561. }
  3562. _content = $$("div", {
  3563. className: "U_MD_D_KO",
  3564. "onmousedown": U.UF.C.closure(function (obj) {
  3565. //防止拖动图标即打开了桌面应用
  3566. U.MD.D.click(this, obj);
  3567. }, [_x010503TeacherDeskIconInfo[i]]),
  3568. "onclick": U.UF.C.closure(function (obj) {
  3569. //防止拖动图标即打开了桌面应用
  3570. U.MD.D.click(this, obj);
  3571. }, [_x010503TeacherDeskIconInfo[i]])
  3572. }, _frag); //
  3573. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3574. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3575. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3576. }
  3577. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  3578. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  3579. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3580. continue
  3581. }
  3582. _content = $$("div", {
  3583. className: "U_MD_D_KO",
  3584. "onmousedown": U.UF.C.closure(function (obj) {
  3585. //防止拖动图标即打开了桌面应用
  3586. U.MD.D.click(this, obj);
  3587. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  3588. "onclick": U.UF.C.closure(function (obj) {
  3589. //防止拖动图标即打开了桌面应用
  3590. U.MD.D.click(this, obj);
  3591. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  3592. }, _frag); //
  3593. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3594. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  3595. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  3596. }
  3597. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  3598. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  3599. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3600. continue
  3601. }
  3602. _content = $$("div", {
  3603. className: "U_MD_D_KO",
  3604. "onmousedown": U.UF.C.closure(function (obj) {
  3605. //防止拖动图标即打开了桌面应用
  3606. U.MD.D.click(this, obj);
  3607. }, [_x010608TeacherDeskIconInfo[i]]),
  3608. "onclick": U.UF.C.closure(function (obj) {
  3609. //防止拖动图标即打开了桌面应用
  3610. U.MD.D.click(this, obj);
  3611. }, [_x010608TeacherDeskIconInfo[i]])
  3612. }, _frag); //
  3613. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3614. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  3615. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  3616. }
  3617. } else {
  3618. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  3619. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  3620. continue
  3621. }
  3622. _content = $$("div", {
  3623. className: "U_MD_D_KO",
  3624. "onmousedown": U.UF.C.closure(function (obj) {
  3625. //防止拖动图标即打开了桌面应用
  3626. U.MD.D.click(this, obj);
  3627. }, [_teacherDesktopIconInfo[i]]),
  3628. "onclick": U.UF.C.closure(function (obj) {
  3629. //防止拖动图标即打开了桌面应用
  3630. U.MD.D.click(this, obj);
  3631. }, [_teacherDesktopIconInfo[i]])
  3632. }, _frag); //
  3633. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3634. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  3635. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  3636. }
  3637. }
  3638. } else {
  3639. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  3640. _content = $$("div", {
  3641. className: "U_MD_D_KO",
  3642. style: { 'width': '124px', 'height': '145px' },
  3643. "onmousedown": U.UF.C.closure(function (obj) {
  3644. //防止拖动图标即打开了桌面应用
  3645. U.MD.D.click(this, obj);
  3646. }, [_easyDesktopIconInfo[i]]),
  3647. "onclick": U.UF.C.closure(function (obj) {
  3648. //防止拖动图标即打开了桌面应用
  3649. U.MD.D.click(this, obj);
  3650. }, [_easyDesktopIconInfo[i]])
  3651. }, _frag); //
  3652. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  3653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  3654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  3655. }
  3656. }
  3657. if (type == 1) {
  3658. //加载好后给图标定位
  3659. U.MD.D.iconPostion($(_frag).Child());
  3660. } else {
  3661. //加载好后给图标定位
  3662. U.MD.D.iconPostion2($(_frag).Child());
  3663. }
  3664. //把图标加载到页面
  3665. el.appendChild(_frag);
  3666. }
  3667. /**
  3668. * 显示任务栏
  3669. *
  3670. * @param {element} 桌面元素
  3671. */
  3672. U.MD.D.I.displayTaskbar = function (el) {
  3673. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  3674. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  3675. //任务栏位置变化
  3676. U.selectEl(el).css({ "bottom": "0px" });
  3677. //桌面位置变话
  3678. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  3679. }
  3680. }
  3681. //#region 桌面图标拖动逻辑
  3682. /**
  3683. * 桌面排列图标
  3684. *
  3685. * @param {element} 桌面元素
  3686. * @param {object} 上下相距的距离
  3687. * @param {object} 左右相距的距离
  3688. * @return {object} 命名空间
  3689. */
  3690. U.MD.D.iconPostion = function (childs, top, left) {
  3691. var i; //用于循环处理
  3692. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  3693. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  3694. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3695. for (i = 0; i < childs.length; i++) {
  3696. //如果竖排top超过了范围处理
  3697. if (top + 95 > US.height - 10) {
  3698. //left超过了页面范围处理,则向上重叠打印处理
  3699. if ((left + 180) > US.width) {
  3700. top -= 110;
  3701. left -= 90;
  3702. }
  3703. //没有超过范围,那么left+90添加到下一个竖排打印
  3704. else {
  3705. left += 90;
  3706. top = 15;
  3707. };
  3708. }
  3709. //给图标的位置赋值
  3710. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  3711. if (i < childs.length - 1) {
  3712. //页面图标每次向下加95
  3713. top += 95;
  3714. }
  3715. }
  3716. //返回最后调用的图标的位置
  3717. return [top, left];
  3718. }
  3719. /**
  3720. * 桌面排列图标
  3721. *
  3722. * @param {element} 桌面元素
  3723. * @param {object} 上下相距的距离
  3724. * @param {object} 左右相距的距离
  3725. * @return {object} 命名空间
  3726. */
  3727. U.MD.D.iconPostion2 = function (childs, top, left) {
  3728. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  3729. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  3730. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  3731. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  3732. for (i = 0; i < childs.length; i++) {
  3733. //如果竖排top超过了范围处理
  3734. if (left + 150 > US.width - 10) {
  3735. //left超过了页面范围处理,则向上重叠打印处理
  3736. if ((top + 180) > US.Height) {
  3737. top -= 150;
  3738. left -= 150;
  3739. }
  3740. //没有超过范围,那么left+90添加到下一个竖排打印
  3741. else {
  3742. top += 150;
  3743. left = ol;
  3744. };
  3745. }
  3746. //给图标的位置赋值
  3747. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  3748. if (i < childs.length - 1) {
  3749. //页面图标每次向下加95
  3750. left += 150;
  3751. }
  3752. }
  3753. //返回最后调用的图标的位置
  3754. return [top, left];
  3755. }
  3756. /**
  3757. * 桌面点击事件逻辑
  3758. *
  3759. * @param {element} 桌面元素
  3760. * @param {object} 上下相距的距离
  3761. * @param {object} 左右相距的距离
  3762. * @return {object} 命名空间
  3763. */
  3764. U.MD.D.click = function (el, obj) {
  3765. var _buttonnumber = event.button; //点击的按钮的事件值
  3766. var _userinfo = US.userInfo;
  3767. U.UF.EV.stopBubble(); //阻止向上冒泡
  3768. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  3769. if (_buttonnumber < 2) {
  3770. //如果是click事件的处理
  3771. if (event.type == "click") {
  3772. //如果元素在mousemove事件中没有移动则出发click事件
  3773. if (!U.MD.D.I.IsDrag) {
  3774. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  3775. U.alert("请先登录您的账号!");
  3776. setTimeout(() => {
  3777. U.MD.U.L.login();
  3778. }, 2000);
  3779. } else {
  3780. //打开应用处理
  3781. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  3782. }
  3783. }
  3784. }
  3785. //如果是mouse事件的处理
  3786. else {
  3787. if (US.Config.type == '1') {
  3788. //拖动处理,添加拖动和拖动结束事件
  3789. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  3790. }
  3791. }
  3792. U.MD.D.I.IsDrag = false;
  3793. }
  3794. }
  3795. /**
  3796. * 拖动的处理
  3797. *
  3798. */
  3799. U.MD.D.iconMove = function () {
  3800. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  3801. U.MD.D.I.IsDrag = true;
  3802. }
  3803. /**
  3804. * 拖动结束后,这里是定位处理,以网状的形式定位
  3805. *
  3806. * @param {element} 拖动的元素
  3807. * @return {object} 命名空间
  3808. */
  3809. U.MD.D.iconUp = function (el) {
  3810. var _top = 15,
  3811. _left = 20,
  3812. _margin,
  3813. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  3814. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  3815. if (_positioninfo["OT"] > 15) {
  3816. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  3817. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  3818. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  3819. }
  3820. if (_positioninfo["OL"] > 20) {
  3821. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  3822. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  3823. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  3824. }
  3825. //while循环判断么一个重叠的元素
  3826. do {
  3827. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  3828. _top = _positioninfo[0] + 95; //得到定位后的top
  3829. _left = _positioninfo[1]; //得到定位后的left
  3830. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  3831. }
  3832. /**
  3833. * 判断拖动后图标是否重叠
  3834. *
  3835. * @param {element} 拖动的元素
  3836. * @param {element} 桌面所有的元素
  3837. * @param {array} 拖动元素的位置
  3838. ----------[0] 上 top
  3839. ----------[1] 左 left
  3840. * @return {object} 命名空间
  3841. */
  3842. U.MD.D.isOverlap = function (el, childs, postionarray) {
  3843. //循环所有的图标
  3844. for (var i = 0; i < childs.length; i++) {
  3845. //判断有没有和该图标诶子重叠的元素
  3846. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  3847. return childs[i]; //如果有返回
  3848. }
  3849. }
  3850. }
  3851. //#endregion
  3852. //#endregion
  3853. //#region 桌面应用
  3854. /**
  3855. * 打开应用
  3856. *
  3857. * @param {string} 类型
  3858. -----------------Disk 网盘系统
  3859. -----------------PDisk 学习系统网盘
  3860. -----------------Poto 图片
  3861. -----------------Video 视频
  3862. -----------------Music 音乐
  3863. -----------------Word word
  3864. -----------------Excel excel
  3865. -----------------Txt 记事本
  3866. -----------------PB 学习系统
  3867. -----------------Blog 朋友圈系统
  3868. -----------------FTP ftp系统
  3869. -----------------Group 好友群
  3870. -----------------SY 首页系统
  3871. -----------------Set 个人设置
  3872. -----------------XSet 系统设置
  3873. -----------------App 我们所有的app
  3874. -----------------BC c.1473.cn 平台
  3875. -----------------CWeb d.1473.cn 变成平台
  3876. -----------------其他的外联系统 我们统一用iframe打开
  3877. * @param {array} 类型
  3878. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  3879. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  3880. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  3881. 如果第一个参数为其他,则无第二个参数
  3882. * @returns {array}
  3883. */
  3884. window.addEventListener('message', function (e) { // 监听 message 事件
  3885. // alert(e.data.type);
  3886. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  3887. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  3888. //3是展示全部阶段 2学生 1老师 4专家
  3889. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  3890. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  3891. //3是展示全部阶段 2学生 1老师 4专家
  3892. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  3893. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  3894. //3是展示全部阶段 2学生 1老师 4专家
  3895. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  3896. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  3897. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  3898. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  3899. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  3900. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  3901. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  3902. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  3903. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  3904. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  3905. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  3906. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  3907. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  3908. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  3909. //3是展示全部阶段 2学生 1老师 4专家
  3910. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  3911. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  3912. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  3913. U.MD.D.I.selectUser();
  3914. } else if (e.data.allScreen && e.data.allScreen == "1") {
  3915. var _formel = document.getElementById("study");
  3916. U.UF.F.windowZooming(_formel);
  3917. } else if (e.data.allScreen && e.data.allScreen == "2") {
  3918. var _formel = document.getElementById("studyDetail");
  3919. U.UF.F.windowZooming(_formel);
  3920. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  3921. var _formel = document.getElementById("studyDetail");
  3922. U.UF.F.windowZooming(_formel);
  3923. } else if (e.data.allScreen && e.data.allScreen == "3") {
  3924. var _formel = document.getElementById("studentStudy");
  3925. U.UF.F.windowZooming(_formel);
  3926. } else if (e.data.allScreen && e.data.allScreen == "6") {
  3927. // var _formel = document.getElementById("study");
  3928. //如果最大化了,那么就把他缩小
  3929. // if (_formel.ismaximize) {
  3930. // return;
  3931. // }
  3932. // U.UF.F.windowZooming(_formel);
  3933. // U.UF.F.topWindow(_formel);
  3934. } else if (e.data.allScreen && e.data.allScreen == "4") {
  3935. // var _formel = document.getElementById("studyDetail");
  3936. //如果最大化了,那么就把他缩小
  3937. // if (_formel.ismaximize) {
  3938. // return;
  3939. // }
  3940. // U.UF.F.windowZooming(_formel);
  3941. // U.UF.F.topWindow(_formel);
  3942. } else if (e.data.allScreen && e.data.allScreen == "5") {
  3943. // var _formel = document.getElementById("studentStudy");
  3944. // if (_formel.ismaximize) {
  3945. // return;
  3946. // }
  3947. // U.UF.F.windowZooming(_formel);
  3948. // U.UF.F.topWindow(_formel);
  3949. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  3950. var _formel = document.getElementById("study");
  3951. // if (_formel.ismaximize) {
  3952. // return;
  3953. // }
  3954. // U.UF.F.windowZooming(_formel);
  3955. U.UF.F.topWindow(_formel);
  3956. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  3957. var _formel = document.getElementById("studentIndex");
  3958. U.UF.F.windowZooming(_formel);
  3959. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  3960. var _formel = document.getElementById("studyDetailS");
  3961. U.UF.F.windowZooming(_formel);
  3962. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  3963. var _formel = document.getElementById("studioIndex");
  3964. U.UF.F.windowZooming(_formel);
  3965. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  3966. var _formel = document.getElementById("studyDetailStudio");
  3967. U.UF.F.windowZooming(_formel);
  3968. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  3969. var _formel = document.getElementById("studyDetailStudio");
  3970. U.UF.F.windowZooming(_formel);
  3971. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  3972. var _formel = document.getElementById("studyDetailNT");
  3973. U.UF.F.windowZooming(_formel);
  3974. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  3975. var _formel = document.getElementById("studyDetailS");
  3976. U.UF.F.windowZooming(_formel);
  3977. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  3978. var _formel = document.getElementById("studyDetailS");
  3979. U.UF.F.topWindow(_formel);
  3980. } else if (e.data.tools && e.data.tools == "1") {
  3981. // U.MD.D.I.openApplication("whiteboard")
  3982. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3983. } else if (e.data.tools && e.data.tools == "2") {
  3984. U.MD.D.I.openApplication("note")
  3985. } else if (e.data.tools && e.data.tools == "3") {
  3986. // U.MD.D.I.openApplication("mind")
  3987. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3988. } else if (e.data.tools && e.data.tools == "4") {
  3989. U.MD.D.I.openApplication("investigation")
  3990. } else if (e.data.tools && e.data.tools == "6") {
  3991. // U.MD.D.I.openApplication("doc")
  3992. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3993. } else if (e.data.tools && e.data.tools == "7") {
  3994. // U.MD.D.I.openApplication("mindNetwork")
  3995. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  3996. } else if (e.data.tools && e.data.tools == "8") {
  3997. U.MD.D.I.openApplication("library")
  3998. } else if (e.data.tools && e.data.tools == "17") {
  3999. U.MD.D.I.openApplication("stuLibrary")
  4000. } else if (e.data.tools && e.data.tools == "18") {
  4001. U.MD.D.I.openApplication("train")
  4002. } else if (e.data.tools && e.data.tools == "21") {
  4003. U.MD.D.I.openApplication("program")
  4004. } else if (e.data.tools && e.data.tools == "22") {
  4005. U.MD.D.I.openApplication("AIprogram2")
  4006. } else if (e.data.tools && e.data.tools == "23") {
  4007. U.MD.D.I.openApplication("Pythonprogram")
  4008. } else if (e.data.tools && e.data.tools == "24") {
  4009. U.MD.D.I.openApplication("AIprogram")
  4010. } else if (e.data.tools && e.data.tools == "25") {
  4011. U.MD.D.I.openApplication("sys")
  4012. } else if (e.data.tools && e.data.tools == "26") {
  4013. // U.MD.D.I.openApplication("courseDesign")
  4014. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4015. } else if (e.data.tools && e.data.tools == "31") {
  4016. U.MD.D.I.openApplication("netWorkPanel")
  4017. } else if (e.data.tools && e.data.tools == "32") {
  4018. U.MD.D.I.openApplication("codeEdit")
  4019. } else if (e.data.tools && e.data.tools == "57") {
  4020. U.MD.D.I.openApplication("CocoPi")
  4021. } else if (e.data.tools && e.data.tools == "63") {
  4022. U.MD.D.I.openApplication("Wood")
  4023. } else if (e.data.tools && e.data.tools == "58") {
  4024. U.MD.D.I.openApplication("car")
  4025. } else if (e.data.tools && e.data.tools == "59") {
  4026. U.MD.D.I.openApplication("lineSearch")
  4027. } else if (e.data.tools && e.data.tools == "60") {
  4028. U.MD.D.I.openApplication("deepLearning")
  4029. } else if (e.data.tools && e.data.tools == "61") {
  4030. U.MD.D.I.openApplication("allHistory")
  4031. } else if (e.data.tools && e.data.tools == "28") {
  4032. U.MD.D.I.openApplication("translation")
  4033. } else if (e.data.tools && e.data.tools == "37") {
  4034. U.MD.D.I.openApplication("mohe")
  4035. } else if (e.data.tools && e.data.tools == "38") {
  4036. U.MD.D.I.openApplication("24game")
  4037. } else if (e.data.tools && e.data.tools == "39") {
  4038. U.MD.D.I.openApplication("GeoGebra")
  4039. } else if (e.data.tools && e.data.tools == "43") {
  4040. U.MD.D.I.openApplication("studentEvaluate")
  4041. } else if (e.data.tools && e.data.tools == "44") {
  4042. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4043. } else if (e.data.tools && e.data.tools == "46") {
  4044. U.MD.D.I.openApplication("project")
  4045. } else if (e.data.tools && e.data.tools == "71") {
  4046. U.MD.D.I.openApplication("aigptCourse")
  4047. } else if (e.data.tools && e.data.tools == "1s") {
  4048. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4049. } else if (e.data.tools && e.data.tools == "3s") {
  4050. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4051. } else if (e.data.tools && e.data.tools == "6s") {
  4052. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4053. } else if (e.data.tools && e.data.tools == "1studio") {
  4054. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4055. } else if (e.data.tools && e.data.tools == "3studio") {
  4056. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4057. } else if (e.data.tools && e.data.tools == "6studio") {
  4058. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4059. } else if (e.data.tools && e.data.tools == "3y") {
  4060. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4061. } else if (e.data.tools && e.data.tools == "1y") {
  4062. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4063. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4064. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4065. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4066. U.MD.D.I.openApplication("AIAnalyse")
  4067. } else if (e.data.tools && e.data.tools == "1teacher") {
  4068. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4069. } else if (e.data.tools && e.data.tools == "3teacher") {
  4070. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4071. } else if (e.data.tools && e.data.tools == "7teacher") {
  4072. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4073. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4074. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4075. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4076. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4077. } else if (e.data.tools && e.data.tools == "1E") {
  4078. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4079. } else if (e.data.tools && e.data.tools == "3E") {
  4080. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4081. } else if (e.data.tools && e.data.tools == "57y") {
  4082. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4083. } else if (e.data.tools && e.data.tools == "57u") {
  4084. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4085. } else if (e.data.tools && e.data.tools == "57teacher") {
  4086. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4087. } else if (e.data.tools && e.data.tools == "64") {
  4088. U.MD.D.I.openApplication("AIChat")
  4089. } else if (e.data.tools && e.data.tools == "66") {
  4090. U.MD.D.I.openApplication("formulaEdi")
  4091. } else if (e.data.tools && e.data.tools == "67") {
  4092. U.MD.D.I.openApplication("molStr")
  4093. } else if (e.data.tools && e.data.tools == "68") {
  4094. U.MD.D.I.openApplication("timeAxis")
  4095. } else if (e.data.tools && e.data.tools == "openCourse") {
  4096. let _data = {
  4097. typea: e.data.typea || '',
  4098. typeb: e.data.typeb || '',
  4099. typed: e.data.typed || '',
  4100. }
  4101. U.MD.D.I.openInApplication("index", _data)
  4102. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4103. let _data = {
  4104. classid: e.data.classid || '',
  4105. }
  4106. U.MD.D.I.openInApplication("dataClass", _data)
  4107. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4108. let _data = {
  4109. cid: e.data.cid || '',
  4110. gid: e.data.gid || '',
  4111. }
  4112. U.MD.D.I.openInApplication("opencCscl", _data)
  4113. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4114. U.MD.D.I.openApplication("dataBoardTest")
  4115. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4116. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4117. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4118. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4119. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4120. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4121. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4122. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4123. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4124. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4125. }else if (e.data.tools && e.data.tools == "loginSz") {
  4126. U.MD.D.I.openInApplication("loginSz")
  4127. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4128. if($('#classroom_observation_board')[0]){
  4129. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4130. }
  4131. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4132. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4133. if($('#classroom_observation_ob_comment')[0]){
  4134. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4135. }
  4136. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4137. }
  4138. });
  4139. U.MD.D.I.selectUser = function () {
  4140. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4141. if (res.value[0].length > 0) {
  4142. US.userInfo = res.value[0][0];
  4143. $(".userName")[0].innerHTML = US.userInfo.username;
  4144. }
  4145. }, [], { "type": "GET", "withCredentials": true });
  4146. }
  4147. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4148. var _userinfo = US.userInfo, //登录用户信息
  4149. _userid = US.userInfo.userid, //登录用户id
  4150. _oid = _userinfo.organizeid,
  4151. _type = US.userInfo.type,
  4152. _org = US.userInfo.org,
  4153. _role = US.userInfo.role,
  4154. _classId = US.userInfo.classid;
  4155. if (_type == 4) {
  4156. tType = 4
  4157. }
  4158. switch (str) {
  4159. case "studyDetailNT": //无终端模式
  4160. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4161. setTimeout(() => {
  4162. U.MD.U.L.login();
  4163. }, 2000);
  4164. } else {
  4165. _formdiv = new U.UF.UI.form(
  4166. "课程详情",
  4167. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailNT?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4168. "id": "studyDetailNT",
  4169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4170. "onresize": function () { }
  4171. }, {
  4172. closecallback: function () { }
  4173. }, { "style": { "height": "36px" } }).form; //创建窗体
  4174. _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); } }
  4175. break;
  4176. }
  4177. case "studyDetail":
  4178. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4179. setTimeout(() => {
  4180. U.MD.U.L.login();
  4181. }, 2000);
  4182. } else {
  4183. _formdiv = new U.UF.UI.form(
  4184. "课程详情",
  4185. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetail?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4186. "id": "studyDetail",
  4187. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4188. "onresize": function () { }
  4189. }, {
  4190. closecallback: function () { }
  4191. }, { "style": { "height": "36px" } }).form; //创建窗体
  4192. _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); } }
  4193. break;
  4194. }
  4195. case "studyDetailTrain":
  4196. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4197. setTimeout(() => {
  4198. U.MD.U.L.login();
  4199. }, 2000);
  4200. } else {
  4201. _formdiv = new U.UF.UI.form(
  4202. "培训详情",
  4203. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailTrain?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4204. "id": "studyDetailTrain",
  4205. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4206. "onresize": function () { }
  4207. }, {
  4208. closecallback: function () { }
  4209. }, { "style": { "height": "36px" } }).form; //创建窗体
  4210. _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); } }
  4211. break;
  4212. }
  4213. case "studyDetailS":
  4214. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4215. setTimeout(() => {
  4216. U.MD.U.L.login();
  4217. }, 2000);
  4218. } else {
  4219. _formdiv = new U.UF.UI.form(
  4220. "项目详情",
  4221. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4222. "id": "studyDetailS",
  4223. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4224. "onresize": function () { }
  4225. }, {
  4226. closecallback: function () { }
  4227. }, { "style": { "height": "36px" } }).form; //创建窗体
  4228. _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); } }
  4229. break;
  4230. }
  4231. case "studyDetailStudio":
  4232. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4233. setTimeout(() => {
  4234. U.MD.U.L.login();
  4235. }, 2000);
  4236. } else {
  4237. _formdiv = new U.UF.UI.form(
  4238. "工作详情",
  4239. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailStudio?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4240. "id": "studyDetailStudio",
  4241. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4242. "onresize": function () { }
  4243. }, {
  4244. closecallback: function () { }
  4245. }, { "style": { "height": "36px" } }).form; //创建窗体
  4246. _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); } }
  4247. break;
  4248. }
  4249. case "studyDetailS5":
  4250. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4251. setTimeout(() => {
  4252. U.MD.U.L.login();
  4253. }, 2000);
  4254. } else {
  4255. _formdiv = new U.UF.UI.form(
  4256. "项目详情",
  4257. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studyStudentS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4258. "id": "studyDetailS",
  4259. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4260. "onresize": function () { }
  4261. }, {
  4262. closecallback: function () { }
  4263. }, { "style": { "height": "36px" } }).form; //创建窗体
  4264. _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); } }
  4265. break;
  4266. }
  4267. case "studyDetailGM":
  4268. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4269. setTimeout(() => {
  4270. U.MD.U.L.login();
  4271. }, 2000);
  4272. } else {
  4273. _formdiv = new U.UF.UI.form(
  4274. "课程详情",
  4275. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/courseDetailGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&courseId=" + data + "&tType=" + tType + "&cid=" + _classId + "&screenType=" + screenType }), {
  4276. "id": "studyDetail",
  4277. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4278. "onresize": function () { }
  4279. }, {
  4280. closecallback: function () { }
  4281. }, { "style": { "height": "36px" } }).form; //创建窗体
  4282. _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); } }
  4283. break;
  4284. }
  4285. case "hanUrl":
  4286. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4287. setTimeout(() => {
  4288. U.MD.U.L.login();
  4289. }, 2000);
  4290. } else {
  4291. _formdiv = new U.UF.UI.form(
  4292. "汉字宫",
  4293. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//school.hanzigon.cn/?appid=734714090237947#/material/video?grade_id=62&lesson_code=621&id=2432" }), {
  4294. "id": "hanUrl",
  4295. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4296. "onresize": function () { }
  4297. }, {
  4298. closecallback: function () { }
  4299. }, { "style": { "height": "36px" } }).form; //创建窗体
  4300. _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); } }
  4301. break;
  4302. }
  4303. case "index":
  4304. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4305. setTimeout(() => {
  4306. U.MD.U.L.login();
  4307. }, 2000);
  4308. } else {
  4309. _formdiv = new U.UF.UI.form(
  4310. "课程中心",
  4311. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=2" + "&typea=" + data.typea + "&typeb=" + data.typeb + "&typed=" + data.typed }), {
  4312. "id": "study",
  4313. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4314. "onresize": function () { }
  4315. }, {
  4316. closecallback: function () { }
  4317. }, { "style": { "height": "36px" } }).form; //创建窗体
  4318. _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); } }
  4319. break;
  4320. }
  4321. case "dataClass":
  4322. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4323. setTimeout(() => {
  4324. U.MD.U.L.login();
  4325. }, 2000);
  4326. } else {
  4327. _formdiv = new U.UF.UI.form(
  4328. "数据报告",
  4329. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/worksReport?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&cid=" + _classId + "&checkid=" + data.classid }), {
  4330. "id": "dataClass",
  4331. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4332. "onresize": function () { }
  4333. }, {
  4334. closecallback: function () { }
  4335. }, { "style": { "height": "36px" } }).form; //创建窗体
  4336. _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); } }
  4337. break;
  4338. }
  4339. case "opencCscl":
  4340. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4341. setTimeout(() => {
  4342. U.MD.U.L.login();
  4343. }, 2000);
  4344. } else {
  4345. _formdiv = new U.UF.UI.form(
  4346. "协同建构",
  4347. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cscl.cocorobo.cn?cid=" + data.cid + "&gid=" + data.gid }), {
  4348. "id": "futureClass",
  4349. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4350. "onresize": function () { }
  4351. }, {
  4352. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4353. }, { "style": { "height": "36px" } }).form; //创建窗体
  4354. _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); } }
  4355. break;
  4356. }
  4357. case "openCourseUpdate":
  4358. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4359. setTimeout(() => {
  4360. U.MD.U.L.login();
  4361. }, 2000);
  4362. } else {
  4363. _formdiv = new U.UF.UI.form(
  4364. "课程管理",
  4365. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4366. "id": "openCourseUpdate",
  4367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4368. "onresize": function () { }
  4369. }, {
  4370. closecallback: function () { }
  4371. }, { "style": { "height": "36px" } }).form; //创建窗体
  4372. break;
  4373. }
  4374. case "openNewCourseUpdate":
  4375. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4376. setTimeout(() => {
  4377. U.MD.U.L.login();
  4378. }, 2000);
  4379. } else {
  4380. _formdiv = new U.UF.UI.form(
  4381. "课程管理",
  4382. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4383. "id": "openCourseUpdate",
  4384. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4385. "onresize": function () { }
  4386. }, {
  4387. closecallback: function () { }
  4388. }, { "style": { "height": "36px" } }).form; //创建窗体
  4389. break;
  4390. }
  4391. case "openCourseEUpdate":
  4392. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4393. setTimeout(() => {
  4394. U.MD.U.L.login();
  4395. }, 2000);
  4396. } else {
  4397. _formdiv = new U.UF.UI.form(
  4398. "课程管理",
  4399. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course/addCourseE?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4400. "id": "openCourseUpdate",
  4401. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4402. "onresize": function () { }
  4403. }, {
  4404. closecallback: function () { }
  4405. }, { "style": { "height": "36px" } }).form; //创建窗体
  4406. break;
  4407. }
  4408. case "openCourseAiUpdate":
  4409. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4410. setTimeout(() => {
  4411. U.MD.U.L.login();
  4412. }, 2000);
  4413. } else {
  4414. _formdiv = new U.UF.UI.form(
  4415. "课程管理",
  4416. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/aiAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4417. "id": "openCourseUpdate",
  4418. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4419. "onresize": function () { }
  4420. }, {
  4421. closecallback: function () { }
  4422. }, { "style": { "height": "36px" } }).form; //创建窗体
  4423. break;
  4424. }
  4425. case "openCourseNewUpdate":
  4426. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4427. setTimeout(() => {
  4428. U.MD.U.L.login();
  4429. }, 2000);
  4430. } else {
  4431. _formdiv = new U.UF.UI.form(
  4432. "课程管理",
  4433. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/newAddCourse?cid=" + data + "&userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4434. "id": "openCourseUpdate",
  4435. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4436. "onresize": function () { }
  4437. }, {
  4438. closecallback: function () { }
  4439. }, { "style": { "height": "36px" } }).form; //创建窗体
  4440. break;
  4441. }
  4442. case "inviteLoginSz":
  4443. _formdiv = new U.UF.UI.form(
  4444. "随机码登录",
  4445. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/inviteLoginSZ?code=" + data }), {
  4446. "id": "loginSz",
  4447. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4448. "onresize": function () { }
  4449. }, {
  4450. closecallback: function () { }
  4451. }, { "style": { "height": "36px" } }).form; //创建窗体
  4452. break;
  4453. case "loginSz":
  4454. _formdiv = new U.UF.UI.form(
  4455. "教师登录",
  4456. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  4457. "id": "loginSz",
  4458. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4459. "onresize": function () { }
  4460. }, {
  4461. closecallback: function () { }
  4462. }, { "style": { "height": "36px" } }).form; //创建窗体
  4463. break;
  4464. case "teacher":
  4465. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4466. setTimeout(() => {
  4467. U.MD.U.L.login();
  4468. }, 2000);
  4469. } else {
  4470. _formdiv = new U.UF.UI.form(
  4471. "教师管理",
  4472. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/teacher?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4473. "id": "teacher",
  4474. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4475. "onresize": function () { }
  4476. }, {
  4477. closecallback: function () { }
  4478. }, { "style": { "height": "36px" } }).form; //创建窗体
  4479. break;
  4480. }
  4481. case "dataBoardSZArea":
  4482. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4483. setTimeout(() => {
  4484. U.MD.U.L.login();
  4485. }, 2000);
  4486. } else {
  4487. _formdiv = new U.UF.UI.form(
  4488. "综合数据看板",
  4489. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardArea?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4490. "id": "dataBoardSZArea",
  4491. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4492. "onresize": function () { }
  4493. }, {
  4494. closecallback: function () { }
  4495. }, { "style": { "height": "36px" } }).form; //创建窗体
  4496. break;
  4497. }
  4498. case "dataBoardSZCity":
  4499. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4500. setTimeout(() => {
  4501. U.MD.U.L.login();
  4502. }, 2000);
  4503. } else {
  4504. _formdiv = new U.UF.UI.form(
  4505. "综合数据看板",
  4506. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/sz/dataBoardCity?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  4507. "id": "dataBoardSZCity",
  4508. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4509. "onresize": function () { }
  4510. }, {
  4511. closecallback: function () { }
  4512. }, { "style": { "height": "36px" } }).form; //创建窗体
  4513. break;
  4514. }
  4515. case "classroom_observation_board":
  4516. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4517. setTimeout(() => {
  4518. U.MD.U.L.login();
  4519. }, 2000);
  4520. } else {
  4521. _formdiv = new U.UF.UI.form(
  4522. "课堂观察",
  4523. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_board?tid="+data }), {
  4524. "id": "classroom_observation_board",
  4525. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4526. "onresize": function () { }
  4527. }, {
  4528. closecallback: function () { }
  4529. }, { "style": { "height": "36px" } }).form; //创建窗体
  4530. break;
  4531. }
  4532. case "classroom_observation_ob_comment":
  4533. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4534. setTimeout(() => {
  4535. U.MD.U.L.login();
  4536. }, 2000);
  4537. } else {
  4538. _formdiv = new U.UF.UI.form(
  4539. "课堂审核",
  4540. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/classroom_observation_ob_comment?tid="+data }), {
  4541. "id": "classroom_observation_ob_comment",
  4542. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4543. "onresize": function () { }
  4544. }, {
  4545. closecallback: function () { }
  4546. }, { "style": { "height": "36px" } }).form; //创建窗体
  4547. break;
  4548. }
  4549. }
  4550. }
  4551. U.MD.D.I.openApplication = function (str, obj, info) {
  4552. obj = obj || {};
  4553. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  4554. _formdiv, //创建任务栏时同时弹出的窗体元素。
  4555. _userinfo = US.userInfo, //登录用户信息
  4556. _userid = obj.userid || US.userInfo.userid, //登录用户id
  4557. _oid = obj.organizeid || _userinfo.organizeid,
  4558. _type = US.userInfo.type,
  4559. _org = US.userInfo.org,
  4560. _role = US.userInfo.role,
  4561. _classId = US.userInfo.classid,
  4562. _TscreenType = 1
  4563. _screenType = 2,
  4564. _SscreenType = 3;
  4565. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  4566. return;
  4567. }
  4568. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4569. switch (str) {
  4570. case "studnetProject": //好友打开
  4571. _formdiv = new U.UF.UI.form(
  4572. "我的项目",
  4573. $$("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 }), {
  4574. "id": "studnetProject",
  4575. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4576. "onresize": function () { }
  4577. }, {
  4578. closecallback: function () { }
  4579. }, { "style": { "height": "36px" } }).form; //创建窗体
  4580. _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); } }
  4581. break;
  4582. case "studentEvaluate": //好友打开
  4583. _formdiv = new U.UF.UI.form(
  4584. "我的评价",
  4585. $$("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 }), {
  4586. "id": "studentEvaluate",
  4587. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4588. "onresize": function () { }
  4589. }, {
  4590. closecallback: function () { }
  4591. }, { "style": { "height": "36px" } }).form; //创建窗体
  4592. _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); } }
  4593. break;
  4594. case "my":
  4595. _formdiv = new U.UF.UI.form(
  4596. "我的资料",
  4597. $$("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 }), {
  4598. "id": "my",
  4599. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4600. "onresize": function () { }
  4601. }, {
  4602. closecallback: function () { }
  4603. }, { "style": { "height": "36px" } }).form; //创建窗体
  4604. _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); } }
  4605. break;
  4606. case "program":
  4607. _formdiv = new U.UF.UI.form(
  4608. "编程平台",
  4609. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4610. "id": "program",
  4611. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4612. "onresize": function () { }
  4613. }, {
  4614. closecallback: function () { }
  4615. }, { "style": { "height": "36px" } }).form; //创建窗体
  4616. _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); } }
  4617. break;
  4618. case "library":
  4619. _formdiv = new U.UF.UI.form(
  4620. "素材库",
  4621. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4622. "id": "library",
  4623. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4624. "onresize": function () { }
  4625. }, {
  4626. closecallback: function () { }
  4627. }, { "style": { "height": "36px" } }).form; //创建窗体
  4628. _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); } }
  4629. break;
  4630. case "whiteboard":
  4631. _formdiv = new U.UF.UI.form(
  4632. "电子白板",
  4633. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4634. "id": "whiteboard",
  4635. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4636. "onresize": function () { }
  4637. }, {
  4638. closecallback: function () { }
  4639. }, { "style": { "height": "36px" } }).form; //创建窗体
  4640. _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); } }
  4641. break;
  4642. case "investigation":
  4643. _formdiv = new U.UF.UI.form(
  4644. "问卷调查",
  4645. $$("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 }), {
  4646. "id": "investigation",
  4647. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4648. "onresize": function () { }
  4649. }, {
  4650. closecallback: function () { }
  4651. }, { "style": { "height": "36px" } }).form; //创建窗体
  4652. _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); } }
  4653. break;
  4654. case "note":
  4655. _formdiv = new U.UF.UI.form(
  4656. "便签分类",
  4657. $$("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 }), {
  4658. "id": "note",
  4659. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4660. "onresize": function () { }
  4661. }, {
  4662. closecallback: function () { }
  4663. }, { "style": { "height": "36px" } }).form; //创建窗体
  4664. _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); } }
  4665. break;
  4666. // case "score":
  4667. // _formdiv = new U.UF.UI.form(
  4668. // "量规评分",
  4669. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4670. // "id": "score",
  4671. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4672. // "onresize": function() {}
  4673. // }, {
  4674. // closecallback: function() {}
  4675. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4676. // _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); } }
  4677. // break;
  4678. case "mind":
  4679. _formdiv = new U.UF.UI.form(
  4680. "思维导图",
  4681. $$("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"
  4682. "id": "mind",
  4683. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4684. "onresize": function () { }
  4685. }, {
  4686. closecallback: function () { }
  4687. }, { "style": { "height": "36px" } }).form; //创建窗体
  4688. _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); } }
  4689. break;
  4690. case "doc":
  4691. // U.MD.D.I.isRoom();
  4692. _formdiv = new U.UF.UI.form(
  4693. "协同文档",
  4694. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  4695. "id": "doc",
  4696. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4697. "onresize": function () { }
  4698. }, {
  4699. closecallback: function () { }
  4700. }, { "style": { "height": "36px" } }).form; //创建窗体
  4701. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4702. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4703. // })
  4704. _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); } }
  4705. break;
  4706. case "studentStudy":
  4707. _formdiv = new U.UF.UI.form(
  4708. "课程中心",
  4709. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4710. "id": "studentStudy",
  4711. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4712. "onresize": function () { }
  4713. }, {
  4714. closecallback: function () { }
  4715. }, { "style": { "height": "36px" } }).form; //创建窗体
  4716. _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); } }
  4717. break;
  4718. case "train": //好友打开
  4719. _formdiv = new U.UF.UI.form(
  4720. "训练平台",
  4721. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4722. "id": "train",
  4723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4724. "onresize": function () { }
  4725. }, {
  4726. closecallback: function () { }
  4727. }, { "style": { "height": "36px" } }).form; //创建窗体
  4728. _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); } }
  4729. break;
  4730. case "mindNetwork": //好友打开
  4731. _formdiv = new U.UF.UI.form(
  4732. "思维网格",
  4733. $$("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 }), {
  4734. "id": "mindNetwork",
  4735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4736. "onresize": function () { }
  4737. }, {
  4738. closecallback: function () { }
  4739. }, { "style": { "height": "36px" } }).form; //创建窗体
  4740. _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); } }
  4741. break;
  4742. case "studentClassRoom": //好友打开
  4743. _formdiv = new U.UF.UI.form(
  4744. "实时课堂",
  4745. $$("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 }), {
  4746. "id": "studentClassRoom",
  4747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4748. "onresize": function () { }
  4749. }, {
  4750. closecallback: function () { }
  4751. }, { "style": { "height": "36px" } }).form; //创建窗体
  4752. _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); } }
  4753. setTimeout(() => {
  4754. U.UF.F.windowZooming(_formdiv)
  4755. }, 0);
  4756. break;
  4757. }
  4758. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  4759. switch (str) {
  4760. case "studnetProject": //好友打开
  4761. _formdiv = new U.UF.UI.form(
  4762. "我的项目",
  4763. $$("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 }), {
  4764. "id": "studnetProject",
  4765. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4766. "onresize": function () { }
  4767. }, {
  4768. closecallback: function () { }
  4769. }, { "style": { "height": "36px" } }).form; //创建窗体
  4770. _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); } }
  4771. break;
  4772. case "studentEvaluate": //好友打开
  4773. _formdiv = new U.UF.UI.form(
  4774. "我的评价",
  4775. $$("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 }), {
  4776. "id": "studentEvaluate",
  4777. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4778. "onresize": function () { }
  4779. }, {
  4780. closecallback: function () { }
  4781. }, { "style": { "height": "36px" } }).form; //创建窗体
  4782. _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); } }
  4783. break;
  4784. case "my":
  4785. _formdiv = new U.UF.UI.form(
  4786. "我的资料",
  4787. $$("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 }), {
  4788. "id": "my",
  4789. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  4790. "onresize": function () { }
  4791. }, {
  4792. closecallback: function () { }
  4793. }, { "style": { "height": "36px" } }).form; //创建窗体
  4794. _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); } }
  4795. break;
  4796. case "program":
  4797. _formdiv = new U.UF.UI.form(
  4798. "编程平台",
  4799. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  4800. "id": "program",
  4801. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  4802. "onresize": function () { }
  4803. }, {
  4804. closecallback: function () { }
  4805. }, { "style": { "height": "36px" } }).form; //创建窗体
  4806. _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); } }
  4807. break;
  4808. case "library":
  4809. _formdiv = new U.UF.UI.form(
  4810. "素材库",
  4811. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  4812. "id": "library",
  4813. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4814. "onresize": function () { }
  4815. }, {
  4816. closecallback: function () { }
  4817. }, { "style": { "height": "36px" } }).form; //创建窗体
  4818. _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); } }
  4819. break;
  4820. case "whiteboard":
  4821. _formdiv = new U.UF.UI.form(
  4822. "电子白板",
  4823. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  4824. "id": "whiteboard",
  4825. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4826. "onresize": function () { }
  4827. }, {
  4828. closecallback: function () { }
  4829. }, { "style": { "height": "36px" } }).form; //创建窗体
  4830. _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); } }
  4831. break;
  4832. case "investigation":
  4833. _formdiv = new U.UF.UI.form(
  4834. "问卷调查",
  4835. $$("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 }), {
  4836. "id": "investigation",
  4837. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4838. "onresize": function () { }
  4839. }, {
  4840. closecallback: function () { }
  4841. }, { "style": { "height": "36px" } }).form; //创建窗体
  4842. _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); } }
  4843. break;
  4844. case "note":
  4845. _formdiv = new U.UF.UI.form(
  4846. "便签分类",
  4847. $$("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 }), {
  4848. "id": "note",
  4849. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  4850. "onresize": function () { }
  4851. }, {
  4852. closecallback: function () { }
  4853. }, { "style": { "height": "36px" } }).form; //创建窗体
  4854. _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); } }
  4855. break;
  4856. // case "score":
  4857. // _formdiv = new U.UF.UI.form(
  4858. // "量规评分",
  4859. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  4860. // "id": "score",
  4861. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4862. // "onresize": function() {}
  4863. // }, {
  4864. // closecallback: function() {}
  4865. // }, { "style": { "height": "36px" } }).form; //创建窗体
  4866. // _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); } }
  4867. // break;
  4868. case "mind":
  4869. _formdiv = new U.UF.UI.form(
  4870. "思维导图",
  4871. $$("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"
  4872. "id": "mind",
  4873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4874. "onresize": function () { }
  4875. }, {
  4876. closecallback: function () { }
  4877. }, { "style": { "height": "36px" } }).form; //创建窗体
  4878. _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); } }
  4879. break;
  4880. case "doc":
  4881. // U.MD.D.I.isRoom();
  4882. _formdiv = new U.UF.UI.form(
  4883. "协同文档",
  4884. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  4885. "id": "doc",
  4886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4887. "onresize": function () { }
  4888. }, {
  4889. closecallback: function () { }
  4890. }, { "style": { "height": "36px" } }).form; //创建窗体
  4891. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  4892. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  4893. })
  4894. _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); } }
  4895. break;
  4896. case "train": //好友打开
  4897. _formdiv = new U.UF.UI.form(
  4898. "训练平台",
  4899. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  4900. "id": "train",
  4901. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4902. "onresize": function () { }
  4903. }, {
  4904. closecallback: function () { }
  4905. }, { "style": { "height": "36px" } }).form; //创建窗体
  4906. _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); } }
  4907. break;
  4908. case "studentStudy":
  4909. _formdiv = new U.UF.UI.form(
  4910. "课程中心",
  4911. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _SscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  4912. "id": "studentStudy",
  4913. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4914. "onresize": function () { }
  4915. }, {
  4916. closecallback: function () { }
  4917. }, { "style": { "height": "36px" } }).form; //创建窗体
  4918. _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); } }
  4919. break;
  4920. case "mindNetwork": //好友打开
  4921. _formdiv = new U.UF.UI.form(
  4922. "思维网格",
  4923. $$("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 }), {
  4924. "id": "mindNetwork",
  4925. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4926. "onresize": function () { }
  4927. }, {
  4928. closecallback: function () { }
  4929. }, { "style": { "height": "36px" } }).form; //创建窗体
  4930. _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); } }
  4931. break;
  4932. case "studentClassRoom": //好友打开
  4933. _formdiv = new U.UF.UI.form(
  4934. "实时课堂",
  4935. $$("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 }), {
  4936. "id": "studentClassRoom",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. _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); } }
  4943. setTimeout(() => {
  4944. U.UF.F.windowZooming(_formdiv)
  4945. }, 0);
  4946. break;
  4947. }
  4948. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  4949. //选择应用处理
  4950. switch (str) {
  4951. case "project": //好友打开
  4952. _formdiv = new U.UF.UI.form(
  4953. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  4954. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  4955. "id": "project",
  4956. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4957. "onresize": function () { }
  4958. }, {
  4959. closecallback: function () { }
  4960. }, { "style": { "height": "36px" } }).form; //创建窗体
  4961. _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); } }
  4962. break;
  4963. case "student":
  4964. _formdiv = new U.UF.UI.form(
  4965. "学生管理",
  4966. $$("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 }), {
  4967. "id": "student",
  4968. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4969. "onresize": function () { }
  4970. }, {
  4971. closecallback: function () { }
  4972. }, { "style": { "height": "36px" } }).form; //创建窗体
  4973. _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); } }
  4974. break;
  4975. case "evaluate":
  4976. _formdiv = new U.UF.UI.form(
  4977. "学生评价",
  4978. $$("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 }), {
  4979. "id": "evaluate",
  4980. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4981. "onresize": function () { }
  4982. }, {
  4983. closecallback: function () { }
  4984. }, { "style": { "height": "36px" } }).form; //创建窗体
  4985. _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); } }
  4986. break;
  4987. case "sys":
  4988. _formdiv = new U.UF.UI.form(
  4989. "目标管理",
  4990. $$("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 }), {
  4991. "id": "sys",
  4992. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4993. "onresize": function () { }
  4994. }, {
  4995. closecallback: function () { }
  4996. }, { "style": { "height": "36px" } }).form; //创建窗体
  4997. _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); } }
  4998. break;
  4999. case "courseDesign":
  5000. _formdiv = new U.UF.UI.form(
  5001. "项目设计",
  5002. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5003. "id": "courseDesign",
  5004. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5005. "onresize": function () { }
  5006. }, {
  5007. closecallback: function () { }
  5008. }, { "style": { "height": "36px" } }).form; //创建窗体
  5009. _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); } }
  5010. break;
  5011. case "program":
  5012. _formdiv = new U.UF.UI.form(
  5013. "编程平台",
  5014. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5015. "id": "program",
  5016. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5017. "onresize": function () { }
  5018. }, {
  5019. closecallback: function () { }
  5020. }, { "style": { "height": "36px" } }).form; //创建窗体
  5021. _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); } }
  5022. break;
  5023. case "class":
  5024. _formdiv = new U.UF.UI.form(
  5025. "班级管理",
  5026. $$("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 }), {
  5027. "id": "class",
  5028. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5029. "onresize": function () { }
  5030. }, {
  5031. closecallback: function () { }
  5032. }, { "style": { "height": "36px" } }).form; //创建窗体
  5033. _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); } }
  5034. break;
  5035. case "Grade":
  5036. _formdiv = new U.UF.UI.form(
  5037. "年级管理",
  5038. $$("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 }), {
  5039. "id": "Grade",
  5040. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5041. "onresize": function () { }
  5042. }, {
  5043. closecallback: function () { }
  5044. }, { "style": { "height": "36px" } }).form; //创建窗体
  5045. _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); } }
  5046. break;
  5047. case "teacherOffice":
  5048. _formdiv = new U.UF.UI.form(
  5049. "教研室",
  5050. $$("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 }), {
  5051. "id": "teacherOffice",
  5052. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5053. "onresize": function () { }
  5054. }, {
  5055. closecallback: function () { }
  5056. }, { "style": { "height": "36px" } }).form; //创建窗体
  5057. _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); } }
  5058. break;
  5059. case "my":
  5060. _formdiv = new U.UF.UI.form(
  5061. "我的资料",
  5062. $$("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 }), {
  5063. "id": "my",
  5064. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5065. "onresize": function () { }
  5066. }, {
  5067. closecallback: function () { }
  5068. }, { "style": { "height": "36px" } }).form; //创建窗体
  5069. _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); } }
  5070. break;
  5071. case "notice":
  5072. _formdiv = new U.UF.UI.form(
  5073. "通知公告",
  5074. $$("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 }), {
  5075. "id": "notice",
  5076. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5077. "onresize": function () { }
  5078. }, {
  5079. closecallback: function () { }
  5080. }, { "style": { "height": "36px" } }).form; //创建窗体
  5081. _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); } }
  5082. break;
  5083. case "library":
  5084. _formdiv = new U.UF.UI.form(
  5085. "素材库",
  5086. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/library?userid=" + _userid + "&org=" + _org }), {
  5087. "id": "library",
  5088. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5089. "onresize": function () { }
  5090. }, {
  5091. closecallback: function () { }
  5092. }, { "style": { "height": "36px" } }).form; //创建窗体
  5093. _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); } }
  5094. break;
  5095. case "whiteboard":
  5096. _formdiv = new U.UF.UI.form(
  5097. "电子白板",
  5098. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5099. "id": "whiteboard",
  5100. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5101. "onresize": function () { }
  5102. }, {
  5103. closecallback: function () { }
  5104. }, { "style": { "height": "36px" } }).form; //创建窗体
  5105. _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); } }
  5106. break;
  5107. case "investigation":
  5108. _formdiv = new U.UF.UI.form(
  5109. "问卷调查",
  5110. $$("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 }), {
  5111. "id": "investigation",
  5112. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5113. "onresize": function () { }
  5114. }, {
  5115. closecallback: function () { }
  5116. }, { "style": { "height": "36px" } }).form; //创建窗体
  5117. _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); } }
  5118. break;
  5119. case "note":
  5120. _formdiv = new U.UF.UI.form(
  5121. "便签分类",
  5122. $$("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 }), {
  5123. "id": "note",
  5124. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5125. "onresize": function () { }
  5126. }, {
  5127. closecallback: function () { }
  5128. }, { "style": { "height": "36px" } }).form; //创建窗体
  5129. _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); } }
  5130. break;
  5131. // case "score":
  5132. // _formdiv = new U.UF.UI.form(
  5133. // "量规评分",
  5134. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5135. // "id": "score",
  5136. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5137. // "onresize": function() {}
  5138. // }, {
  5139. // closecallback: function() {}
  5140. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5141. // _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); } }
  5142. // break;
  5143. case "mind":
  5144. _formdiv = new U.UF.UI.form(
  5145. "思维导图",
  5146. $$("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"
  5147. "id": "mind",
  5148. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5149. "onresize": function () { }
  5150. }, {
  5151. closecallback: function () { }
  5152. }, { "style": { "height": "36px" } }).form; //创建窗体
  5153. _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); } }
  5154. break;
  5155. case "doc":
  5156. // U.MD.D.I.isRoom();
  5157. _formdiv = new U.UF.UI.form(
  5158. "协同文档",
  5159. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5160. "id": "doc",
  5161. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5162. "onresize": function () { }
  5163. }, {
  5164. closecallback: function () { }
  5165. }, { "style": { "height": "36px" } }).form; //创建窗体
  5166. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5167. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5168. })
  5169. _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); } }
  5170. break;
  5171. case "study":
  5172. _formdiv = new U.UF.UI.form(
  5173. "课程中心",
  5174. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5175. "id": "study",
  5176. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5177. "onresize": function () { }
  5178. }, {
  5179. closecallback: function () { }
  5180. }, { "style": { "height": "36px" } }).form; //创建窗体
  5181. _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); } }
  5182. break;
  5183. case "mindNetwork": //好友打开
  5184. _formdiv = new U.UF.UI.form(
  5185. "思维网格",
  5186. $$("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 }), {
  5187. "id": "mindNetwork",
  5188. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5189. "onresize": function () { }
  5190. }, {
  5191. closecallback: function () { }
  5192. }, { "style": { "height": "36px" } }).form; //创建窗体
  5193. _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); } }
  5194. break;
  5195. case "train": //好友打开
  5196. _formdiv = new U.UF.UI.form(
  5197. "训练平台",
  5198. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5199. "id": "mindNetwork",
  5200. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5201. "onresize": function () { }
  5202. }, {
  5203. closecallback: function () { }
  5204. }, { "style": { "height": "36px" } }).form; //创建窗体
  5205. _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); } }
  5206. break;
  5207. case "teacherClassRoom": //好友打开
  5208. _formdiv = new U.UF.UI.form(
  5209. "实时课堂",
  5210. $$("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 }), {
  5211. "id": "teacherClassRoom",
  5212. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5213. "onresize": function () { }
  5214. }, {
  5215. closecallback: function () { }
  5216. }, { "style": { "height": "36px" } }).form; //创建窗体
  5217. _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); } }
  5218. setTimeout(() => {
  5219. U.UF.F.windowZooming(_formdiv)
  5220. }, 0);
  5221. break;
  5222. }
  5223. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5224. switch (str) {
  5225. case "project": //好友打开
  5226. _formdiv = new U.UF.UI.form(
  5227. "课程管理",
  5228. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5229. "id": "project",
  5230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5231. "onresize": function () { }
  5232. }, {
  5233. closecallback: function () { }
  5234. }, { "style": { "height": "36px" } }).form; //创建窗体
  5235. _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); } }
  5236. break;
  5237. case "evaluate":
  5238. _formdiv = new U.UF.UI.form(
  5239. "学生评价",
  5240. $$("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 }), {
  5241. "id": "evaluate",
  5242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5243. "onresize": function () { }
  5244. }, {
  5245. closecallback: function () { }
  5246. }, { "style": { "height": "36px" } }).form; //创建窗体
  5247. _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); } }
  5248. break;
  5249. case "notice":
  5250. _formdiv = new U.UF.UI.form(
  5251. "通知公告",
  5252. $$("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 }), {
  5253. "id": "notice",
  5254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5255. "onresize": function () { }
  5256. }, {
  5257. closecallback: function () { }
  5258. }, { "style": { "height": "36px" } }).form; //创建窗体
  5259. _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); } }
  5260. break;
  5261. case "stuLibrary":
  5262. _formdiv = new U.UF.UI.form(
  5263. "学习资料",
  5264. $$("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 }), {
  5265. "id": "stuLibrary",
  5266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5267. "onresize": function () { }
  5268. }, {
  5269. closecallback: function () { }
  5270. }, { "style": { "height": "36px" } }).form; //创建窗体
  5271. _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); } }
  5272. break;
  5273. case "program":
  5274. _formdiv = new U.UF.UI.form(
  5275. "编程平台",
  5276. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5277. "id": "program",
  5278. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5279. "onresize": function () { }
  5280. }, {
  5281. closecallback: function () { }
  5282. }, { "style": { "height": "36px" } }).form; //创建窗体
  5283. _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); } }
  5284. break;
  5285. case "whiteboard":
  5286. _formdiv = new U.UF.UI.form(
  5287. "电子白板",
  5288. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5289. "id": "whiteboard",
  5290. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5291. "onresize": function () { }
  5292. }, {
  5293. closecallback: function () { }
  5294. }, { "style": { "height": "36px" } }).form; //创建窗体
  5295. _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); } }
  5296. break;
  5297. case "investigation":
  5298. _formdiv = new U.UF.UI.form(
  5299. "问卷调查",
  5300. $$("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 }), {
  5301. "id": "investigation",
  5302. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5303. "onresize": function () { }
  5304. }, {
  5305. closecallback: function () { }
  5306. }, { "style": { "height": "36px" } }).form; //创建窗体
  5307. _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); } }
  5308. break;
  5309. case "mind":
  5310. _formdiv = new U.UF.UI.form(
  5311. "思维导图",
  5312. $$("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"
  5313. "id": "mind",
  5314. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5315. "onresize": function () { }
  5316. }, {
  5317. closecallback: function () { }
  5318. }, { "style": { "height": "36px" } }).form; //创建窗体
  5319. _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); } }
  5320. break;
  5321. case "doc":
  5322. // U.MD.D.I.isRoom();
  5323. _formdiv = new U.UF.UI.form(
  5324. "协同文档",
  5325. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5326. "id": "doc",
  5327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5328. "onresize": function () { }
  5329. }, {
  5330. closecallback: function () { }
  5331. }, { "style": { "height": "36px" } }).form; //创建窗体
  5332. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5333. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5334. })
  5335. _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); } }
  5336. break;
  5337. case "study":
  5338. _formdiv = new U.UF.UI.form(
  5339. "课程中心",
  5340. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/index?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType }), { //https://beta.pbl.cocorobo.cn/pbl-student-table/dist/#/index
  5341. "id": "study",
  5342. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5343. "onresize": function () { }
  5344. }, {
  5345. closecallback: function () { }
  5346. }, { "style": { "height": "36px" } }).form; //创建窗体
  5347. _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); } }
  5348. break;
  5349. case "mindNetwork": //好友打开
  5350. _formdiv = new U.UF.UI.form(
  5351. "思维网格",
  5352. $$("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 }), {
  5353. "id": "mindNetwork",
  5354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5355. "onresize": function () { }
  5356. }, {
  5357. closecallback: function () { }
  5358. }, { "style": { "height": "36px" } }).form; //创建窗体
  5359. _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); } }
  5360. break;
  5361. case "train": //好友打开
  5362. _formdiv = new U.UF.UI.form(
  5363. "训练平台",
  5364. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5365. "id": "train",
  5366. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5367. "onresize": function () { }
  5368. }, {
  5369. closecallback: function () { }
  5370. }, { "style": { "height": "36px" } }).form; //创建窗体
  5371. _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); } }
  5372. break;
  5373. case "sys":
  5374. _formdiv = new U.UF.UI.form(
  5375. "目标管理",
  5376. $$("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 }), {
  5377. "id": "sys",
  5378. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5379. "onresize": function () { }
  5380. }, {
  5381. closecallback: function () { }
  5382. }, { "style": { "height": "36px" } }).form; //创建窗体
  5383. _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); } }
  5384. break;
  5385. case "courseDesign":
  5386. _formdiv = new U.UF.UI.form(
  5387. "项目设计",
  5388. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5389. "id": "courseDesign",
  5390. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5391. "onresize": function () { }
  5392. }, {
  5393. closecallback: function () { }
  5394. }, { "style": { "height": "36px" } }).form; //创建窗体
  5395. _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); } }
  5396. break;
  5397. }
  5398. } else if (!_type) {
  5399. switch (str) {
  5400. case "my":
  5401. _formdiv = new U.UF.UI.form(
  5402. "我的资料",
  5403. $$("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 }), {
  5404. "id": "my",
  5405. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. _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); } }
  5411. break;
  5412. }
  5413. }
  5414. switch (str) {
  5415. // AIprogram2 AI体验 aihub.cocorobo.cn
  5416. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5417. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5418. case "formulaEdi": //公式编辑
  5419. _formdiv = new U.UF.UI.form(
  5420. "公式编辑",
  5421. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5422. "id": "formulaEdi",
  5423. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5424. "onresize": function () { }
  5425. }, {
  5426. closecallback: function () { }
  5427. }, { "style": { "height": "36px" } }).form; //创建窗体
  5428. _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); } }
  5429. break;
  5430. case "molStr": //分子结构
  5431. _formdiv = new U.UF.UI.form(
  5432. "分子结构",
  5433. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5434. "id": "molStr",
  5435. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5436. "onresize": function () { }
  5437. }, {
  5438. closecallback: function () { }
  5439. }, { "style": { "height": "36px" } }).form; //创建窗体
  5440. _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); } }
  5441. break;
  5442. case "timeAxis": //时间轴
  5443. _formdiv = new U.UF.UI.form(
  5444. "时间轴",
  5445. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5446. "id": "timeAxis",
  5447. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5448. "onresize": function () { }
  5449. }, {
  5450. closecallback: function () { }
  5451. }, { "style": { "height": "36px" } }).form; //创建窗体
  5452. _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); } }
  5453. break;
  5454. case "AIprogram2": //AI体验
  5455. _formdiv = new U.UF.UI.form(
  5456. "AI体验",
  5457. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5458. "id": "AIprogram2",
  5459. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5460. "onresize": function () { }
  5461. }, {
  5462. closecallback: function () { }
  5463. }, { "style": { "height": "36px" } }).form; //创建窗体
  5464. _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); } }
  5465. break;
  5466. case "Pythonprogram": //python编程
  5467. _formdiv = new U.UF.UI.form(
  5468. "Python编程",
  5469. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5470. "id": "Pythonprogram",
  5471. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5472. "onresize": function () { }
  5473. }, {
  5474. closecallback: function () { }
  5475. }, { "style": { "height": "36px" } }).form; //创建窗体
  5476. _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); } }
  5477. break;
  5478. case "AIprogram": //ai编程
  5479. _formdiv = new U.UF.UI.form(
  5480. "AI编程平台",
  5481. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  5482. "id": "AIprogram",
  5483. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5484. "onresize": function () { }
  5485. }, {
  5486. closecallback: function () { }
  5487. }, { "style": { "height": "36px" } }).form; //创建窗体
  5488. _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); } }
  5489. break;
  5490. case "CocoPi": //CocoPi
  5491. _formdiv = new U.UF.UI.form(
  5492. "CocoPi",
  5493. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pi.cocorobo.cn" }), {
  5494. "id": "CocoPi",
  5495. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5496. "onresize": function () { }
  5497. }, {
  5498. closecallback: function () { }
  5499. }, { "style": { "height": "36px" } }).form; //创建窗体
  5500. _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); } }
  5501. break;
  5502. case "Wood": //Wood
  5503. _formdiv = new U.UF.UI.form(
  5504. "海龟编程",
  5505. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://wood.codemao.cn/" }), {
  5506. "id": "Wood",
  5507. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5508. "onresize": function () { }
  5509. }, {
  5510. closecallback: function () { }
  5511. }, { "style": { "height": "36px" } }).form; //创建窗体
  5512. _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); } }
  5513. break;
  5514. case "car": //模拟驾驶
  5515. _formdiv = new U.UF.UI.form(
  5516. "模拟驾驶",
  5517. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://slowroads.io/" }), {
  5518. "id": "car",
  5519. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5520. "onresize": function () { }
  5521. }, {
  5522. closecallback: function () { }
  5523. }, { "style": { "height": "36px" } }).form; //创建窗体
  5524. _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); } }
  5525. break;
  5526. case "lineSearch": //路径搜索
  5527. _formdiv = new U.UF.UI.form(
  5528. "路径搜索",
  5529. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://qiao.github.io/PathFinding.js/visual/" }), {
  5530. "id": "lineSearch",
  5531. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5532. "onresize": function () { }
  5533. }, {
  5534. closecallback: function () { }
  5535. }, { "style": { "height": "36px" } }).form; //创建窗体
  5536. _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); } }
  5537. break;
  5538. case "deepLearning": //深度学习
  5539. _formdiv = new U.UF.UI.form(
  5540. "深度学习",
  5541. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-demos.cocorobo.cn/teachable-machine/public/#" }), {
  5542. "id": "deepLearning",
  5543. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5544. "onresize": function () { }
  5545. }, {
  5546. closecallback: function () { }
  5547. }, { "style": { "height": "36px" } }).form; //创建窗体
  5548. _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); } }
  5549. break;
  5550. case "allHistory": //深度学习
  5551. _formdiv = new U.UF.UI.form(
  5552. "全历史",
  5553. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.allhistory.com/" }), {
  5554. "id": "allHistory",
  5555. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5556. "onresize": function () { }
  5557. }, {
  5558. closecallback: function () { }
  5559. }, { "style": { "height": "36px" } }).form; //创建窗体
  5560. _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); } }
  5561. break;
  5562. case "chatPDF": //ai编程
  5563. _formdiv = new U.UF.UI.form(
  5564. "chatPDF",
  5565. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  5566. "id": "chatPDF",
  5567. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5568. "onresize": function () { }
  5569. }, {
  5570. closecallback: function () { }
  5571. }, { "style": { "height": "36px" } }).form; //创建窗体
  5572. _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); } }
  5573. break;
  5574. case "resources": //国家教育
  5575. _formdiv = new U.UF.UI.form(
  5576. "国家教育",
  5577. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  5578. "id": "resources",
  5579. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5580. "onresize": function () { }
  5581. }, {
  5582. closecallback: function () { }
  5583. }, { "style": { "height": "36px" } }).form; //创建窗体
  5584. _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); } }
  5585. break;
  5586. case "codeEdit": //源码编辑
  5587. _formdiv = new U.UF.UI.form(
  5588. "源码编辑",
  5589. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  5590. "id": "codeEdit",
  5591. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5592. "onresize": function () { }
  5593. }, {
  5594. closecallback: function () { }
  5595. }, { "style": { "height": "36px" } }).form; //创建窗体
  5596. _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); } }
  5597. break; //
  5598. case "MindMap": //MindMap
  5599. _formdiv = new U.UF.UI.form(
  5600. "MindMap",
  5601. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  5602. "id": "MindMap",
  5603. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5604. "onresize": function () { }
  5605. }, {
  5606. closecallback: function () { }
  5607. }, { "style": { "height": "36px" } }).form; //创建窗体
  5608. _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); } }
  5609. break;
  5610. case "netWorkPanel": //netWorkPanel
  5611. _formdiv = new U.UF.UI.form(
  5612. "netWorkPanel",
  5613. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  5614. "id": "netWorkPanel",
  5615. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5616. "onresize": function () { }
  5617. }, {
  5618. closecallback: function () { }
  5619. }, { "style": { "height": "36px" } }).form; //创建窗体
  5620. _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); } }
  5621. break;
  5622. case "GeoGebra": //GeoGebra
  5623. _formdiv = new U.UF.UI.form(
  5624. "GeoGebra",
  5625. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.geogebra.org/calculator" }), {
  5626. "id": "GeoGebra",
  5627. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5628. "onresize": function () { }
  5629. }, {
  5630. closecallback: function () { }
  5631. }, { "style": { "height": "36px" } }).form; //创建窗体
  5632. _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); } }
  5633. break;
  5634. case "translation": //翻译
  5635. _formdiv = new U.UF.UI.form(
  5636. "翻译",
  5637. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  5638. "id": "translation",
  5639. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  5640. "onresize": function () { }
  5641. }, {
  5642. closecallback: function () { }
  5643. }, { "style": { "height": "36px" } }).form; //创建窗体
  5644. _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); } }
  5645. break;
  5646. case "mohe": //魔盒
  5647. _formdiv = new U.UF.UI.form(
  5648. "魔盒识字",
  5649. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  5650. "id": "mohe",
  5651. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5652. "onresize": function () { }
  5653. }, {
  5654. closecallback: function () { }
  5655. }, { "style": { "height": "36px" } }).form; //创建窗体
  5656. _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); } }
  5657. break;
  5658. case "24game": //24点
  5659. _formdiv = new U.UF.UI.form(
  5660. "24点",
  5661. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  5662. "id": "24game",
  5663. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  5664. "onresize": function () { }
  5665. }, {
  5666. closecallback: function () { }
  5667. }, { "style": { "height": "36px" } }).form; //创建窗体
  5668. _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); } }
  5669. break;
  5670. case "case":
  5671. _formdiv = new U.UF.UI.form(
  5672. "课程进展",
  5673. $$("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 }), {
  5674. "id": "case",
  5675. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5676. "onresize": function () { }
  5677. }, {
  5678. closecallback: function () { }
  5679. }, { "style": { "height": "36px" } }).form; //创建窗体
  5680. _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); } }
  5681. break;
  5682. case "snf":
  5683. _formdiv = new U.UF.UI.form(
  5684. "赛诺梵",
  5685. $$("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" }), {
  5686. "id": "snf",
  5687. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5688. "onresize": function () { }
  5689. }, {
  5690. closecallback: function () { }
  5691. }, { "style": { "height": "36px" } }).form; //创建窗体
  5692. _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); } }
  5693. break;
  5694. case "hanFamily":
  5695. _formdiv = new U.UF.UI.form(
  5696. "汉字家族",
  5697. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  5698. "id": "hanFamily",
  5699. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5700. "onresize": function () { }
  5701. }, {
  5702. closecallback: function () { }
  5703. }, { "style": { "height": "36px" } }).form; //创建窗体
  5704. _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); } }
  5705. break;
  5706. case "hanClassics":
  5707. _formdiv = new U.UF.UI.form(
  5708. "国学经典",
  5709. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  5710. "id": "hanClassics",
  5711. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5712. "onresize": function () { }
  5713. }, {
  5714. closecallback: function () { }
  5715. }, { "style": { "height": "36px" } }).form; //创建窗体
  5716. _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); } }
  5717. break;
  5718. case "hanTraining":
  5719. _formdiv = new U.UF.UI.form(
  5720. "笔画训练",
  5721. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  5722. "id": "hanTraining",
  5723. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5724. "onresize": function () { }
  5725. }, {
  5726. closecallback: function () { }
  5727. }, { "style": { "height": "36px" } }).form; //创建窗体
  5728. _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); } }
  5729. break;
  5730. case "hanClass":
  5731. _formdiv = new U.UF.UI.form(
  5732. "书法课堂",
  5733. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  5734. "id": "hanClass",
  5735. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5736. "onresize": function () { }
  5737. }, {
  5738. closecallback: function () { }
  5739. }, { "style": { "height": "36px" } }).form; //创建窗体
  5740. _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); } }
  5741. break;
  5742. case "han":
  5743. _formdiv = new U.UF.UI.form(
  5744. "汉字宫",
  5745. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  5746. "id": "han",
  5747. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5748. "onresize": function () { }
  5749. }, {
  5750. closecallback: function () { }
  5751. }, { "style": { "height": "36px" } }).form; //创建窗体
  5752. _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); } }
  5753. break;
  5754. case "projectGM": //课程管理
  5755. _formdiv = new U.UF.UI.form(
  5756. "课程管理",
  5757. $$("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 }), {
  5758. "id": "projectGM",
  5759. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5760. "onresize": function () { }
  5761. }, {
  5762. closecallback: function () { }
  5763. }, { "style": { "height": "36px" } }).form; //创建窗体
  5764. _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); } }
  5765. break;
  5766. case "studyGM": //课程中心
  5767. _formdiv = new U.UF.UI.form(
  5768. "课程中心",
  5769. $$("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
  5770. "id": "study",
  5771. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5772. "onresize": function () { }
  5773. }, {
  5774. closecallback: function () { }
  5775. }, { "style": { "height": "36px" } }).form; //创建窗体
  5776. _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); } }
  5777. break;
  5778. // studentGM
  5779. case "studentGM": //学生管理
  5780. _formdiv = new U.UF.UI.form(
  5781. "学生管理",
  5782. $$("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 }), {
  5783. "id": "studentGM",
  5784. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5785. "onresize": function () { }
  5786. }, {
  5787. closecallback: function () { }
  5788. }, { "style": { "height": "36px" } }).form; //创建窗体
  5789. _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); } }
  5790. break;
  5791. case "evaluateGM": //学生评价
  5792. _formdiv = new U.UF.UI.form(
  5793. "学生评价",
  5794. $$("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 }), {
  5795. "id": "evaluateGM",
  5796. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5797. "onresize": function () { }
  5798. }, {
  5799. closecallback: function () { }
  5800. }, { "style": { "height": "36px" } }).form; //创建窗体
  5801. _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); } }
  5802. break;
  5803. // classGM
  5804. case "classGM": //班级管理
  5805. _formdiv = new U.UF.UI.form(
  5806. "班级管理",
  5807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5808. "id": "classGM",
  5809. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5810. "onresize": function () { }
  5811. }, {
  5812. closecallback: function () { }
  5813. }, { "style": { "height": "36px" } }).form; //创建窗体
  5814. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/class.png)" }, "name": "班级管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5815. break;
  5816. // dataGM
  5817. case "dataGM":
  5818. _formdiv = new U.UF.UI.form(
  5819. "我的资料",
  5820. $$("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 }), {
  5821. "id": "dataGM",
  5822. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5823. "onresize": function () { }
  5824. }, {
  5825. closecallback: function () { }
  5826. }, { "style": { "height": "36px" } }).form; //创建窗体
  5827. _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); } }
  5828. break;
  5829. // caseGM
  5830. case "caseGM": //课程进展
  5831. _formdiv = new U.UF.UI.form(
  5832. "课程进展",
  5833. $$("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 }), {
  5834. "id": "caseGM",
  5835. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5836. "onresize": function () { }
  5837. }, {
  5838. closecallback: function () { }
  5839. }, { "style": { "height": "36px" } }).form; //创建窗体
  5840. _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); } }
  5841. break;
  5842. // meterialGM
  5843. case "meterialGM": //素材库
  5844. _formdiv = new U.UF.UI.form(
  5845. "素材库",
  5846. $$("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 }), {
  5847. "id": "meterialGM",
  5848. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5849. "onresize": function () { }
  5850. }, {
  5851. closecallback: function () { }
  5852. }, { "style": { "height": "36px" } }).form; //创建窗体
  5853. _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); } }
  5854. break;
  5855. // evaluateSGM
  5856. case "evaluateSGM": //我的评价
  5857. _formdiv = new U.UF.UI.form(
  5858. "我的评价",
  5859. $$("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 }), {
  5860. "id": "evaluateSGM",
  5861. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5862. "onresize": function () { }
  5863. }, {
  5864. closecallback: function () { }
  5865. }, { "style": { "height": "36px" } }).form; //创建窗体
  5866. _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); } }
  5867. break;
  5868. case "jupyter": //jupyter
  5869. _formdiv = new U.UF.UI.form(
  5870. "jupyter",
  5871. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  5872. "id": "jupyter",
  5873. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5874. "onresize": function () { }
  5875. }, {
  5876. closecallback: function () { }
  5877. }, { "style": { "height": "36px" } }).form; //创建窗体
  5878. _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); } }
  5879. break;
  5880. case "number": //数字实验室
  5881. _formdiv = new U.UF.UI.form(
  5882. "数字实验室",
  5883. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  5884. "id": "number",
  5885. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5886. "onresize": function () { }
  5887. }, {
  5888. closecallback: function () { }
  5889. }, { "style": { "height": "36px" } }).form; //创建窗体
  5890. _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); } }
  5891. break;
  5892. case "studentCourse": //项目管理 学生
  5893. _formdiv = new U.UF.UI.form(
  5894. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5895. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studentCourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5896. "id": "studentCourse",
  5897. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5898. "onresize": function () { }
  5899. }, {
  5900. closecallback: function () { }
  5901. }, { "style": { "height": "36px" } }).form; //创建窗体
  5902. _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); } }
  5903. break;
  5904. case "studentCourseS": //项目管理 老师
  5905. _formdiv = new U.UF.UI.form(
  5906. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  5907. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/scourse?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5908. "id": "studentCourseS",
  5909. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5910. "onresize": function () { }
  5911. }, {
  5912. closecallback: function () { }
  5913. }, { "style": { "height": "36px" } }).form; //创建窗体
  5914. _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); } }
  5915. break;
  5916. case "studentIndex": //项目中心
  5917. _formdiv = new U.UF.UI.form(
  5918. "项目中心",
  5919. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/studentIndex?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&tType=" + _type + "&cid=" + _classId + "&screenType=" + _TscreenType + "&role=" + _role }), {
  5920. "id": "studentIndex",
  5921. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5922. "onresize": function () { }
  5923. }, {
  5924. closecallback: function () { }
  5925. }, { "style": { "height": "36px" } }).form; //创建窗体
  5926. _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); } }
  5927. break;
  5928. case "CaseDesignS":
  5929. _formdiv = new U.UF.UI.form(
  5930. "项目进展",
  5931. $$("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 }), {
  5932. "id": "case",
  5933. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5934. "onresize": function () { }
  5935. }, {
  5936. closecallback: function () { }
  5937. }, { "style": { "height": "36px" } }).form; //创建窗体
  5938. _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); } }
  5939. break;
  5940. case "tcStudent": //腾讯学生管理
  5941. _formdiv = new U.UF.UI.form(
  5942. "学生管理",
  5943. $$("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 }), {
  5944. "id": "tcStudent",
  5945. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5946. "onresize": function () { }
  5947. }, {
  5948. closecallback: function () { }
  5949. }, { "style": { "height": "36px" } }).form; //创建窗体
  5950. _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); } }
  5951. break;
  5952. case "tcSchool": //腾讯学校管理
  5953. _formdiv = new U.UF.UI.form(
  5954. "学校管理",
  5955. $$("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 }), {
  5956. "id": "tcSchool",
  5957. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5958. "onresize": function () { }
  5959. }, {
  5960. closecallback: function () { }
  5961. }, { "style": { "height": "36px" } }).form; //创建窗体
  5962. _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); } }
  5963. break;
  5964. case "tcTeacher": //腾讯学校管理
  5965. _formdiv = new U.UF.UI.form(
  5966. "教师管理",
  5967. $$("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 }), {
  5968. "id": "tcTeacher",
  5969. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5970. "onresize": function () { }
  5971. }, {
  5972. closecallback: function () { }
  5973. }, { "style": { "height": "36px" } }).form; //创建窗体
  5974. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/teacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5975. break;
  5976. case "tcData": //腾讯我的资料
  5977. _formdiv = new U.UF.UI.form(
  5978. "我的资料",
  5979. $$("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 }), {
  5980. "id": "tcData",
  5981. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5982. "onresize": function () { }
  5983. }, {
  5984. closecallback: function () { }
  5985. }, { "style": { "height": "36px" } }).form; //创建窗体
  5986. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "我的资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5987. break;
  5988. case "tcNotice": //腾讯消息通知
  5989. _formdiv = new U.UF.UI.form(
  5990. "消息通知",
  5991. $$("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 }), {
  5992. "id": "tcNotice",
  5993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5994. "onresize": function () { }
  5995. }, {
  5996. closecallback: function () { }
  5997. }, { "style": { "height": "36px" } }).form; //创建窗体
  5998. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "消息通知", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5999. break;
  6000. case "myReport": //好友打开
  6001. _formdiv = new U.UF.UI.form(
  6002. "我的评价",
  6003. $$("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 }), {
  6004. "id": "myReport",
  6005. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6006. "onresize": function () { }
  6007. }, {
  6008. closecallback: function () { }
  6009. }, { "style": { "height": "36px" } }).form; //创建窗体
  6010. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6011. break;
  6012. case "learnAna": //好友打开
  6013. _formdiv = new U.UF.UI.form(
  6014. "学习分析",
  6015. $$("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 }), {
  6016. "id": "learnAna",
  6017. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6018. "onresize": function () { }
  6019. }, {
  6020. closecallback: function () { }
  6021. }, { "style": { "height": "36px" } }).form; //创建窗体
  6022. _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); } }
  6023. break;
  6024. case "AIChat": //AI共创
  6025. _formdiv = new U.UF.UI.form(
  6026. "AI共创",
  6027. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6028. "id": "AIChat",
  6029. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6030. "onresize": function () { }
  6031. }, {
  6032. istop: true,
  6033. closecallback: function () { $("#aichat_icon").remove(); },
  6034. narrowcallback: function () {
  6035. if (!$("#aichat_icon")[0]) {
  6036. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6037. }
  6038. },
  6039. }, { "style": { "height": "36px" } }).form; //创建窗体
  6040. _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); } }
  6041. break;
  6042. case "ainew": //AI共创
  6043. _formdiv = new U.UF.UI.form(
  6044. "AI协同",
  6045. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6046. "id": "ainew",
  6047. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6048. "onresize": function () { }
  6049. }, {
  6050. closecallback: function () { }
  6051. }, { "style": { "height": "36px" } }).form; //创建窗体
  6052. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/AIChat.png)" }, "name": "AI协同", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6053. break;
  6054. case "gpt4": //gpt4
  6055. _formdiv = new U.UF.UI.form(
  6056. "AI助手",
  6057. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/gpt4/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6058. "id": "gpt4",
  6059. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6060. "onresize": function () { }
  6061. }, {
  6062. closecallback: function () { }
  6063. }, { "style": { "height": "36px" } }).form; //创建窗体
  6064. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpt4.png)" }, "name": "AI助手", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6065. break;
  6066. case "aigpt": //gpt4
  6067. _formdiv = new U.UF.UI.form(
  6068. "AI助手+",
  6069. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6070. "id": "aigpt",
  6071. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6072. "onresize": function () { }
  6073. }, {
  6074. closecallback: function () { }
  6075. }, { "style": { "height": "36px" } }).form; //创建窗体
  6076. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigpt.png)" }, "name": "AI助手+", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6077. break;
  6078. case "aiKnowledge": //aiKnowledge
  6079. _formdiv = new U.UF.UI.form(
  6080. "知识建构",
  6081. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.cloud.cocorobo.cn/aigpt/#/knowledge_construction/?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6082. "id": "aiKnowledge",
  6083. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6084. "onresize": function () { }
  6085. }, {
  6086. closecallback: function () { }
  6087. }, { "style": { "height": "36px" } }).form; //创建窗体
  6088. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aiKnowledge.png)" }, "name": "知识建构", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6089. break;
  6090. case "futureClass": //AI共创
  6091. _formdiv = new U.UF.UI.form(
  6092. "协同建构",
  6093. $$("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://beta.cscl.cocorobo.cn
  6094. "id": "synergyCourse",
  6095. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6096. "onresize": function () { }
  6097. }, {
  6098. closecallback: function () {
  6099. $("iframe", _formdiv)[0].contentWindow.loginout();
  6100. }
  6101. }, { "style": { "height": "36px" } }).form; //创建窗体
  6102. _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); } }
  6103. break;
  6104. case "aiagent": //ai agent
  6105. _formdiv = new U.UF.UI.form(
  6106. "AI Agent",
  6107. $$("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" }), {
  6108. "id": "AIAgent",
  6109. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6110. "onresize": function () { }
  6111. }, {
  6112. closecallback: function () { }
  6113. }, { "style": { "height": "36px" } }).form; //创建窗体
  6114. _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); } }
  6115. break;
  6116. case "dataBoard": //数据看板
  6117. _formdiv = new U.UF.UI.form(
  6118. "数据看板",
  6119. $$("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 }), {
  6120. "id": "dataBoard",
  6121. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6122. "onresize": function () { }
  6123. }, {
  6124. closecallback: function () { }
  6125. }, { "style": { "height": "36px" } }).form; //创建窗体
  6126. _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); } }
  6127. break;
  6128. case "dataBoardSies": //数据融合
  6129. _formdiv = new U.UF.UI.form(
  6130. "数据融合",
  6131. $$("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 }), {
  6132. "id": "dataBoardSies",
  6133. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6134. "onresize": function () { }
  6135. }, {
  6136. closecallback: function () { }
  6137. }, { "style": { "height": "36px" } }).form; //创建窗体
  6138. _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); } }
  6139. break;
  6140. case "dataBoardNew": //数据看板
  6141. _formdiv = new U.UF.UI.form(
  6142. "综合看板",
  6143. $$("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 }), {
  6144. "id": "dataBoardNew",
  6145. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6146. "onresize": function () { }
  6147. }, {
  6148. closecallback: function () { }
  6149. }, { "style": { "height": "36px" } }).form; //创建窗体
  6150. _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); } }
  6151. break;
  6152. case "dataBoardTest": //数据看板
  6153. _formdiv = new U.UF.UI.form(
  6154. "评测看板",
  6155. $$("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 }), {
  6156. "id": "dataBoardTest",
  6157. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6158. "onresize": function () { }
  6159. }, {
  6160. closecallback: function () { }
  6161. }, { "style": { "height": "36px" } }).form; //创建窗体
  6162. _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); } }
  6163. break;
  6164. case "AIAnalyse": //AI共创
  6165. _formdiv = new U.UF.UI.form(
  6166. "AI分析",
  6167. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6168. "id": "AIAnalyse",
  6169. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6170. "onresize": function () { }
  6171. }, {
  6172. closecallback: function () { }
  6173. }, { "style": { "height": "36px" } }).form; //创建窗体
  6174. _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); } }
  6175. break;
  6176. case "studioCourse": //AI共创
  6177. _formdiv = new U.UF.UI.form(
  6178. "工作管理",
  6179. $$("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 }), {
  6180. "id": "studioCourse",
  6181. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6182. "onresize": function () { }
  6183. }, {
  6184. closecallback: function () { }
  6185. }, { "style": { "height": "36px" } }).form; //创建窗体
  6186. _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); } }
  6187. break;
  6188. case "studioIndex": //AI共创
  6189. _formdiv = new U.UF.UI.form(
  6190. "工作中心",
  6191. $$("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 }), {
  6192. "id": "studioIndex",
  6193. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6194. "onresize": function () { }
  6195. }, {
  6196. closecallback: function () { }
  6197. }, { "style": { "height": "36px" } }).form; //创建窗体
  6198. _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); } }
  6199. break;
  6200. case "source":
  6201. _formdiv = new U.UF.UI.form(
  6202. "教学资源",
  6203. $$("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 }), {
  6204. "id": "source",
  6205. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6206. "onresize": function () { }
  6207. }, {
  6208. closecallback: function () { }
  6209. }, { "style": { "height": "36px" } }).form; //创建窗体
  6210. _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); } }
  6211. break;
  6212. case "testTeacher":
  6213. _formdiv = new U.UF.UI.form(
  6214. "教师管理",
  6215. $$("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 }), {
  6216. "id": "testTeacher",
  6217. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6218. "onresize": function () { }
  6219. }, {
  6220. closecallback: function () { }
  6221. }, { "style": { "height": "36px" } }).form; //创建窗体
  6222. _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); } }
  6223. break;
  6224. case "testStudent":
  6225. _formdiv = new U.UF.UI.form(
  6226. "教师中心",
  6227. $$("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 }), {
  6228. "id": "testStudent",
  6229. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6230. "onresize": function () { }
  6231. }, {
  6232. closecallback: function () { }
  6233. }, { "style": { "height": "36px" } }).form; //创建窗体
  6234. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6235. break;
  6236. case "testTeacherSies":
  6237. _formdiv = new U.UF.UI.form(
  6238. "教师管理",
  6239. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/test?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6240. "id": "testTeacherSies",
  6241. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6242. "onresize": function () { }
  6243. }, {
  6244. closecallback: function () { }
  6245. }, { "style": { "height": "36px" } }).form; //创建窗体
  6246. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testTeacher.png)" }, "name": "教师管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6247. break;
  6248. case "testStudentSies":
  6249. _formdiv = new U.UF.UI.form(
  6250. "教师中心",
  6251. $$("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 }), {
  6252. "id": "testStudentSies",
  6253. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6254. "onresize": function () { }
  6255. }, {
  6256. closecallback: function () { }
  6257. }, { "style": { "height": "36px" } }).form; //创建窗体
  6258. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/testStudent.png)" }, "name": "教师中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6259. break;
  6260. case "ytpbl": //消息通知
  6261. _formdiv = new U.UF.UI.form(
  6262. "案例征集",
  6263. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://pblyt.cocorobo.cn/#/login?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6264. "id": "ytpbl",
  6265. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6266. "onresize": function () { }
  6267. }, {
  6268. closecallback: function () { }
  6269. }, { "style": { "height": "36px" } }).form; //创建窗体
  6270. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6271. // 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");
  6272. break;
  6273. case "aiCourseResource": //人工智能窗体
  6274. _formdiv = new U.UF.UI.form(
  6275. false,
  6276. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/index.html" + window.location.search }), {
  6277. "id": "aiCourseResource",
  6278. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6279. "onresize": function () { },
  6280. "isdrag": false,
  6281. }, {
  6282. closecallback: function () { }
  6283. }, { "style": { "height": "36px" } }).form; //创建窗体
  6284. _taskbar = ''
  6285. break;
  6286. case "szdjgCocooroboX": //图形化编程
  6287. _formdiv = new U.UF.UI.form(
  6288. "图形化编程",
  6289. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/index.html" }), {
  6290. "id": "szdjgCocooroboX",
  6291. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6292. "onresize": function () { }
  6293. }, {
  6294. closecallback: function () { }
  6295. }, { "style": { "height": "36px" } }).form; //创建窗体
  6296. _taskbar = ''
  6297. break;
  6298. case "szdjgPython": //python编程
  6299. _formdiv = new U.UF.UI.form(
  6300. "Python编程",
  6301. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/course_resource/cocoblockly-x/python/index.html" }), {
  6302. "id": "szdjgPython",
  6303. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _taskbar = ''
  6309. break;
  6310. case "Record":
  6311. _formdiv = new U.UF.UI.form(
  6312. "观察记录",
  6313. $$("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 }), {
  6314. "id": "Record",
  6315. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6316. "onresize": function () { }
  6317. }, {
  6318. closecallback: function () { }
  6319. }, { "style": { "height": "36px" } }).form; //创建窗体
  6320. _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); } }
  6321. break;
  6322. case "aigptCourse":
  6323. _formdiv = new U.UF.UI.form(
  6324. "AI智能体",
  6325. $$("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' }), {
  6326. "id": "aigptCourse",
  6327. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6328. "onresize": function () { }
  6329. }, {
  6330. closecallback: function () { }
  6331. }, { "style": { "height": "36px" } }).form; //创建窗体
  6332. _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); } }
  6333. break;
  6334. case "classroomObservation":
  6335. _formdiv = new U.UF.UI.form(
  6336. "课堂观察",
  6337. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/classroomObservation?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6338. "id": "classroomObservation",
  6339. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6340. "onresize": function () { }
  6341. }, {
  6342. closecallback: function () { }
  6343. }, { "style": { "height": "36px" } }).form; //创建窗体
  6344. _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); } }
  6345. break;
  6346. case "pblCourse":
  6347. _formdiv = new U.UF.UI.form(
  6348. "学生PBL",
  6349. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "","frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/guide?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6350. "id": "pblCourse",
  6351. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6352. "onresize": function () { }
  6353. }, {
  6354. closecallback: function () { }
  6355. }, { "style": { "height": "36px" } }).form; //创建窗体
  6356. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6357. break;
  6358. }
  6359. //U.MD.D.I.openClick(str);
  6360. //如果有任务栏信息
  6361. if (_taskbar) {
  6362. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6363. }
  6364. }
  6365. // U.MD.D.I.openClick = function(str){
  6366. // var click = '';
  6367. // switch(str){
  6368. // case 'friend':
  6369. // click = '我的好友';
  6370. // break;
  6371. // case 'domain':
  6372. // click = '域名管理';
  6373. // break;
  6374. // case 'disk':
  6375. // click = '我的云盘';
  6376. // break;
  6377. // case 'word':
  6378. // click = 'Word';
  6379. // break;
  6380. // case 'excel':
  6381. // click = 'Execl';
  6382. // break;
  6383. // case 'txt':
  6384. // click = '文本文件';
  6385. // break;
  6386. // case 'lookupFriend':
  6387. // click = '查找好友';
  6388. // break;
  6389. // case 'ftp':
  6390. // click = 'FTP';
  6391. // break;
  6392. // case 'group':
  6393. // click = '群组';
  6394. // break;
  6395. // case 'set':
  6396. // click = '我的设置';
  6397. // break;
  6398. // case 'systemSet':
  6399. // click = '系统设置';
  6400. // break;
  6401. // case 'boomYun':
  6402. // click = '互联办公';
  6403. // break;
  6404. // case 'xz':
  6405. // click = '云端下载';
  6406. // break;
  6407. // case 'client':
  6408. // click = '有思浏览器';
  6409. // break;
  6410. // case 'backEndProgramming':
  6411. // click = '在线后台编程';
  6412. // break;
  6413. // case 'frontEndProgramming':
  6414. // click = '在线前端编程';
  6415. // break;
  6416. // default: break;
  6417. // }
  6418. // if(U.MD.D.I.Ip && click){
  6419. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6420. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6421. // })
  6422. // }
  6423. // }
  6424. /**
  6425. *函数作用:ajax简易函数,使用post格式
  6426. *@param url {data} 后台地址
  6427. *@param data {data} 参数json
  6428. *@param fn {data} 回调函数
  6429. *
  6430. */
  6431. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6432. // var xhr = new XMLHttpRequest();
  6433. // xhr.open("GET",url,true);
  6434. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6435. // xhr.onreadystatechange = function(){
  6436. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6437. // fn.call(this,xhr.responseText);
  6438. // }
  6439. // };
  6440. // xhr.send();
  6441. // }
  6442. /*判断是否是内网IP*/
  6443. // U.MD.D.I.isInnerIPFn = function(str){
  6444. // var curPageUrl = str;
  6445. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6446. // curPageUrl =curPageUrl.replace(reg1,'');
  6447. // // console.log('curPageUrl-1 '+curPageUrl);
  6448. // var reg2 = /\:+/g;//替换冒号为一点
  6449. // curPageUrl =curPageUrl.replace(reg2,'.');
  6450. // // console.log('curPageUrl-2 '+curPageUrl);
  6451. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  6452. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  6453. // if(curPageUrl[2] != '16'){
  6454. // return ipAddress;
  6455. // }else{
  6456. // return false;
  6457. // }
  6458. // }
  6459. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  6460. // //compatibility for firefox and chrome
  6461. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  6462. // var pc = new myPeerConnection({
  6463. // iceServers: []
  6464. // }),
  6465. // noop = function() {},
  6466. // localIPs = {},
  6467. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  6468. // key;
  6469. // function iterateIP(ip) {
  6470. // if (!localIPs[ip]) onNewIP(ip);
  6471. // localIPs[ip] = true;
  6472. // }
  6473. // //create a bogus data channel
  6474. // pc.createDataChannel("");
  6475. // // create offer and set local description
  6476. // pc.createOffer().then(function(sdp) {
  6477. // sdp.sdp.split('\n').forEach(function(line) {
  6478. // if (line.indexOf('candidate') < 0) return;
  6479. // line.match(ipRegex).forEach(iterateIP);
  6480. // });
  6481. // pc.setLocalDescription(sdp, noop, noop);
  6482. // }).catch(function(reason) {
  6483. // // An error occurred, so handle the failure to connect
  6484. // });
  6485. // //sten for candidate events
  6486. // pc.onicecandidate = function(ice) {
  6487. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  6488. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  6489. // };
  6490. // }
  6491. // U.MD.D.I.getUserIpBool = function(callback){
  6492. // U.MD.D.I.getUserIP(function(ip){
  6493. // alert("Got IP! :" + ip);
  6494. // });
  6495. //}
  6496. //#endregion
  6497. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  6498. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6499. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6500. _userinfo = US.userInfo, //登录用户信息
  6501. _userid = US.userInfo.userid //登录用户id
  6502. let _iframe;
  6503. let _cid = cid,
  6504. _stage = stage,
  6505. _task = task,
  6506. _tool = tool;
  6507. var _jie = $$("div", {
  6508. "style": {
  6509. "position": "absolute",
  6510. "bottom": "50px",
  6511. "right": "50px",
  6512. "zIndex": "9999",
  6513. "backgroundColor": "#2268bc",
  6514. "color": "#fff",
  6515. "padding": "12px 20px",
  6516. "cursor": "pointer",
  6517. "borderRadius": "4px",
  6518. },
  6519. "innerHTML": "提交作业"
  6520. })
  6521. let aTool = ''
  6522. let _loading = document.createElement('div')
  6523. _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;"
  6524. // _loading.id = "";
  6525. let _lchild = document.createElement('div')
  6526. let _limg = document.createElement('img')
  6527. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6528. _limg.style = "width: 26px;margin-right: 10px;"
  6529. _lchild.appendChild(_limg)
  6530. let _lspan = document.createElement('span')
  6531. _lspan.innerHTML = "上传中..."
  6532. _lchild.appendChild(_lspan)
  6533. _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%);"
  6534. _loading.appendChild(_lchild)
  6535. var _box = $$('div', {
  6536. "style": {
  6537. "position": "relative",
  6538. "width": "100%",
  6539. "height": "100%",
  6540. },
  6541. })
  6542. _box.appendChild(_loading)
  6543. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  6544. switch (str) {
  6545. case "whiteboard":
  6546. aTool = 1;
  6547. _iframe = $$("iframe", {
  6548. "frameborder": "no",
  6549. "border": "0",
  6550. "scrolling ": "no",
  6551. "style": {
  6552. "cssText": "border:0;width:100%;height:100%"
  6553. },
  6554. "src": "https://beta.iwb.cocorobo.cn/"
  6555. })
  6556. _box.appendChild(_iframe);
  6557. _box.appendChild(_jie);
  6558. _formdiv = new U.UF.UI.form(
  6559. "电子白板",
  6560. _box, {
  6561. "id": "whiteboard" + cid + stage + task + tool,
  6562. "style": {
  6563. "width": "90%",
  6564. "height": "90%",
  6565. "overflow": 'hidden'
  6566. },
  6567. "onresize": function () { }
  6568. }, {
  6569. closecallback: function () { }
  6570. }, {
  6571. "style": {
  6572. "height": "36px"
  6573. }
  6574. }).form; //创建窗体
  6575. _taskbar = {
  6576. "id": str + _formdiv.id,
  6577. "style": {
  6578. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  6579. },
  6580. "name": "电子白板",
  6581. "forms": _formdiv,
  6582. "click": function () {
  6583. U.MD.D.I.openApplication(str, obj, info);
  6584. }
  6585. }
  6586. break;
  6587. case "mind":
  6588. aTool = 3;
  6589. _iframe = $$("iframe", {
  6590. "frameborder": "no",
  6591. "border": "0",
  6592. "scrolling ": "no",
  6593. "style": {
  6594. "cssText": "border:0;width:100%;height:100%"
  6595. },
  6596. "src": "/kityminder-editor/dist/index.html"
  6597. })
  6598. _box.appendChild(_iframe);
  6599. _box.appendChild(_jie);
  6600. _formdiv = new U.UF.UI.form(
  6601. "思维导图",
  6602. _box, { //"/jsmind/example/demo.html"
  6603. "id": "mind" + cid + stage + task + tool,
  6604. "style": {
  6605. "width": "90%",
  6606. "height": "90%",
  6607. "overflow": 'hidden'
  6608. },
  6609. "onresize": function () { }
  6610. }, {
  6611. closecallback: function () { }
  6612. }, {
  6613. "style": {
  6614. "height": "36px"
  6615. }
  6616. }).form; //创建窗体
  6617. _taskbar = {
  6618. "id": str + _formdiv.id,
  6619. "style": {
  6620. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6621. },
  6622. "name": "思维导图",
  6623. "forms": _formdiv,
  6624. "click": function () {
  6625. U.MD.D.I.openApplication(str, obj, info);
  6626. }
  6627. }
  6628. break;
  6629. case "MindMap":
  6630. aTool = 3;
  6631. _iframe = $$("iframe", {
  6632. "frameborder": "no",
  6633. "border": "0",
  6634. "scrolling ": "no",
  6635. "style": {
  6636. "cssText": "border:0;width:100%;height:100%"
  6637. },
  6638. "src": "//cloud.cocorobo.cn/mind/"
  6639. })
  6640. _box.appendChild(_iframe);
  6641. _box.appendChild(_jie);
  6642. _formdiv = new U.UF.UI.form(
  6643. "思维导图",
  6644. _box, { //"/jsmind/example/demo.html"
  6645. "id": "mind" + cid + stage + task + tool,
  6646. "style": {
  6647. "width": "90%",
  6648. "height": "90%",
  6649. "overflow": 'hidden'
  6650. },
  6651. "onresize": function () { }
  6652. }, {
  6653. closecallback: function () { }
  6654. }, {
  6655. "style": {
  6656. "height": "36px"
  6657. }
  6658. }).form; //创建窗体
  6659. _taskbar = {
  6660. "id": str + _formdiv.id,
  6661. "style": {
  6662. "backgroundImage": "url(/img/icon/mindMapping.png)"
  6663. },
  6664. "name": "思维导图",
  6665. "forms": _formdiv,
  6666. "click": function () {
  6667. U.MD.D.I.openApplication(str, obj, info);
  6668. }
  6669. }
  6670. break;
  6671. case "doc":
  6672. aTool = 6;
  6673. _iframe = $$("iframe", {
  6674. "frameborder": "no",
  6675. "border": "0",
  6676. "scrolling ": "no",
  6677. "style": {
  6678. "cssText": "border:0;width:100%;height:100%"
  6679. },
  6680. "src": "/Office/Word/WordEditArea.htm"
  6681. })
  6682. _box.appendChild(_iframe);
  6683. _box.appendChild(_jie);
  6684. _formdiv = new U.UF.UI.form(
  6685. "协同文档",
  6686. _box, {
  6687. "id": "doc" + cid + stage + task + tool,
  6688. "style": {
  6689. "width": "90%",
  6690. "height": "90%",
  6691. "overflow": 'hidden'
  6692. },
  6693. "onresize": function () { }
  6694. }, {
  6695. closecallback: function () { }
  6696. }, {
  6697. "style": {
  6698. "height": "36px"
  6699. }
  6700. }).form; //创建窗体
  6701. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6702. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6703. })
  6704. _taskbar = {
  6705. "id": str + _formdiv.id,
  6706. "style": {
  6707. "backgroundImage": "url(/img/icon/doc.png)"
  6708. },
  6709. "name": "协同文档",
  6710. "forms": _formdiv,
  6711. "click": function () {
  6712. U.MD.D.I.openApplication(str, obj, info);
  6713. }
  6714. }
  6715. break;
  6716. case "mindNetwork": //好友打开
  6717. aTool = 7;
  6718. _iframe = $$("iframe", {
  6719. "webkitallowfullscreen": "",
  6720. "mozallowfullscreen": "",
  6721. "allowfullscreen": "",
  6722. "frameborder": "no",
  6723. "border": "0",
  6724. "scrolling ": "no",
  6725. "style": {
  6726. "cssText": "border:0; width:100%; height:100%;"
  6727. },
  6728. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  6729. })
  6730. _box.appendChild(_iframe);
  6731. _box.appendChild(_jie);
  6732. _formdiv = new U.UF.UI.form(
  6733. "思维网格",
  6734. _box, {
  6735. "id": "mindNetwork" + cid + stage + task + tool,
  6736. "style": {
  6737. "width": "90%",
  6738. "height": "90%",
  6739. "overflow": 'hidden'
  6740. },
  6741. "onresize": function () { }
  6742. }, {
  6743. closecallback: function () { }
  6744. }, {
  6745. "style": {
  6746. "height": "36px"
  6747. }
  6748. }).form; //创建窗体
  6749. _taskbar = {
  6750. "id": str + _formdiv.id,
  6751. "style": {
  6752. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  6753. },
  6754. "name": "思维网格",
  6755. "forms": _formdiv,
  6756. "click": function () {
  6757. U.MD.D.I.openApplication(str, obj, info);
  6758. }
  6759. }
  6760. break;
  6761. case "courseDesign":
  6762. _iframe = $$("iframe", {
  6763. "webkitallowfullscreen": "",
  6764. "mozallowfullscreen": "",
  6765. "allowfullscreen": "",
  6766. "frameborder": "no",
  6767. "border": "0",
  6768. "scrolling ": "no",
  6769. "style": {
  6770. "cssText": "border:0; width:100%; height:100%;"
  6771. },
  6772. "src": "/course-design-vue"
  6773. })
  6774. _box.appendChild(_iframe);
  6775. _box.appendChild(_jie);
  6776. _formdiv = new U.UF.UI.form(
  6777. "项目设计",
  6778. _box, {
  6779. "id": "courseDesign" + cid + stage + task + tool,
  6780. "style": {
  6781. "width": "90%",
  6782. "height": "90%",
  6783. "overflow": 'hidden'
  6784. },
  6785. "onresize": function () { }
  6786. }, {
  6787. closecallback: function () { }
  6788. }, {
  6789. "style": {
  6790. "height": "36px"
  6791. }
  6792. }).form; //创建窗体
  6793. _taskbar = {
  6794. "id": str + _formdiv.id,
  6795. "style": {
  6796. "backgroundImage": "url(/img/icon/courseDesign.png)"
  6797. },
  6798. "name": "项目设计",
  6799. "forms": _formdiv,
  6800. "click": function () {
  6801. U.MD.D.I.openApplication(str, obj, info);
  6802. }
  6803. }
  6804. break;
  6805. }
  6806. const script1 = document.createElement("script");
  6807. script1.type = "text/javascript";
  6808. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  6809. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  6810. const script2 = document.createElement("script");
  6811. script2.type = "text/javascript";
  6812. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  6813. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  6814. const script3 = document.createElement("script");
  6815. script3.type = "text/javascript";
  6816. script3.charset = "UTF-8";
  6817. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  6818. const script4 = document.createElement("script");
  6819. script4.type = "text/javascript";
  6820. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  6821. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  6822. if (_iframe) {
  6823. if (str == 'doc') {
  6824. _iframe = _formdiv.querySelector('iframe')
  6825. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6826. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  6827. _iframe.contentWindow.document.body.appendChild(script1);
  6828. _iframe.contentWindow.document.body.appendChild(script2);
  6829. // _iframe.contentWindow.document.body.appendChild(script3);
  6830. _iframe.contentWindow.document.body.appendChild(script4);
  6831. })
  6832. if (onloadListener) {
  6833. _iframe.contentDocument.location.reload()
  6834. } else {
  6835. _iframe.contentDocument.location.reload()
  6836. }
  6837. } else if (str == 'courseDesign') {
  6838. U.UF.DL.iframeLoad(_iframe, function () {
  6839. // _iframe.contentWindow.U.MD.O.W.load();
  6840. // _iframe.contentWindow.document.body.appendChild(script1);
  6841. _iframe.contentWindow.document.body.appendChild(script2);
  6842. _iframe.contentWindow.document.body.appendChild(script4);
  6843. })
  6844. } else if (str == 'mind') {
  6845. _iframe = _formdiv.querySelector('iframe')
  6846. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  6847. //
  6848. _iframe.contentWindow.document.body.appendChild(script1);
  6849. _iframe.contentWindow.document.body.appendChild(script2);
  6850. _iframe.contentWindow.document.body.appendChild(script4);
  6851. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  6852. })
  6853. if (onloadListener) {
  6854. _iframe.contentDocument.location.reload()
  6855. } else {
  6856. _iframe.contentDocument.location.reload()
  6857. }
  6858. } else if (str == 'whiteboard') {
  6859. _iframe = _formdiv.querySelector('iframe')
  6860. let onloadListener = _iframe.onload = () => {
  6861. _iframe.contentWindow.document.body.appendChild(script1);
  6862. _iframe.contentWindow.document.body.appendChild(script2);
  6863. _iframe.contentWindow.document.body.appendChild(script4);
  6864. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  6865. };
  6866. // if (onloadListener) {
  6867. // try {
  6868. // _iframe.src += "?cocorobo="+new Date().getTime()
  6869. // _iframe.contentWindow.document.location.reload()
  6870. // } catch (error) {
  6871. // }
  6872. // } else {
  6873. // _iframe.contentDocument.location.reload()
  6874. // }
  6875. } else {
  6876. _iframe.onload = () => {
  6877. _iframe.contentWindow.document.body.appendChild(script1);
  6878. _iframe.contentWindow.document.body.appendChild(script2);
  6879. // _iframe.contentWindow.document.body.appendChild(script3);
  6880. _iframe.contentWindow.document.body.appendChild(script4);
  6881. };
  6882. }
  6883. _jie.onclick = async () => {
  6884. let text = ''
  6885. if (aTool == 1) {
  6886. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  6887. } else if (aTool == 6) {
  6888. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  6889. } else if (aTool == 3) {
  6890. text = await U.MD.D.I.getEditorContent(_iframe);
  6891. }
  6892. _loading.style.display = 'flex'
  6893. console.log(_loading);
  6894. var _ajs = _iframe.contentWindow.document.createElement("script");
  6895. _ajs.type = "text/javascript";
  6896. _ajs.innerHTML =
  6897. // 'console.log(' + _loading + ');\n' +
  6898. 'var _js = document.createElement("script");\n' +
  6899. '_js.type="text/javascript";\n' +
  6900. '_js.charset="UTF-8";\n' +
  6901. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  6902. "_js.onload = function(){\n" +
  6903. ' var a = document.getElementsByTagName("img")\n' +
  6904. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  6905. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  6906. '  var base64Url = canvas.toDataURL("image/png");\n' +
  6907. 'var base64 = "<img src=" + base64Url + " />"\n' +
  6908. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  6909. "beforeUpload_shishi(file," +
  6910. "'" +
  6911. _userid +
  6912. "'" +
  6913. ", " +
  6914. "'" +
  6915. _cid +
  6916. "'" +
  6917. ", " +
  6918. "'" +
  6919. _stage +
  6920. "'" +
  6921. ", " +
  6922. "'" +
  6923. _task +
  6924. "'" +
  6925. ", " +
  6926. "'" +
  6927. _tool +
  6928. "'" +
  6929. ", " +
  6930. "'" +
  6931. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  6932. "'" +
  6933. ", " +
  6934. "'" +
  6935. aTool +
  6936. "'" +
  6937. ", " +
  6938. "`" +
  6939. text +
  6940. "`" +
  6941. ")\n" +
  6942. " });\n" +
  6943. "}\n" +
  6944. "document.head.appendChild(_js);\n";
  6945. _iframe.contentWindow.document.head.appendChild(_ajs);
  6946. }
  6947. }
  6948. //U.MD.D.I.openClick(str);
  6949. //如果有任务栏信息
  6950. // if (_taskbar) {
  6951. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6952. // }
  6953. }
  6954. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  6955. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  6956. _formdiv, //创建任务栏时同时弹出的窗体元素。
  6957. _userinfo = US.userInfo, //登录用户信息
  6958. _userid = US.userInfo.userid //登录用户id
  6959. let _iframe;
  6960. let _cid = cid,
  6961. _stage = stage,
  6962. _task = task,
  6963. _tool = tool;
  6964. var _jie = $$("div", {
  6965. "style": {
  6966. "position": "absolute",
  6967. "bottom": "50px",
  6968. "right": "50px",
  6969. "zIndex": "9999",
  6970. "backgroundColor": "#2268bc",
  6971. "color": "#fff",
  6972. "padding": "12px 20px",
  6973. "cursor": "pointer",
  6974. "borderRadius": "4px",
  6975. },
  6976. "innerHTML": "提交作业"
  6977. })
  6978. let aTool = ''
  6979. let _loading = document.createElement('div')
  6980. _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;"
  6981. // _loading.id = "";
  6982. let _lchild = document.createElement('div')
  6983. let _limg = document.createElement('img')
  6984. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  6985. _limg.style = "width: 26px;margin-right: 10px;"
  6986. _lchild.appendChild(_limg)
  6987. let _lspan = document.createElement('span')
  6988. _lspan.innerHTML = "上传中..."
  6989. _lchild.appendChild(_lspan)
  6990. _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%);"
  6991. _loading.appendChild(_lchild)
  6992. let _box = $$('div', {
  6993. "style": {
  6994. "position": "relative",
  6995. "width": "100%",
  6996. "height": "100%",
  6997. },
  6998. })
  6999. _box.appendChild(_loading)
  7000. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7001. switch (str) {
  7002. case "whiteboard":
  7003. aTool = 1;
  7004. _iframe = $$("iframe", {
  7005. "frameborder": "no",
  7006. "border": "0",
  7007. "scrolling ": "no",
  7008. "style": {
  7009. "cssText": "border:0;width:100%;height:100%"
  7010. },
  7011. "src": "https://beta.iwb.cocorobo.cn/"
  7012. })
  7013. _box.appendChild(_iframe);
  7014. _box.appendChild(_jie);
  7015. _formdiv = new U.UF.UI.form(
  7016. "电子白板",
  7017. _box, {
  7018. "id": "whiteboard" + cid + stage + task + tool,
  7019. "style": {
  7020. "width": "90%",
  7021. "height": "90%",
  7022. "overflow": 'hidden'
  7023. },
  7024. "onresize": function () { }
  7025. }, {
  7026. closecallback: function () { }
  7027. }, {
  7028. "style": {
  7029. "height": "36px"
  7030. }
  7031. }).form; //创建窗体
  7032. _taskbar = {
  7033. "id": str + _formdiv.id,
  7034. "style": {
  7035. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7036. },
  7037. "name": "电子白板",
  7038. "forms": _formdiv,
  7039. "click": function () {
  7040. U.MD.D.I.openApplication(str, obj, info);
  7041. }
  7042. }
  7043. break;
  7044. case "mind":
  7045. aTool = 3;
  7046. _iframe = $$("iframe", {
  7047. "frameborder": "no",
  7048. "border": "0",
  7049. "scrolling ": "no",
  7050. "style": {
  7051. "cssText": "border:0;width:100%;height:100%"
  7052. },
  7053. "src": "/kityminder-editor/dist/index.html"
  7054. })
  7055. _box.appendChild(_iframe);
  7056. _box.appendChild(_jie);
  7057. _formdiv = new U.UF.UI.form(
  7058. "思维导图",
  7059. _box, { //"/jsmind/example/demo.html"
  7060. "id": "mind" + cid + stage + task + tool,
  7061. "style": {
  7062. "width": "90%",
  7063. "height": "90%",
  7064. "overflow": 'hidden'
  7065. },
  7066. "onresize": function () { }
  7067. }, {
  7068. closecallback: function () { }
  7069. }, {
  7070. "style": {
  7071. "height": "36px"
  7072. }
  7073. }).form; //创建窗体
  7074. _taskbar = {
  7075. "id": str + _formdiv.id,
  7076. "style": {
  7077. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7078. },
  7079. "name": "思维导图",
  7080. "forms": _formdiv,
  7081. "click": function () {
  7082. U.MD.D.I.openApplication(str, obj, info);
  7083. }
  7084. }
  7085. break;
  7086. case "MindMap":
  7087. aTool = 3;
  7088. _iframe = $$("iframe", {
  7089. "frameborder": "no",
  7090. "border": "0",
  7091. "scrolling ": "no",
  7092. "style": {
  7093. "cssText": "border:0;width:100%;height:100%"
  7094. },
  7095. "src": "//cloud.cocorobo.cn/mind/"
  7096. })
  7097. _box.appendChild(_iframe);
  7098. _box.appendChild(_jie);
  7099. _formdiv = new U.UF.UI.form(
  7100. "思维导图",
  7101. _box, { //"/jsmind/example/demo.html"
  7102. "id": "mind" + cid + stage + task + tool,
  7103. "style": {
  7104. "width": "90%",
  7105. "height": "90%",
  7106. "overflow": 'hidden'
  7107. },
  7108. "onresize": function () { }
  7109. }, {
  7110. closecallback: function () { }
  7111. }, {
  7112. "style": {
  7113. "height": "36px"
  7114. }
  7115. }).form; //创建窗体
  7116. _taskbar = {
  7117. "id": str + _formdiv.id,
  7118. "style": {
  7119. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7120. },
  7121. "name": "思维导图",
  7122. "forms": _formdiv,
  7123. "click": function () {
  7124. U.MD.D.I.openApplication(str, obj, info);
  7125. }
  7126. }
  7127. break;
  7128. case "doc":
  7129. aTool = 6;
  7130. _iframe = $$("iframe", {
  7131. "frameborder": "no",
  7132. "border": "0",
  7133. "scrolling ": "no",
  7134. "style": {
  7135. "cssText": "border:0;width:100%;height:100%"
  7136. },
  7137. "src": "/Office/Word/WordEditArea.htm"
  7138. })
  7139. _box.appendChild(_iframe);
  7140. _box.appendChild(_jie);
  7141. _formdiv = new U.UF.UI.form(
  7142. "协同文档",
  7143. _box, {
  7144. "id": "doc" + cid + stage + task + tool,
  7145. "style": {
  7146. "width": "90%",
  7147. "height": "90%",
  7148. "overflow": 'hidden'
  7149. },
  7150. "onresize": function () { }
  7151. }, {
  7152. closecallback: function () { }
  7153. }, {
  7154. "style": {
  7155. "height": "36px"
  7156. }
  7157. }).form; //创建窗体
  7158. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7159. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7160. })
  7161. _taskbar = {
  7162. "id": str + _formdiv.id,
  7163. "style": {
  7164. "backgroundImage": "url(/img/icon/doc.png)"
  7165. },
  7166. "name": "协同文档",
  7167. "forms": _formdiv,
  7168. "click": function () {
  7169. U.MD.D.I.openApplication(str, obj, info);
  7170. }
  7171. }
  7172. break;
  7173. case "mindNetwork": //好友打开
  7174. aTool = 7;
  7175. _iframe = $$("iframe", {
  7176. "webkitallowfullscreen": "",
  7177. "mozallowfullscreen": "",
  7178. "allowfullscreen": "",
  7179. "frameborder": "no",
  7180. "border": "0",
  7181. "scrolling ": "no",
  7182. "style": {
  7183. "cssText": "border:0; width:100%; height:100%;"
  7184. },
  7185. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7186. })
  7187. _box.appendChild(_iframe);
  7188. _box.appendChild(_jie);
  7189. _formdiv = new U.UF.UI.form(
  7190. "思维网格",
  7191. _box, {
  7192. "id": "mindNetwork" + cid + stage + task + tool,
  7193. "style": {
  7194. "width": "90%",
  7195. "height": "90%",
  7196. "overflow": 'hidden'
  7197. },
  7198. "onresize": function () { }
  7199. }, {
  7200. closecallback: function () { }
  7201. }, {
  7202. "style": {
  7203. "height": "36px"
  7204. }
  7205. }).form; //创建窗体
  7206. _taskbar = {
  7207. "id": str + _formdiv.id,
  7208. "style": {
  7209. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7210. },
  7211. "name": "思维网格",
  7212. "forms": _formdiv,
  7213. "click": function () {
  7214. U.MD.D.I.openApplication(str, obj, info);
  7215. }
  7216. }
  7217. break;
  7218. case "courseDesign":
  7219. _iframe = $$("iframe", {
  7220. "webkitallowfullscreen": "",
  7221. "mozallowfullscreen": "",
  7222. "allowfullscreen": "",
  7223. "frameborder": "no",
  7224. "border": "0",
  7225. "scrolling ": "no",
  7226. "style": {
  7227. "cssText": "border:0; width:100%; height:100%;"
  7228. },
  7229. "src": "/course-design-vue"
  7230. })
  7231. _box.appendChild(_iframe);
  7232. _box.appendChild(_jie);
  7233. _formdiv = new U.UF.UI.form(
  7234. "项目设计",
  7235. _box, {
  7236. "id": "courseDesign" + cid + stage + task + tool,
  7237. "style": {
  7238. "width": "90%",
  7239. "height": "90%",
  7240. "overflow": 'hidden'
  7241. },
  7242. "onresize": function () { }
  7243. }, {
  7244. closecallback: function () { }
  7245. }, {
  7246. "style": {
  7247. "height": "36px"
  7248. }
  7249. }).form; //创建窗体
  7250. _taskbar = {
  7251. "id": str + _formdiv.id,
  7252. "style": {
  7253. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7254. },
  7255. "name": "项目设计",
  7256. "forms": _formdiv,
  7257. "click": function () {
  7258. U.MD.D.I.openApplication(str, obj, info);
  7259. }
  7260. }
  7261. break;
  7262. }
  7263. const script1 = document.createElement("script");
  7264. script1.type = "text/javascript";
  7265. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7266. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7267. const script2 = document.createElement("script");
  7268. script2.type = "text/javascript";
  7269. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7270. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7271. const script3 = document.createElement("script");
  7272. script3.type = "text/javascript";
  7273. script3.charset = "UTF-8";
  7274. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7275. const script4 = document.createElement("script");
  7276. script4.type = "text/javascript";
  7277. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7278. script4.src = window.origin + "/js/Common/jietu2E.js";
  7279. if (_iframe) {
  7280. if (str == 'doc') {
  7281. _iframe = _formdiv.querySelector('iframe')
  7282. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7283. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7284. _iframe.contentWindow.document.body.appendChild(script1);
  7285. _iframe.contentWindow.document.body.appendChild(script2);
  7286. // _iframe.contentWindow.document.body.appendChild(script3);
  7287. _iframe.contentWindow.document.body.appendChild(script4);
  7288. })
  7289. if (onloadListener) {
  7290. _iframe.contentDocument.location.reload()
  7291. } else {
  7292. _iframe.contentDocument.location.reload()
  7293. }
  7294. } else if (str == 'courseDesign') {
  7295. U.UF.DL.iframeLoad(_iframe, function () {
  7296. // _iframe.contentWindow.U.MD.O.W.load();
  7297. // _iframe.contentWindow.document.body.appendChild(script1);
  7298. _iframe.contentWindow.document.body.appendChild(script2);
  7299. _iframe.contentWindow.document.body.appendChild(script4);
  7300. })
  7301. } else if (str == 'mind') {
  7302. _iframe = _formdiv.querySelector('iframe')
  7303. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7304. //
  7305. _iframe.contentWindow.document.body.appendChild(script1);
  7306. _iframe.contentWindow.document.body.appendChild(script2);
  7307. _iframe.contentWindow.document.body.appendChild(script4);
  7308. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7309. })
  7310. if (onloadListener) {
  7311. _iframe.contentDocument.location.reload()
  7312. } else {
  7313. _iframe.contentDocument.location.reload()
  7314. }
  7315. } else if (str == 'whiteboard') {
  7316. _iframe = _formdiv.querySelector('iframe')
  7317. let onloadListener = _iframe.onload = () => {
  7318. _iframe.contentWindow.document.body.appendChild(script1);
  7319. _iframe.contentWindow.document.body.appendChild(script2);
  7320. _iframe.contentWindow.document.body.appendChild(script4);
  7321. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7322. };
  7323. // if (onloadListener) {
  7324. // try {
  7325. // _iframe.src += "?cocorobo="+new Date().getTime()
  7326. // _iframe.contentWindow.document.location.reload()
  7327. // } catch (error) {
  7328. // }
  7329. // } else {
  7330. // _iframe.contentDocument.location.reload()
  7331. // }
  7332. } else {
  7333. _iframe.onload = () => {
  7334. _iframe.contentWindow.document.body.appendChild(script1);
  7335. _iframe.contentWindow.document.body.appendChild(script2);
  7336. // _iframe.contentWindow.document.body.appendChild(script3);
  7337. _iframe.contentWindow.document.body.appendChild(script4);
  7338. };
  7339. }
  7340. _jie.onclick = async () => {
  7341. let text = ''
  7342. if (aTool == 1) {
  7343. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7344. } else if (aTool == 6) {
  7345. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7346. } else if (aTool == 3) {
  7347. text = await U.MD.D.I.getEditorContent(_iframe);
  7348. }
  7349. _loading.style.display = 'flex'
  7350. console.log(_loading);
  7351. var _ajs = _iframe.contentWindow.document.createElement("script");
  7352. _ajs.type = "text/javascript";
  7353. _ajs.innerHTML =
  7354. // 'console.log(' + _loading + ');\n' +
  7355. 'var _js = document.createElement("script");\n' +
  7356. '_js.type="text/javascript";\n' +
  7357. '_js.charset="UTF-8";\n' +
  7358. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7359. "_js.onload = function(){\n" +
  7360. ' var a = document.getElementsByTagName("img")\n' +
  7361. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7362. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7363. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7364. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7365. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7366. "beforeUpload_shishi(file," +
  7367. "'" +
  7368. _userid +
  7369. "'" +
  7370. ", " +
  7371. "'" +
  7372. _cid +
  7373. "'" +
  7374. ", " +
  7375. "'" +
  7376. _stage +
  7377. "'" +
  7378. ", " +
  7379. "'" +
  7380. _task +
  7381. "'" +
  7382. ", " +
  7383. "'" +
  7384. _tool +
  7385. "'" +
  7386. ", " +
  7387. "'" +
  7388. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7389. "'" +
  7390. ", " +
  7391. "'" +
  7392. aTool +
  7393. "'" +
  7394. ", " +
  7395. "`" +
  7396. text +
  7397. "`" +
  7398. ")\n" +
  7399. " });\n" +
  7400. "}\n" +
  7401. "document.head.appendChild(_js);\n";
  7402. _iframe.contentWindow.document.head.appendChild(_ajs);
  7403. }
  7404. }
  7405. //U.MD.D.I.openClick(str);
  7406. //如果有任务栏信息
  7407. // if (_taskbar) {
  7408. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7409. // }
  7410. }
  7411. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7412. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7413. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7414. _userid = student.userid, //登录用户id
  7415. _username = student.student //用户名字
  7416. let _iframe;
  7417. let _cid = cid,
  7418. _stage = stage,
  7419. _task = task,
  7420. _tool = tool;
  7421. var _jie = $$("div", {
  7422. "style": {
  7423. "position": "absolute",
  7424. "bottom": "50px",
  7425. "right": "50px",
  7426. "zIndex": "9999",
  7427. "backgroundColor": "#2268bc",
  7428. "color": "#fff",
  7429. "padding": "12px 20px",
  7430. "cursor": "pointer",
  7431. "borderRadius": "4px",
  7432. },
  7433. "innerHTML": "提交作业"
  7434. })
  7435. let aTool = ''
  7436. let _loading = document.createElement('div')
  7437. _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;"
  7438. // _loading.id = "";
  7439. let _lchild = document.createElement('div')
  7440. let _limg = document.createElement('img')
  7441. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7442. _limg.style = "width: 26px;margin-right: 10px;"
  7443. _lchild.appendChild(_limg)
  7444. let _lspan = document.createElement('span')
  7445. _lspan.innerHTML = "上传中..."
  7446. _lchild.appendChild(_lspan)
  7447. _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%);"
  7448. _loading.appendChild(_lchild)
  7449. var _box = $$('div', {
  7450. "style": {
  7451. "position": "relative",
  7452. "width": "100%",
  7453. "height": "100%",
  7454. },
  7455. })
  7456. _box.appendChild(_loading)
  7457. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  7458. switch (str) {
  7459. case "whiteboard":
  7460. aTool = 1;
  7461. _iframe = $$("iframe", {
  7462. "frameborder": "no",
  7463. "border": "0",
  7464. "scrolling ": "no",
  7465. "style": {
  7466. "cssText": "border:0;width:100%;height:100%"
  7467. },
  7468. "src": "https://beta.iwb.cocorobo.cn/"
  7469. })
  7470. _box.appendChild(_iframe);
  7471. _box.appendChild(_jie);
  7472. _formdiv = new U.UF.UI.form(
  7473. "电子白板-" + _username,
  7474. _box, {
  7475. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7476. "style": {
  7477. "width": "90%",
  7478. "height": "90%",
  7479. "overflow": 'hidden'
  7480. },
  7481. "onresize": function () { }
  7482. }, {
  7483. closecallback: function () { }
  7484. }, {
  7485. "style": {
  7486. "height": "36px"
  7487. }
  7488. }).form; //创建窗体
  7489. _taskbar = {
  7490. "id": str + _formdiv.id,
  7491. "style": {
  7492. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7493. },
  7494. "name": "电子白板",
  7495. "forms": _formdiv,
  7496. "click": function () {
  7497. U.MD.D.I.openApplication(str, obj, info);
  7498. }
  7499. }
  7500. break;
  7501. case "mind":
  7502. aTool = 3;
  7503. _iframe = $$("iframe", {
  7504. "frameborder": "no",
  7505. "border": "0",
  7506. "scrolling ": "no",
  7507. "style": {
  7508. "cssText": "border:0;width:100%;height:100%"
  7509. },
  7510. "src": "/kityminder-editor/dist/index.html"
  7511. })
  7512. _box.appendChild(_iframe);
  7513. _box.appendChild(_jie);
  7514. _formdiv = new U.UF.UI.form(
  7515. "思维导图-" + _username,
  7516. _box, { //"/jsmind/example/demo.html"
  7517. "id": "mind" + cid + stage + task + tool + _userid,
  7518. "style": {
  7519. "width": "90%",
  7520. "height": "90%",
  7521. "overflow": 'hidden'
  7522. },
  7523. "onresize": function () { }
  7524. }, {
  7525. closecallback: function () { }
  7526. }, {
  7527. "style": {
  7528. "height": "36px"
  7529. }
  7530. }).form; //创建窗体
  7531. _taskbar = {
  7532. "id": str + _formdiv.id,
  7533. "style": {
  7534. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7535. },
  7536. "name": "思维导图",
  7537. "forms": _formdiv,
  7538. "click": function () {
  7539. U.MD.D.I.openApplication(str, obj, info);
  7540. }
  7541. }
  7542. break;
  7543. case "MindMap":
  7544. aTool = 3;
  7545. _iframe = $$("iframe", {
  7546. "frameborder": "no",
  7547. "border": "0",
  7548. "scrolling ": "no",
  7549. "style": {
  7550. "cssText": "border:0;width:100%;height:100%"
  7551. },
  7552. "src": "//cloud.cocorobo.cn/mind/"
  7553. })
  7554. _box.appendChild(_iframe);
  7555. _box.appendChild(_jie);
  7556. _formdiv = new U.UF.UI.form(
  7557. "思维导图-" + _username,
  7558. _box, { //"/jsmind/example/demo.html"
  7559. "id": "mind" + cid + stage + task + tool + _userid,
  7560. "style": {
  7561. "width": "90%",
  7562. "height": "90%",
  7563. "overflow": 'hidden'
  7564. },
  7565. "onresize": function () { }
  7566. }, {
  7567. closecallback: function () { }
  7568. }, {
  7569. "style": {
  7570. "height": "36px"
  7571. }
  7572. }).form; //创建窗体
  7573. _taskbar = {
  7574. "id": str + _formdiv.id,
  7575. "style": {
  7576. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7577. },
  7578. "name": "思维导图",
  7579. "forms": _formdiv,
  7580. "click": function () {
  7581. U.MD.D.I.openApplication(str, obj, info);
  7582. }
  7583. }
  7584. break;
  7585. case "doc":
  7586. aTool = 6;
  7587. _iframe = $$("iframe", {
  7588. "frameborder": "no",
  7589. "border": "0",
  7590. "scrolling ": "no",
  7591. "style": {
  7592. "cssText": "border:0;width:100%;height:100%"
  7593. },
  7594. "src": "/Office/Word/WordEditArea.htm"
  7595. })
  7596. _box.appendChild(_iframe);
  7597. _box.appendChild(_jie);
  7598. _formdiv = new U.UF.UI.form(
  7599. "协同文档-" + _username,
  7600. _box, {
  7601. "id": "doc" + cid + stage + task + tool + _userid,
  7602. "style": {
  7603. "width": "90%",
  7604. "height": "90%",
  7605. "overflow": 'hidden'
  7606. },
  7607. "onresize": function () { }
  7608. }, {
  7609. closecallback: function () { }
  7610. }, {
  7611. "style": {
  7612. "height": "36px"
  7613. }
  7614. }).form; //创建窗体
  7615. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7616. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7617. })
  7618. _taskbar = {
  7619. "id": str + _formdiv.id,
  7620. "style": {
  7621. "backgroundImage": "url(/img/icon/doc.png)"
  7622. },
  7623. "name": "协同文档",
  7624. "forms": _formdiv,
  7625. "click": function () {
  7626. U.MD.D.I.openApplication(str, obj, info);
  7627. }
  7628. }
  7629. break;
  7630. case "mindNetwork": //好友打开
  7631. aTool = 7;
  7632. _iframe = $$("iframe", {
  7633. "webkitallowfullscreen": "",
  7634. "mozallowfullscreen": "",
  7635. "allowfullscreen": "",
  7636. "frameborder": "no",
  7637. "border": "0",
  7638. "scrolling ": "no",
  7639. "style": {
  7640. "cssText": "border:0; width:100%; height:100%;"
  7641. },
  7642. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7643. })
  7644. _box.appendChild(_iframe);
  7645. _box.appendChild(_jie);
  7646. _formdiv = new U.UF.UI.form(
  7647. "思维网格-" + _username,
  7648. _box, {
  7649. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  7650. "style": {
  7651. "width": "90%",
  7652. "height": "90%",
  7653. "overflow": 'hidden'
  7654. },
  7655. "onresize": function () { }
  7656. }, {
  7657. closecallback: function () { }
  7658. }, {
  7659. "style": {
  7660. "height": "36px"
  7661. }
  7662. }).form; //创建窗体
  7663. _taskbar = {
  7664. "id": str + _formdiv.id,
  7665. "style": {
  7666. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7667. },
  7668. "name": "思维网格",
  7669. "forms": _formdiv,
  7670. "click": function () {
  7671. U.MD.D.I.openApplication(str, obj, info);
  7672. }
  7673. }
  7674. break;
  7675. case "courseDesign":
  7676. _iframe = $$("iframe", {
  7677. "webkitallowfullscreen": "",
  7678. "mozallowfullscreen": "",
  7679. "allowfullscreen": "",
  7680. "frameborder": "no",
  7681. "border": "0",
  7682. "scrolling ": "no",
  7683. "style": {
  7684. "cssText": "border:0; width:100%; height:100%;"
  7685. },
  7686. "src": "/course-design-vue"
  7687. })
  7688. _box.appendChild(_iframe);
  7689. _box.appendChild(_jie);
  7690. _formdiv = new U.UF.UI.form(
  7691. "项目设计-" + _username,
  7692. _box, {
  7693. "id": "courseDesign" + cid + stage + task + tool + _userid,
  7694. "style": {
  7695. "width": "90%",
  7696. "height": "90%",
  7697. "overflow": 'hidden'
  7698. },
  7699. "onresize": function () { }
  7700. }, {
  7701. closecallback: function () { }
  7702. }, {
  7703. "style": {
  7704. "height": "36px"
  7705. }
  7706. }).form; //创建窗体
  7707. _taskbar = {
  7708. "id": str + _formdiv.id,
  7709. "style": {
  7710. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7711. },
  7712. "name": "项目设计",
  7713. "forms": _formdiv,
  7714. "click": function () {
  7715. U.MD.D.I.openApplication(str, obj, info);
  7716. }
  7717. }
  7718. break;
  7719. }
  7720. const script1 = document.createElement("script");
  7721. script1.type = "text/javascript";
  7722. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7723. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7724. const script2 = document.createElement("script");
  7725. script2.type = "text/javascript";
  7726. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7727. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7728. const script3 = document.createElement("script");
  7729. script3.type = "text/javascript";
  7730. script3.charset = "UTF-8";
  7731. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7732. const script4 = document.createElement("script");
  7733. script4.type = "text/javascript";
  7734. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7735. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7736. if (_iframe) {
  7737. if (str == 'doc') {
  7738. _iframe = _formdiv.querySelector('iframe')
  7739. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7740. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7741. _iframe.contentWindow.document.body.appendChild(script1);
  7742. _iframe.contentWindow.document.body.appendChild(script2);
  7743. // _iframe.contentWindow.document.body.appendChild(script3);
  7744. _iframe.contentWindow.document.body.appendChild(script4);
  7745. })
  7746. if (onloadListener) {
  7747. _iframe.contentDocument.location.reload()
  7748. } else {
  7749. _iframe.contentDocument.location.reload()
  7750. }
  7751. } else if (str == 'courseDesign') {
  7752. U.UF.DL.iframeLoad(_iframe, function () {
  7753. // _iframe.contentWindow.U.MD.O.W.load();
  7754. // _iframe.contentWindow.document.body.appendChild(script1);
  7755. _iframe.contentWindow.document.body.appendChild(script2);
  7756. _iframe.contentWindow.document.body.appendChild(script4);
  7757. })
  7758. } else if (str == 'mind') {
  7759. _iframe = _formdiv.querySelector('iframe')
  7760. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7761. //
  7762. _iframe.contentWindow.document.body.appendChild(script1);
  7763. _iframe.contentWindow.document.body.appendChild(script2);
  7764. _iframe.contentWindow.document.body.appendChild(script4);
  7765. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7766. })
  7767. if (onloadListener) {
  7768. _iframe.contentDocument.location.reload()
  7769. } else {
  7770. _iframe.contentDocument.location.reload()
  7771. }
  7772. } else if (str == 'whiteboard') {
  7773. _iframe = _formdiv.querySelector('iframe')
  7774. let onloadListener = _iframe.onload = () => {
  7775. _iframe.contentWindow.document.body.appendChild(script1);
  7776. _iframe.contentWindow.document.body.appendChild(script2);
  7777. _iframe.contentWindow.document.body.appendChild(script4);
  7778. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7779. };
  7780. // if (onloadListener) {
  7781. // try {
  7782. // _iframe.src += "?cocorobo="+new Date().getTime()
  7783. // _iframe.contentWindow.document.location.reload()
  7784. // } catch (error) {
  7785. // }
  7786. // } else {
  7787. // _iframe.contentDocument.location.reload()
  7788. // }
  7789. } else {
  7790. _iframe.onload = () => {
  7791. _iframe.contentWindow.document.body.appendChild(script1);
  7792. _iframe.contentWindow.document.body.appendChild(script2);
  7793. // _iframe.contentWindow.document.body.appendChild(script3);
  7794. _iframe.contentWindow.document.body.appendChild(script4);
  7795. };
  7796. }
  7797. _jie.onclick = async () => {
  7798. let text = ''
  7799. if (aTool == 1) {
  7800. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7801. } else if (aTool == 6) {
  7802. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7803. } else if (aTool == 3) {
  7804. text = await U.MD.D.I.getEditorContent(_iframe);
  7805. }
  7806. _loading.style.display = 'flex'
  7807. console.log(_loading);
  7808. var _ajs = _iframe.contentWindow.document.createElement("script");
  7809. _ajs.type = "text/javascript";
  7810. _ajs.innerHTML =
  7811. // 'console.log(' + _loading + ');\n' +
  7812. 'var _js = document.createElement("script");\n' +
  7813. '_js.type="text/javascript";\n' +
  7814. '_js.charset="UTF-8";\n' +
  7815. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7816. "_js.onload = function(){\n" +
  7817. ' var a = document.getElementsByTagName("img")\n' +
  7818. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7819. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7820. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7821. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7822. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7823. "beforeUpload_shishi(file," +
  7824. "'" +
  7825. _userid +
  7826. "'" +
  7827. ", " +
  7828. "'" +
  7829. _cid +
  7830. "'" +
  7831. ", " +
  7832. "'" +
  7833. _stage +
  7834. "'" +
  7835. ", " +
  7836. "'" +
  7837. _task +
  7838. "'" +
  7839. ", " +
  7840. "'" +
  7841. _tool +
  7842. "'" +
  7843. ", " +
  7844. "'" +
  7845. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  7846. "'" +
  7847. ", " +
  7848. "'" +
  7849. aTool +
  7850. "'" +
  7851. ", " +
  7852. "`" +
  7853. text +
  7854. "`" +
  7855. ")\n" +
  7856. " });\n" +
  7857. "}\n" +
  7858. "document.head.appendChild(_js);\n";
  7859. _iframe.contentWindow.document.head.appendChild(_ajs);
  7860. }
  7861. }
  7862. }
  7863. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  7864. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7865. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7866. _userid = student.userid, //登录用户id
  7867. _username = student.student //用户名字
  7868. let _iframe;
  7869. let _cid = cid,
  7870. _stage = stage,
  7871. _task = task,
  7872. _tool = tool;
  7873. var _jie = $$("div", {
  7874. "style": {
  7875. "position": "absolute",
  7876. "bottom": "50px",
  7877. "right": "50px",
  7878. "zIndex": "9999",
  7879. "backgroundColor": "#2268bc",
  7880. "color": "#fff",
  7881. "padding": "12px 20px",
  7882. "cursor": "pointer",
  7883. "borderRadius": "4px",
  7884. },
  7885. "innerHTML": "提交作业"
  7886. })
  7887. let aTool = ''
  7888. let _loading = document.createElement('div')
  7889. _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;"
  7890. // _loading.id = "";
  7891. let _lchild = document.createElement('div')
  7892. let _limg = document.createElement('img')
  7893. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7894. _limg.style = "width: 26px;margin-right: 10px;"
  7895. _lchild.appendChild(_limg)
  7896. let _lspan = document.createElement('span')
  7897. _lspan.innerHTML = "上传中..."
  7898. _lchild.appendChild(_lspan)
  7899. _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%);"
  7900. _loading.appendChild(_lchild)
  7901. var _box = $$('div', {
  7902. "style": {
  7903. "position": "relative",
  7904. "width": "100%",
  7905. "height": "100%",
  7906. },
  7907. })
  7908. _box.appendChild(_loading)
  7909. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  7910. switch (str) {
  7911. case "whiteboard":
  7912. aTool = 1;
  7913. _iframe = $$("iframe", {
  7914. "frameborder": "no",
  7915. "border": "0",
  7916. "scrolling ": "no",
  7917. "style": {
  7918. "cssText": "border:0;width:100%;height:100%"
  7919. },
  7920. "src": "https://beta.iwb.cocorobo.cn/"
  7921. })
  7922. _box.appendChild(_iframe);
  7923. _box.appendChild(_jie);
  7924. _formdiv = new U.UF.UI.form(
  7925. "电子白板-" + _username,
  7926. _box, {
  7927. "id": "whiteboard" + cid + stage + task + tool + _userid,
  7928. "style": {
  7929. "width": "90%",
  7930. "height": "90%",
  7931. "overflow": 'hidden'
  7932. },
  7933. "onresize": function () { }
  7934. }, {
  7935. closecallback: function () { }
  7936. }, {
  7937. "style": {
  7938. "height": "36px"
  7939. }
  7940. }).form; //创建窗体
  7941. _taskbar = {
  7942. "id": str + _formdiv.id,
  7943. "style": {
  7944. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7945. },
  7946. "name": "电子白板",
  7947. "forms": _formdiv,
  7948. "click": function () {
  7949. U.MD.D.I.openApplication(str, obj, info);
  7950. }
  7951. }
  7952. break;
  7953. case "mind":
  7954. aTool = 3;
  7955. _iframe = $$("iframe", {
  7956. "frameborder": "no",
  7957. "border": "0",
  7958. "scrolling ": "no",
  7959. "style": {
  7960. "cssText": "border:0;width:100%;height:100%"
  7961. },
  7962. "src": "/kityminder-editor/dist/index.html"
  7963. })
  7964. _box.appendChild(_iframe);
  7965. _box.appendChild(_jie);
  7966. _formdiv = new U.UF.UI.form(
  7967. "思维导图-" + _username,
  7968. _box, { //"/jsmind/example/demo.html"
  7969. "id": "mind" + cid + stage + task + tool + _userid,
  7970. "style": {
  7971. "width": "90%",
  7972. "height": "90%",
  7973. "overflow": 'hidden'
  7974. },
  7975. "onresize": function () { }
  7976. }, {
  7977. closecallback: function () { }
  7978. }, {
  7979. "style": {
  7980. "height": "36px"
  7981. }
  7982. }).form; //创建窗体
  7983. _taskbar = {
  7984. "id": str + _formdiv.id,
  7985. "style": {
  7986. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7987. },
  7988. "name": "思维导图",
  7989. "forms": _formdiv,
  7990. "click": function () {
  7991. U.MD.D.I.openApplication(str, obj, info);
  7992. }
  7993. }
  7994. break;
  7995. case "MindMap":
  7996. aTool = 3;
  7997. _iframe = $$("iframe", {
  7998. "frameborder": "no",
  7999. "border": "0",
  8000. "scrolling ": "no",
  8001. "style": {
  8002. "cssText": "border:0;width:100%;height:100%"
  8003. },
  8004. "src": "//cloud.cocorobo.cn/mind/"
  8005. })
  8006. _box.appendChild(_iframe);
  8007. _box.appendChild(_jie);
  8008. _formdiv = new U.UF.UI.form(
  8009. "思维导图-" + _username,
  8010. _box, { //"/jsmind/example/demo.html"
  8011. "id": "mind" + cid + stage + task + tool + _userid,
  8012. "style": {
  8013. "width": "90%",
  8014. "height": "90%",
  8015. "overflow": 'hidden'
  8016. },
  8017. "onresize": function () { }
  8018. }, {
  8019. closecallback: function () { }
  8020. }, {
  8021. "style": {
  8022. "height": "36px"
  8023. }
  8024. }).form; //创建窗体
  8025. _taskbar = {
  8026. "id": str + _formdiv.id,
  8027. "style": {
  8028. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8029. },
  8030. "name": "思维导图",
  8031. "forms": _formdiv,
  8032. "click": function () {
  8033. U.MD.D.I.openApplication(str, obj, info);
  8034. }
  8035. }
  8036. break;
  8037. case "doc":
  8038. aTool = 6;
  8039. _iframe = $$("iframe", {
  8040. "frameborder": "no",
  8041. "border": "0",
  8042. "scrolling ": "no",
  8043. "style": {
  8044. "cssText": "border:0;width:100%;height:100%"
  8045. },
  8046. "src": "/Office/Word/WordEditArea.htm"
  8047. })
  8048. _box.appendChild(_iframe);
  8049. _box.appendChild(_jie);
  8050. _formdiv = new U.UF.UI.form(
  8051. "协同文档-" + _username,
  8052. _box, {
  8053. "id": "doc" + cid + stage + task + tool + _userid,
  8054. "style": {
  8055. "width": "90%",
  8056. "height": "90%",
  8057. "overflow": 'hidden'
  8058. },
  8059. "onresize": function () { }
  8060. }, {
  8061. closecallback: function () { }
  8062. }, {
  8063. "style": {
  8064. "height": "36px"
  8065. }
  8066. }).form; //创建窗体
  8067. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8068. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8069. })
  8070. _taskbar = {
  8071. "id": str + _formdiv.id,
  8072. "style": {
  8073. "backgroundImage": "url(/img/icon/doc.png)"
  8074. },
  8075. "name": "协同文档",
  8076. "forms": _formdiv,
  8077. "click": function () {
  8078. U.MD.D.I.openApplication(str, obj, info);
  8079. }
  8080. }
  8081. break;
  8082. case "mindNetwork": //好友打开
  8083. aTool = 7;
  8084. _iframe = $$("iframe", {
  8085. "webkitallowfullscreen": "",
  8086. "mozallowfullscreen": "",
  8087. "allowfullscreen": "",
  8088. "frameborder": "no",
  8089. "border": "0",
  8090. "scrolling ": "no",
  8091. "style": {
  8092. "cssText": "border:0; width:100%; height:100%;"
  8093. },
  8094. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8095. })
  8096. _box.appendChild(_iframe);
  8097. _box.appendChild(_jie);
  8098. _formdiv = new U.UF.UI.form(
  8099. "思维网格-" + _username,
  8100. _box, {
  8101. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8102. "style": {
  8103. "width": "90%",
  8104. "height": "90%",
  8105. "overflow": 'hidden'
  8106. },
  8107. "onresize": function () { }
  8108. }, {
  8109. closecallback: function () { }
  8110. }, {
  8111. "style": {
  8112. "height": "36px"
  8113. }
  8114. }).form; //创建窗体
  8115. _taskbar = {
  8116. "id": str + _formdiv.id,
  8117. "style": {
  8118. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8119. },
  8120. "name": "思维网格",
  8121. "forms": _formdiv,
  8122. "click": function () {
  8123. U.MD.D.I.openApplication(str, obj, info);
  8124. }
  8125. }
  8126. break;
  8127. case "courseDesign":
  8128. _iframe = $$("iframe", {
  8129. "webkitallowfullscreen": "",
  8130. "mozallowfullscreen": "",
  8131. "allowfullscreen": "",
  8132. "frameborder": "no",
  8133. "border": "0",
  8134. "scrolling ": "no",
  8135. "style": {
  8136. "cssText": "border:0; width:100%; height:100%;"
  8137. },
  8138. "src": "/course-design-vue"
  8139. })
  8140. _box.appendChild(_iframe);
  8141. _box.appendChild(_jie);
  8142. _formdiv = new U.UF.UI.form(
  8143. "项目设计-" + _username,
  8144. _box, {
  8145. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8146. "style": {
  8147. "width": "90%",
  8148. "height": "90%",
  8149. "overflow": 'hidden'
  8150. },
  8151. "onresize": function () { }
  8152. }, {
  8153. closecallback: function () { }
  8154. }, {
  8155. "style": {
  8156. "height": "36px"
  8157. }
  8158. }).form; //创建窗体
  8159. _taskbar = {
  8160. "id": str + _formdiv.id,
  8161. "style": {
  8162. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8163. },
  8164. "name": "项目设计",
  8165. "forms": _formdiv,
  8166. "click": function () {
  8167. U.MD.D.I.openApplication(str, obj, info);
  8168. }
  8169. }
  8170. break;
  8171. }
  8172. const script1 = document.createElement("script");
  8173. script1.type = "text/javascript";
  8174. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8175. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8176. const script2 = document.createElement("script");
  8177. script2.type = "text/javascript";
  8178. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8179. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8180. const script3 = document.createElement("script");
  8181. script3.type = "text/javascript";
  8182. script3.charset = "UTF-8";
  8183. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8184. const script4 = document.createElement("script");
  8185. script4.type = "text/javascript";
  8186. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8187. script4.src = window.origin + "/js/Common/jietu2E.js";
  8188. if (_iframe) {
  8189. if (str == 'doc') {
  8190. _iframe = _formdiv.querySelector('iframe')
  8191. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8192. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8193. _iframe.contentWindow.document.body.appendChild(script1);
  8194. _iframe.contentWindow.document.body.appendChild(script2);
  8195. // _iframe.contentWindow.document.body.appendChild(script3);
  8196. _iframe.contentWindow.document.body.appendChild(script4);
  8197. })
  8198. if (onloadListener) {
  8199. _iframe.contentDocument.location.reload()
  8200. } else {
  8201. _iframe.contentDocument.location.reload()
  8202. }
  8203. } else if (str == 'courseDesign') {
  8204. U.UF.DL.iframeLoad(_iframe, function () {
  8205. // _iframe.contentWindow.U.MD.O.W.load();
  8206. // _iframe.contentWindow.document.body.appendChild(script1);
  8207. _iframe.contentWindow.document.body.appendChild(script2);
  8208. _iframe.contentWindow.document.body.appendChild(script4);
  8209. })
  8210. } else if (str == 'mind') {
  8211. _iframe = _formdiv.querySelector('iframe')
  8212. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8213. //
  8214. _iframe.contentWindow.document.body.appendChild(script1);
  8215. _iframe.contentWindow.document.body.appendChild(script2);
  8216. _iframe.contentWindow.document.body.appendChild(script4);
  8217. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8218. })
  8219. if (onloadListener) {
  8220. _iframe.contentDocument.location.reload()
  8221. } else {
  8222. _iframe.contentDocument.location.reload()
  8223. }
  8224. } else if (str == 'whiteboard') {
  8225. _iframe = _formdiv.querySelector('iframe')
  8226. let onloadListener = _iframe.onload = () => {
  8227. _iframe.contentWindow.document.body.appendChild(script1);
  8228. _iframe.contentWindow.document.body.appendChild(script2);
  8229. _iframe.contentWindow.document.body.appendChild(script4);
  8230. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8231. };
  8232. // if (onloadListener) {
  8233. // try {
  8234. // _iframe.src += "?cocorobo="+new Date().getTime()
  8235. // _iframe.contentWindow.document.location.reload()
  8236. // } catch (error) {
  8237. // }
  8238. // } else {
  8239. // _iframe.contentDocument.location.reload()
  8240. // }
  8241. } else {
  8242. _iframe.onload = () => {
  8243. _iframe.contentWindow.document.body.appendChild(script1);
  8244. _iframe.contentWindow.document.body.appendChild(script2);
  8245. // _iframe.contentWindow.document.body.appendChild(script3);
  8246. _iframe.contentWindow.document.body.appendChild(script4);
  8247. };
  8248. }
  8249. _jie.onclick = async () => {
  8250. let text = ''
  8251. if (aTool == 1) {
  8252. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8253. } else if (aTool == 6) {
  8254. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8255. } else if (aTool == 3) {
  8256. text = await U.MD.D.I.getEditorContent(_iframe);
  8257. }
  8258. _loading.style.display = 'flex'
  8259. console.log(_loading);
  8260. var _ajs = _iframe.contentWindow.document.createElement("script");
  8261. _ajs.type = "text/javascript";
  8262. _ajs.innerHTML =
  8263. // 'console.log(' + _loading + ');\n' +
  8264. 'var _js = document.createElement("script");\n' +
  8265. '_js.type="text/javascript";\n' +
  8266. '_js.charset="UTF-8";\n' +
  8267. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8268. "_js.onload = function(){\n" +
  8269. ' var a = document.getElementsByTagName("img")\n' +
  8270. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8271. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8272. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8273. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8274. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8275. "beforeUpload_shishi(file," +
  8276. "'" +
  8277. _userid +
  8278. "'" +
  8279. ", " +
  8280. "'" +
  8281. _cid +
  8282. "'" +
  8283. ", " +
  8284. "'" +
  8285. _stage +
  8286. "'" +
  8287. ", " +
  8288. "'" +
  8289. _task +
  8290. "'" +
  8291. ", " +
  8292. "'" +
  8293. _tool +
  8294. "'" +
  8295. ", " +
  8296. "'" +
  8297. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8298. "'" +
  8299. ", " +
  8300. "'" +
  8301. aTool +
  8302. "'" +
  8303. ", " +
  8304. "`" +
  8305. text +
  8306. "`" +
  8307. ")\n" +
  8308. " });\n" +
  8309. "}\n" +
  8310. "document.head.appendChild(_js);\n";
  8311. _iframe.contentWindow.document.head.appendChild(_ajs);
  8312. }
  8313. }
  8314. }
  8315. U.MD.D.I.getEditorContent = function (iframe) {
  8316. return new Promise((resolve, reject) => {
  8317. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8318. console.log(content);
  8319. resolve(content)
  8320. });
  8321. });
  8322. }
  8323. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8324. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8325. // if (res.value[0].length > 0) {
  8326. // // resolve(res.value[0][0].text);
  8327. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8328. // $(fileInput).val('');
  8329. // });
  8330. // }
  8331. // }, [], { "type": "GET", "withCredentials": true });
  8332. var xmlhttp;
  8333. var Mac, Sn, DeviceId
  8334. if (window.XMLHttpRequest) {
  8335. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8336. xmlhttp = new XMLHttpRequest();
  8337. } else {
  8338. // IE6, IE5 浏览器执行代码
  8339. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8340. }
  8341. xmlhttp.onreadystatechange = function () {
  8342. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8343. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8344. // resolve(res.value[0][0].text);
  8345. if (type == '2') {
  8346. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8347. } else if (type == '3') {
  8348. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8349. }
  8350. } else {
  8351. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8352. }
  8353. }
  8354. }
  8355. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8356. xmlhttp.send();
  8357. }
  8358. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8359. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8360. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8361. _userinfo = US.userInfo, //登录用户信息
  8362. _userid = US.userInfo.userid //登录用户id
  8363. let _iframe;
  8364. let _cid = cid,
  8365. _stage = stage,
  8366. _task = task,
  8367. _tool = tool;
  8368. var _jie = $$("div", {
  8369. "style": {
  8370. "position": "absolute",
  8371. "bottom": "50px",
  8372. "right": "50px",
  8373. "zIndex": "9999",
  8374. "backgroundColor": "#2268bc",
  8375. "color": "#fff",
  8376. "padding": "12px 20px",
  8377. "cursor": "pointer",
  8378. "borderRadius": "4px",
  8379. },
  8380. "innerHTML": "确认并提交"
  8381. })
  8382. let aTool = ''
  8383. let _loading = document.createElement('div')
  8384. _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;"
  8385. // _loading.id = "";
  8386. let _lchild = document.createElement('div')
  8387. let _limg = document.createElement('img')
  8388. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8389. _limg.style = "width: 26px;margin-right: 10px;"
  8390. _lchild.appendChild(_limg)
  8391. let _lspan = document.createElement('span')
  8392. _lspan.innerHTML = "上传中..."
  8393. _lchild.appendChild(_lspan)
  8394. _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%);"
  8395. _loading.appendChild(_lchild)
  8396. var _box = $$('div', {
  8397. "style": {
  8398. "position": "relative",
  8399. "width": "100%",
  8400. "height": "100%",
  8401. },
  8402. })
  8403. _box.appendChild(_loading)
  8404. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8405. switch (str) {
  8406. case "whiteboard":
  8407. aTool = 1;
  8408. _iframe = $$("iframe", {
  8409. "frameborder": "no",
  8410. "border": "0",
  8411. "scrolling ": "no",
  8412. "style": {
  8413. "cssText": "border:0;width:100%;height:100%"
  8414. },
  8415. "src": "https://beta.iwb.cocorobo.cn/"
  8416. })
  8417. _box.appendChild(_iframe);
  8418. _box.appendChild(_jie);
  8419. _formdiv = new U.UF.UI.form(
  8420. "电子白板",
  8421. _box, {
  8422. "id": "whiteboards" + cid + stage + task + tool,
  8423. "style": {
  8424. "width": "90%",
  8425. "height": "90%",
  8426. "overflow": 'hidden'
  8427. },
  8428. "onresize": function () { }
  8429. }, {
  8430. closecallback: function () { }
  8431. }, {
  8432. "style": {
  8433. "height": "36px"
  8434. }
  8435. }).form; //创建窗体
  8436. _taskbar = {
  8437. "id": str + _formdiv.id,
  8438. "style": {
  8439. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8440. },
  8441. "name": "电子白板",
  8442. "forms": _formdiv,
  8443. "click": function () {
  8444. U.MD.D.I.openApplication(str, obj, info);
  8445. }
  8446. }
  8447. break;
  8448. case "mind":
  8449. aTool = 3;
  8450. _iframe = $$("iframe", {
  8451. "frameborder": "no",
  8452. "border": "0",
  8453. "scrolling ": "no",
  8454. "style": {
  8455. "cssText": "border:0;width:100%;height:100%"
  8456. },
  8457. "src": "/kityminder-editor/dist/index.html"
  8458. });
  8459. _box.appendChild(_iframe);
  8460. _box.appendChild(_jie);
  8461. _formdiv = new U.UF.UI.form(
  8462. "思维导图",
  8463. _box, { //"/jsmind/example/demo.html"
  8464. "id": "minds" + cid + stage + task + tool,
  8465. "style": {
  8466. "width": "90%",
  8467. "height": "90%",
  8468. "overflow": 'hidden'
  8469. },
  8470. "onresize": function () { }
  8471. }, {
  8472. closecallback: function () { }
  8473. }, {
  8474. "style": {
  8475. "height": "36px"
  8476. }
  8477. }).form; //创建窗体
  8478. _taskbar = {
  8479. "id": str + _formdiv.id,
  8480. "style": {
  8481. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8482. },
  8483. "name": "思维导图",
  8484. "forms": _formdiv,
  8485. "click": function () {
  8486. U.MD.D.I.openApplication(str, obj, info);
  8487. }
  8488. }
  8489. break;
  8490. case "doc":
  8491. aTool = 6;
  8492. _iframe = $$("iframe", {
  8493. "frameborder": "no",
  8494. "border": "0",
  8495. "scrolling ": "no",
  8496. "style": {
  8497. "cssText": "border:0;width:100%;height:100%"
  8498. },
  8499. "src": "/Office/Word/WordEditArea.htm"
  8500. })
  8501. _box.appendChild(_iframe);
  8502. _box.appendChild(_jie);
  8503. _formdiv = new U.UF.UI.form(
  8504. "协同文档",
  8505. _box, {
  8506. "id": "docs" + cid + stage + task + tool,
  8507. "style": {
  8508. "width": "90%",
  8509. "height": "90%",
  8510. "overflow": 'hidden'
  8511. },
  8512. "onresize": function () { }
  8513. }, {
  8514. closecallback: function () { }
  8515. }, {
  8516. "style": {
  8517. "height": "36px"
  8518. }
  8519. }).form; //创建窗体
  8520. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8521. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8522. })
  8523. _taskbar = {
  8524. "id": str + _formdiv.id,
  8525. "style": {
  8526. "backgroundImage": "url(/img/icon/doc.png)"
  8527. },
  8528. "name": "协同文档",
  8529. "forms": _formdiv,
  8530. "click": function () {
  8531. U.MD.D.I.openApplication(str, obj, info);
  8532. }
  8533. }
  8534. break;
  8535. }
  8536. const script1 = document.createElement("script");
  8537. script1.type = "text/javascript";
  8538. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8539. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8540. const script2 = document.createElement("script");
  8541. script2.type = "text/javascript";
  8542. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8543. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8544. const script3 = document.createElement("script");
  8545. script3.type = "text/javascript";
  8546. script3.charset = "UTF-8";
  8547. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8548. const script4 = document.createElement("script");
  8549. script4.type = "text/javascript";
  8550. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8551. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  8552. if (_iframe) {
  8553. if (str == 'doc') {
  8554. _iframe = _formdiv.querySelector('iframe')
  8555. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8556. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8557. _iframe.contentWindow.document.body.appendChild(script1);
  8558. _iframe.contentWindow.document.body.appendChild(script2);
  8559. // _iframe.contentWindow.document.body.appendChild(script3);
  8560. _iframe.contentWindow.document.body.appendChild(script4);
  8561. })
  8562. if (onloadListener) {
  8563. _iframe.contentDocument.location.reload()
  8564. } else {
  8565. _iframe.contentDocument.location.reload()
  8566. }
  8567. } else if (str == 'mind') {
  8568. _iframe = _formdiv.querySelector('iframe')
  8569. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8570. _iframe.contentWindow.document.body.appendChild(script1);
  8571. _iframe.contentWindow.document.body.appendChild(script2);
  8572. _iframe.contentWindow.document.body.appendChild(script4);
  8573. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8574. })
  8575. if (onloadListener) {
  8576. _iframe.contentDocument.location.reload()
  8577. } else {
  8578. _iframe.contentDocument.location.reload()
  8579. }
  8580. } else {
  8581. _iframe.onload = () => {
  8582. _iframe.contentWindow.document.body.appendChild(script1);
  8583. _iframe.contentWindow.document.body.appendChild(script2);
  8584. // _iframe.contentWindow.document.body.appendChild(script3);
  8585. _iframe.contentWindow.document.body.appendChild(script4);
  8586. };
  8587. }
  8588. _jie.onclick = async () => {
  8589. let text = ''
  8590. if (aTool == 6) {
  8591. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8592. } else if (aTool == 3) {
  8593. text = await U.MD.D.I.getEditorContent(_iframe);
  8594. }
  8595. _loading.style.display = 'flex'
  8596. console.log(_loading);
  8597. var _ajs = _iframe.contentWindow.document.createElement("script");
  8598. _ajs.type = "text/javascript";
  8599. _ajs.innerHTML =
  8600. // 'console.log(' + _loading + ');\n' +
  8601. 'var _js = document.createElement("script");\n' +
  8602. '_js.type="text/javascript";\n' +
  8603. '_js.charset="UTF-8";\n' +
  8604. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8605. "_js.onload = function(){\n" +
  8606. ' var a = document.getElementsByTagName("img")\n' +
  8607. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8608. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8609. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8610. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8611. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8612. "beforeUpload_shishi(file," +
  8613. "'" +
  8614. _userid +
  8615. "'" +
  8616. ", " +
  8617. "'" +
  8618. _cid +
  8619. "'" +
  8620. ", " +
  8621. "'" +
  8622. _stage +
  8623. "'" +
  8624. ", " +
  8625. "'" +
  8626. _task +
  8627. "'" +
  8628. ", " +
  8629. "'" +
  8630. _tool +
  8631. "'" +
  8632. ", " +
  8633. "'" +
  8634. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  8635. "'" +
  8636. ", " +
  8637. "'" +
  8638. aTool +
  8639. "'" +
  8640. ", " +
  8641. "`" +
  8642. text +
  8643. "`" +
  8644. ")\n" +
  8645. " });\n" +
  8646. "}\n" +
  8647. "document.head.appendChild(_js);\n";
  8648. _iframe.contentWindow.document.head.appendChild(_ajs);
  8649. }
  8650. }
  8651. //U.MD.D.I.openClick(str);
  8652. //如果有任务栏信息
  8653. // if (_taskbar) {
  8654. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8655. // }
  8656. }
  8657. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  8658. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8659. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8660. _userinfo = US.userInfo, //登录用户信息
  8661. _userid = US.userInfo.userid //登录用户id
  8662. let _iframe;
  8663. let _cid = cid,
  8664. _stage = stage,
  8665. _task = task,
  8666. _tool = tool;
  8667. var _jie = $$("div", {
  8668. "style": {
  8669. "position": "absolute",
  8670. "bottom": "50px",
  8671. "right": "50px",
  8672. "zIndex": "9999",
  8673. "backgroundColor": "#2268bc",
  8674. "color": "#fff",
  8675. "padding": "12px 20px",
  8676. "cursor": "pointer",
  8677. "borderRadius": "4px",
  8678. },
  8679. "innerHTML": "确认并提交"
  8680. })
  8681. let aTool = ''
  8682. let _loading = document.createElement('div')
  8683. _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;"
  8684. // _loading.id = "";
  8685. let _lchild = document.createElement('div')
  8686. let _limg = document.createElement('img')
  8687. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8688. _limg.style = "width: 26px;margin-right: 10px;"
  8689. _lchild.appendChild(_limg)
  8690. let _lspan = document.createElement('span')
  8691. _lspan.innerHTML = "上传中..."
  8692. _lchild.appendChild(_lspan)
  8693. _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%);"
  8694. _loading.appendChild(_lchild)
  8695. var _box = $$('div', {
  8696. "style": {
  8697. "position": "relative",
  8698. "width": "100%",
  8699. "height": "100%",
  8700. },
  8701. })
  8702. _box.appendChild(_loading)
  8703. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  8704. switch (str) {
  8705. case "whiteboard":
  8706. aTool = 1;
  8707. _iframe = $$("iframe", {
  8708. "frameborder": "no",
  8709. "border": "0",
  8710. "scrolling ": "no",
  8711. "style": {
  8712. "cssText": "border:0;width:100%;height:100%"
  8713. },
  8714. "src": "https://beta.iwb.cocorobo.cn/"
  8715. })
  8716. _box.appendChild(_iframe);
  8717. _box.appendChild(_jie);
  8718. _formdiv = new U.UF.UI.form(
  8719. "电子白板",
  8720. _box, {
  8721. "id": "whiteboards" + cid + stage + task + tool,
  8722. "style": {
  8723. "width": "90%",
  8724. "height": "90%",
  8725. "overflow": 'hidden'
  8726. },
  8727. "onresize": function () { }
  8728. }, {
  8729. closecallback: function () { }
  8730. }, {
  8731. "style": {
  8732. "height": "36px"
  8733. }
  8734. }).form; //创建窗体
  8735. _taskbar = {
  8736. "id": str + _formdiv.id,
  8737. "style": {
  8738. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8739. },
  8740. "name": "电子白板",
  8741. "forms": _formdiv,
  8742. "click": function () {
  8743. U.MD.D.I.openApplication(str, obj, info);
  8744. }
  8745. }
  8746. break;
  8747. case "mind":
  8748. aTool = 3;
  8749. _iframe = $$("iframe", {
  8750. "frameborder": "no",
  8751. "border": "0",
  8752. "scrolling ": "no",
  8753. "style": {
  8754. "cssText": "border:0;width:100%;height:100%"
  8755. },
  8756. "src": "/kityminder-editor/dist/index.html"
  8757. });
  8758. _box.appendChild(_iframe);
  8759. _box.appendChild(_jie);
  8760. _formdiv = new U.UF.UI.form(
  8761. "思维导图",
  8762. _box, { //"/jsmind/example/demo.html"
  8763. "id": "minds" + cid + stage + task + tool,
  8764. "style": {
  8765. "width": "90%",
  8766. "height": "90%",
  8767. "overflow": 'hidden'
  8768. },
  8769. "onresize": function () { }
  8770. }, {
  8771. closecallback: function () { }
  8772. }, {
  8773. "style": {
  8774. "height": "36px"
  8775. }
  8776. }).form; //创建窗体
  8777. _taskbar = {
  8778. "id": str + _formdiv.id,
  8779. "style": {
  8780. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8781. },
  8782. "name": "思维导图",
  8783. "forms": _formdiv,
  8784. "click": function () {
  8785. U.MD.D.I.openApplication(str, obj, info);
  8786. }
  8787. }
  8788. break;
  8789. case "doc":
  8790. aTool = 6;
  8791. _iframe = $$("iframe", {
  8792. "frameborder": "no",
  8793. "border": "0",
  8794. "scrolling ": "no",
  8795. "style": {
  8796. "cssText": "border:0;width:100%;height:100%"
  8797. },
  8798. "src": "/Office/Word/WordEditArea.htm"
  8799. })
  8800. _box.appendChild(_iframe);
  8801. _box.appendChild(_jie);
  8802. _formdiv = new U.UF.UI.form(
  8803. "协同文档",
  8804. _box, {
  8805. "id": "docs" + cid + stage + task + tool,
  8806. "style": {
  8807. "width": "90%",
  8808. "height": "90%",
  8809. "overflow": 'hidden'
  8810. },
  8811. "onresize": function () { }
  8812. }, {
  8813. closecallback: function () { }
  8814. }, {
  8815. "style": {
  8816. "height": "36px"
  8817. }
  8818. }).form; //创建窗体
  8819. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8820. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8821. })
  8822. _taskbar = {
  8823. "id": str + _formdiv.id,
  8824. "style": {
  8825. "backgroundImage": "url(/img/icon/doc.png)"
  8826. },
  8827. "name": "协同文档",
  8828. "forms": _formdiv,
  8829. "click": function () {
  8830. U.MD.D.I.openApplication(str, obj, info);
  8831. }
  8832. }
  8833. break;
  8834. }
  8835. const script1 = document.createElement("script");
  8836. script1.type = "text/javascript";
  8837. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8838. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8839. const script2 = document.createElement("script");
  8840. script2.type = "text/javascript";
  8841. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8842. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8843. const script3 = document.createElement("script");
  8844. script3.type = "text/javascript";
  8845. script3.charset = "UTF-8";
  8846. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8847. const script4 = document.createElement("script");
  8848. script4.type = "text/javascript";
  8849. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  8850. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  8851. if (_iframe) {
  8852. if (str == 'doc') {
  8853. _iframe = _formdiv.querySelector('iframe')
  8854. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8855. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  8856. _iframe.contentWindow.document.body.appendChild(script1);
  8857. _iframe.contentWindow.document.body.appendChild(script2);
  8858. // _iframe.contentWindow.document.body.appendChild(script3);
  8859. _iframe.contentWindow.document.body.appendChild(script4);
  8860. })
  8861. if (onloadListener) {
  8862. _iframe.contentDocument.location.reload()
  8863. } else {
  8864. _iframe.contentDocument.location.reload()
  8865. }
  8866. } else if (str == 'mind') {
  8867. _iframe = _formdiv.querySelector('iframe')
  8868. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8869. _iframe.contentWindow.document.body.appendChild(script1);
  8870. _iframe.contentWindow.document.body.appendChild(script2);
  8871. _iframe.contentWindow.document.body.appendChild(script4);
  8872. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  8873. })
  8874. if (onloadListener) {
  8875. _iframe.contentDocument.location.reload()
  8876. } else {
  8877. _iframe.contentDocument.location.reload()
  8878. }
  8879. } else {
  8880. _iframe.onload = () => {
  8881. _iframe.contentWindow.document.body.appendChild(script1);
  8882. _iframe.contentWindow.document.body.appendChild(script2);
  8883. // _iframe.contentWindow.document.body.appendChild(script3);
  8884. _iframe.contentWindow.document.body.appendChild(script4);
  8885. };
  8886. }
  8887. _jie.onclick = async () => {
  8888. let text = ''
  8889. if (aTool == 6) {
  8890. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8891. } else if (aTool == 3) {
  8892. text = await U.MD.D.I.getEditorContent(_iframe);
  8893. }
  8894. _loading.style.display = 'flex'
  8895. console.log(_loading);
  8896. var _ajs = _iframe.contentWindow.document.createElement("script");
  8897. _ajs.type = "text/javascript";
  8898. _ajs.innerHTML =
  8899. // 'console.log(' + _loading + ');\n' +
  8900. 'var _js = document.createElement("script");\n' +
  8901. '_js.type="text/javascript";\n' +
  8902. '_js.charset="UTF-8";\n' +
  8903. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8904. "_js.onload = function(){\n" +
  8905. ' var a = document.getElementsByTagName("img")\n' +
  8906. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8907. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8908. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8909. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8910. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8911. "beforeUpload_shishi(file," +
  8912. "'" +
  8913. _userid +
  8914. "'" +
  8915. ", " +
  8916. "'" +
  8917. _cid +
  8918. "'" +
  8919. ", " +
  8920. "'" +
  8921. _stage +
  8922. "'" +
  8923. ", " +
  8924. "'" +
  8925. _task +
  8926. "'" +
  8927. ", " +
  8928. "'" +
  8929. _tool +
  8930. "'" +
  8931. ", " +
  8932. "'" +
  8933. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  8934. "'" +
  8935. ", " +
  8936. "'" +
  8937. aTool +
  8938. "'" +
  8939. ", " +
  8940. "`" +
  8941. text +
  8942. "`" +
  8943. ")\n" +
  8944. " });\n" +
  8945. "}\n" +
  8946. "document.head.appendChild(_js);\n";
  8947. _iframe.contentWindow.document.head.appendChild(_ajs);
  8948. }
  8949. }
  8950. //U.MD.D.I.openClick(str);
  8951. //如果有任务栏信息
  8952. // if (_taskbar) {
  8953. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  8954. // }
  8955. }
  8956. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  8957. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8958. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8959. _userinfo = US.userInfo, //登录用户信息
  8960. _userid = US.userInfo.userid //登录用户id
  8961. let _iframe;
  8962. let _cid = cid,
  8963. _stage = stage,
  8964. _task = task,
  8965. _tool = tool;
  8966. var _jie = $$("div", {
  8967. "style": {
  8968. "position": "absolute",
  8969. "bottom": "50px",
  8970. "right": "50px",
  8971. "zIndex": "9999",
  8972. "backgroundColor": "#2268bc",
  8973. "color": "#fff",
  8974. "padding": "12px 20px",
  8975. "cursor": "pointer",
  8976. "borderRadius": "4px",
  8977. },
  8978. "innerHTML": "上传模板"
  8979. })
  8980. let aTool = ''
  8981. let _loading = document.createElement('div')
  8982. _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;"
  8983. // _loading.id = "";
  8984. let _lchild = document.createElement('div')
  8985. let _limg = document.createElement('img')
  8986. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8987. _limg.style = "width: 26px;margin-right: 10px;"
  8988. _lchild.appendChild(_limg)
  8989. let _lspan = document.createElement('span')
  8990. _lspan.innerHTML = "上传中..."
  8991. _lchild.appendChild(_lspan)
  8992. _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%);"
  8993. _loading.appendChild(_lchild)
  8994. var _box = $$('div', {
  8995. "style": {
  8996. "position": "relative",
  8997. "width": "100%",
  8998. "height": "100%",
  8999. },
  9000. })
  9001. _box.appendChild(_loading)
  9002. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9003. switch (str) {
  9004. case "whiteboard":
  9005. aTool = 1;
  9006. _iframe = $$("iframe", {
  9007. "frameborder": "no",
  9008. "border": "0",
  9009. "scrolling ": "no",
  9010. "style": {
  9011. "cssText": "border:0;width:100%;height:100%"
  9012. },
  9013. "src": "https://beta.iwb.cocorobo.cn/"
  9014. })
  9015. _box.appendChild(_iframe);
  9016. _box.appendChild(_jie);
  9017. _formdiv = new U.UF.UI.form(
  9018. "电子白板",
  9019. _box, {
  9020. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9021. "style": {
  9022. "width": "90%",
  9023. "height": "90%",
  9024. "overflow": 'hidden'
  9025. },
  9026. "onresize": function () { }
  9027. }, {
  9028. closecallback: function () { }
  9029. }, {
  9030. "style": {
  9031. "height": "36px"
  9032. }
  9033. }).form; //创建窗体
  9034. _taskbar = {
  9035. "id": str + _formdiv.id,
  9036. "style": {
  9037. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9038. },
  9039. "name": "电子白板",
  9040. "forms": _formdiv,
  9041. "click": function () {
  9042. U.MD.D.I.openApplication(str, obj, info);
  9043. }
  9044. }
  9045. break;
  9046. case "mind":
  9047. aTool = 3;
  9048. _iframe = $$("iframe", {
  9049. "frameborder": "no",
  9050. "border": "0",
  9051. "scrolling ": "no",
  9052. "style": {
  9053. "cssText": "border:0;width:100%;height:100%"
  9054. },
  9055. "src": "/kityminder-editor/dist/index.html"
  9056. });
  9057. _box.appendChild(_iframe);
  9058. _box.appendChild(_jie);
  9059. _formdiv = new U.UF.UI.form(
  9060. "思维导图",
  9061. _box, { //"/jsmind/example/demo.html"
  9062. "id": "minds_Yu" + cid + stage + task + tool,
  9063. "style": {
  9064. "width": "90%",
  9065. "height": "90%",
  9066. "overflow": 'hidden'
  9067. },
  9068. "onresize": function () { }
  9069. }, {
  9070. closecallback: function () { }
  9071. }, {
  9072. "style": {
  9073. "height": "36px"
  9074. }
  9075. }).form; //创建窗体
  9076. _taskbar = {
  9077. "id": str + _formdiv.id,
  9078. "style": {
  9079. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9080. },
  9081. "name": "思维导图",
  9082. "forms": _formdiv,
  9083. "click": function () {
  9084. U.MD.D.I.openApplication(str, obj, info);
  9085. }
  9086. }
  9087. break;
  9088. case "doc":
  9089. aTool = 6;
  9090. _iframe = $$("iframe", {
  9091. "frameborder": "no",
  9092. "border": "0",
  9093. "scrolling ": "no",
  9094. "style": {
  9095. "cssText": "border:0;width:100%;height:100%"
  9096. },
  9097. "src": "/Office/Word/WordEditArea.htm"
  9098. })
  9099. _box.appendChild(_iframe);
  9100. _box.appendChild(_jie);
  9101. _formdiv = new U.UF.UI.form(
  9102. "协同文档",
  9103. _box, {
  9104. "id": "docs_Yu" + cid + stage + task + tool,
  9105. "style": {
  9106. "width": "90%",
  9107. "height": "90%",
  9108. "overflow": 'hidden'
  9109. },
  9110. "onresize": function () { }
  9111. }, {
  9112. closecallback: function () { }
  9113. }, {
  9114. "style": {
  9115. "height": "36px"
  9116. }
  9117. }).form; //创建窗体
  9118. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9119. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9120. })
  9121. _taskbar = {
  9122. "id": str + _formdiv.id,
  9123. "style": {
  9124. "backgroundImage": "url(/img/icon/doc.png)"
  9125. },
  9126. "name": "协同文档",
  9127. "forms": _formdiv,
  9128. "click": function () {
  9129. U.MD.D.I.openApplication(str, obj, info);
  9130. }
  9131. }
  9132. break;
  9133. case "CocoPi":
  9134. aTool = 57;
  9135. _iframe = $$("iframe", {
  9136. "allowpaymentrequest": "allowpaymentrequest",
  9137. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9138. "webkitallowfullscreen": "",
  9139. "mozallowfullscreen": "",
  9140. "frameborder": "no",
  9141. "border": "0",
  9142. "scrolling ": "no",
  9143. "style": {
  9144. "cssText": "border:0;width:100%;height:100%"
  9145. },
  9146. "src": "https://pi.cocorobo.cn/"
  9147. })
  9148. _box.appendChild(_iframe);
  9149. _box.appendChild(_jie);
  9150. _formdiv = new U.UF.UI.form(
  9151. "CocoPi",
  9152. _box, {
  9153. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9154. "style": {
  9155. "width": "90%",
  9156. "height": "90%",
  9157. "overflow": 'hidden'
  9158. },
  9159. "onresize": function () { }
  9160. }, {
  9161. closecallback: function () { }
  9162. }, {
  9163. "style": {
  9164. "height": "36px"
  9165. }
  9166. }).form; //创建窗体
  9167. _taskbar = {
  9168. "id": str + _formdiv.id,
  9169. "style": {
  9170. "backgroundImage": "url(/img/icon/cocopi.png)"
  9171. },
  9172. "name": "CocoPi",
  9173. "forms": _formdiv,
  9174. "click": function () {
  9175. U.MD.D.I.openApplication(str, obj, info);
  9176. }
  9177. }
  9178. break;
  9179. }
  9180. if (_iframe) {
  9181. if (str == 'doc') {
  9182. _iframe = _formdiv.querySelector('iframe')
  9183. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9184. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9185. })
  9186. if (onloadListener) {
  9187. _iframe.contentDocument.location.reload()
  9188. } else {
  9189. _iframe.contentDocument.location.reload()
  9190. }
  9191. } else if (str == 'mind') {
  9192. _iframe = _formdiv.querySelector('iframe')
  9193. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9194. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9195. })
  9196. if (onloadListener) {
  9197. _iframe.contentDocument.location.reload()
  9198. } else {
  9199. _iframe.contentDocument.location.reload()
  9200. }
  9201. } else if (str == 'whiteboard') {
  9202. _iframe = _formdiv.querySelector('iframe')
  9203. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9204. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9205. })
  9206. // if (onloadListener) {
  9207. // try {
  9208. // _iframe.src += "?cocorobo="+new Date().getTime()
  9209. // _iframe.contentWindow.document.location.reload()
  9210. // } catch (error) {
  9211. // }
  9212. // } else {
  9213. // _iframe.contentDocument.location.reload()
  9214. // }
  9215. } else if (str == 'CocoPi') {
  9216. _iframe = _formdiv.querySelector('iframe')
  9217. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9218. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9219. })
  9220. if (onloadListener) {
  9221. _iframe.contentDocument.location.reload()
  9222. } else {
  9223. _iframe.contentDocument.location.reload()
  9224. }
  9225. } else {
  9226. _iframe.onload = () => { };
  9227. }
  9228. _jie.onclick = async () => {
  9229. let text = ''
  9230. let type = '2'
  9231. if (aTool == 1) {
  9232. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9233. type = '3'
  9234. } else if (aTool == 6) {
  9235. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9236. type = '1'
  9237. } else if (aTool == 3) {
  9238. text = await U.MD.D.I.getEditorContent(_iframe);
  9239. type = '2'
  9240. } else if (aTool == 57) {
  9241. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9242. type = '4'
  9243. }
  9244. _loading.style.display = 'flex'
  9245. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9246. }
  9247. }
  9248. //U.MD.D.I.openClick(str);
  9249. //如果有任务栏信息
  9250. // if (_taskbar) {
  9251. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9252. // }
  9253. }
  9254. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9255. var xmlhttp;
  9256. var Mac, Sn, DeviceId
  9257. if (window.XMLHttpRequest) {
  9258. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9259. xmlhttp = new XMLHttpRequest();
  9260. } else {
  9261. // IE6, IE5 浏览器执行代码
  9262. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9263. }
  9264. xmlhttp.onreadystatechange = function () {
  9265. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9266. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9267. // resolve(res.value[0][0].text);
  9268. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9269. }
  9270. }
  9271. }
  9272. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9273. xmlhttp.send();
  9274. }
  9275. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9276. var xmlhttp;
  9277. var Mac, Sn, DeviceId
  9278. if (window.XMLHttpRequest) {
  9279. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9280. xmlhttp = new XMLHttpRequest();
  9281. } else {
  9282. // IE6, IE5 浏览器执行代码
  9283. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9284. }
  9285. xmlhttp.onreadystatechange = function () {
  9286. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9287. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9288. // resolve(res.value[0][0].text);
  9289. if (type == '2') {
  9290. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9291. } else if (type == '3') {
  9292. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9293. } else if (type == '4') {
  9294. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9295. }
  9296. } else {
  9297. if (type == '2') {
  9298. iframe.contentWindow.editor.minder.importData('json', '')
  9299. } else if (type == '3') {
  9300. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9301. } else if (type == '4') {
  9302. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9303. }
  9304. }
  9305. }
  9306. }
  9307. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9308. xmlhttp.send();
  9309. }
  9310. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9311. var xmlhttp;
  9312. var Mac, Sn, DeviceId
  9313. if (window.XMLHttpRequest) {
  9314. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9315. xmlhttp = new XMLHttpRequest();
  9316. } else {
  9317. // IE6, IE5 浏览器执行代码
  9318. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9319. }
  9320. xmlhttp.onreadystatechange = function () {
  9321. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9322. if (xmlhttp.response) {
  9323. // resolve(res.value[0][0].text);
  9324. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9325. // $(fileInput).val('');
  9326. // });
  9327. span.innerHTML = '上传成功'
  9328. setTimeout(() => {
  9329. loading.style.display = 'none'
  9330. }, 1000);
  9331. }
  9332. }
  9333. }
  9334. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9335. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9336. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9337. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9338. // 设置请求头,表示请求体的编码格式
  9339. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9340. // 设置请求体,使用url-encoded格式的数据
  9341. }
  9342. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9343. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9344. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9345. _userinfo = US.userInfo, //登录用户信息
  9346. _userid = US.userInfo.userid //登录用户id
  9347. let _iframe;
  9348. let _cid = cid,
  9349. _stage = stage,
  9350. _task = task,
  9351. _tool = tool;
  9352. var _jie = $$("div", {
  9353. "style": {
  9354. "position": "absolute",
  9355. "bottom": "50px",
  9356. "right": "50px",
  9357. "zIndex": "9999",
  9358. "backgroundColor": "#2268bc",
  9359. "color": "#fff",
  9360. "padding": "12px 20px",
  9361. "cursor": "pointer",
  9362. "borderRadius": "4px",
  9363. },
  9364. "innerHTML": "提交作业"
  9365. })
  9366. let aTool = ''
  9367. let _loading = document.createElement('div')
  9368. _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;"
  9369. // _loading.id = "";
  9370. let _lchild = document.createElement('div')
  9371. let _limg = document.createElement('img')
  9372. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9373. _limg.style = "width: 26px;margin-right: 10px;"
  9374. _lchild.appendChild(_limg)
  9375. let _lspan = document.createElement('span')
  9376. _lspan.innerHTML = "上传中..."
  9377. _lchild.appendChild(_lspan)
  9378. _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%);"
  9379. _loading.appendChild(_lchild)
  9380. var _box = $$('div', {
  9381. "style": {
  9382. "position": "relative",
  9383. "width": "100%",
  9384. "height": "100%",
  9385. },
  9386. })
  9387. _box.appendChild(_loading)
  9388. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9389. switch (str) {
  9390. case "CocoPi":
  9391. aTool = 57;
  9392. _iframe = $$("iframe", {
  9393. "allowpaymentrequest": "allowpaymentrequest",
  9394. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9395. "webkitallowfullscreen": "",
  9396. "mozallowfullscreen": "",
  9397. "frameborder": "no",
  9398. "border": "0",
  9399. "scrolling ": "no",
  9400. "style": {
  9401. "cssText": "border:0;width:100%;height:100%"
  9402. },
  9403. "src": "https://pi.cocorobo.cn/"
  9404. })
  9405. _box.appendChild(_iframe);
  9406. _box.appendChild(_jie);
  9407. _formdiv = new U.UF.UI.form(
  9408. "CocoPi",
  9409. _box, {
  9410. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9411. "style": {
  9412. "width": "90%",
  9413. "height": "90%",
  9414. "overflow": 'hidden'
  9415. },
  9416. "onresize": function () { }
  9417. }, {
  9418. closecallback: function () { }
  9419. }, {
  9420. "style": {
  9421. "height": "36px"
  9422. }
  9423. }).form; //创建窗体
  9424. _taskbar = {
  9425. "id": str + _formdiv.id,
  9426. "style": {
  9427. "backgroundImage": "url(/img/icon/cocopi.png)"
  9428. },
  9429. "name": "CocoPi",
  9430. "forms": _formdiv,
  9431. "click": function () {
  9432. U.MD.D.I.openApplication(str, obj, info);
  9433. }
  9434. }
  9435. break;
  9436. }
  9437. if (_iframe) {
  9438. if (str == 'CocoPi') {
  9439. _iframe = _formdiv.querySelector('iframe')
  9440. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9441. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9442. })
  9443. if (onloadListener) {
  9444. _iframe.contentDocument.location.reload()
  9445. } else {
  9446. _iframe.contentDocument.location.reload()
  9447. }
  9448. }
  9449. _jie.onclick = async () => {
  9450. let text = ''
  9451. if (aTool == 57) {
  9452. text = _iframe.contentWindow.getLoadXmlStr()
  9453. }
  9454. _loading.style.display = 'flex'
  9455. console.log(_loading);
  9456. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9457. _loading.style.display = 'none'
  9458. let _div = document.createElement('div')
  9459. _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;"
  9460. let _inner = document.createElement('div')
  9461. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9462. _inner.innerHTML = "上传成功"
  9463. _div.appendChild(_inner)
  9464. _iframe.contentWindow.window.document.body.appendChild(_div)
  9465. _div.onclick = () => {
  9466. _iframe.contentWindow.window.document.body.removeChild(_div)
  9467. }
  9468. setTimeout(() => {
  9469. _iframe.contentWindow.window.document.body.removeChild(_div)
  9470. }, 1000);
  9471. }, [], { "type": "POST", "withCredentials": true });
  9472. }
  9473. }
  9474. }
  9475. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  9476. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9477. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9478. _userid = student.userid, //登录用户id
  9479. _username = student.student //用户名字
  9480. let _iframe;
  9481. let _cid = cid,
  9482. _stage = stage,
  9483. _task = task,
  9484. _tool = tool;
  9485. var _jie = $$("div", {
  9486. "style": {
  9487. "position": "absolute",
  9488. "bottom": "50px",
  9489. "right": "50px",
  9490. "zIndex": "9999",
  9491. "backgroundColor": "#2268bc",
  9492. "color": "#fff",
  9493. "padding": "12px 20px",
  9494. "cursor": "pointer",
  9495. "borderRadius": "4px",
  9496. },
  9497. "innerHTML": "提交作业"
  9498. })
  9499. let aTool = ''
  9500. let _loading = document.createElement('div')
  9501. _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;"
  9502. // _loading.id = "";
  9503. let _lchild = document.createElement('div')
  9504. let _limg = document.createElement('img')
  9505. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9506. _limg.style = "width: 26px;margin-right: 10px;"
  9507. _lchild.appendChild(_limg)
  9508. let _lspan = document.createElement('span')
  9509. _lspan.innerHTML = "上传中..."
  9510. _lchild.appendChild(_lspan)
  9511. _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%);"
  9512. _loading.appendChild(_lchild)
  9513. var _box = $$('div', {
  9514. "style": {
  9515. "position": "relative",
  9516. "width": "100%",
  9517. "height": "100%",
  9518. },
  9519. })
  9520. _box.appendChild(_loading)
  9521. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  9522. switch (str) {
  9523. case "CocoPi":
  9524. aTool = 57;
  9525. _iframe = $$("iframe", {
  9526. "allowpaymentrequest": "allowpaymentrequest",
  9527. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9528. "webkitallowfullscreen": "",
  9529. "mozallowfullscreen": "",
  9530. "frameborder": "no",
  9531. "border": "0",
  9532. "scrolling ": "no",
  9533. "style": {
  9534. "cssText": "border:0;width:100%;height:100%"
  9535. },
  9536. "src": "https://pi.cocorobo.cn/"
  9537. })
  9538. _box.appendChild(_iframe);
  9539. _box.appendChild(_jie);
  9540. _formdiv = new U.UF.UI.form(
  9541. "CocoPi-" + _username,
  9542. _box, {
  9543. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  9544. "style": {
  9545. "width": "90%",
  9546. "height": "90%",
  9547. "overflow": 'hidden'
  9548. },
  9549. "onresize": function () { }
  9550. }, {
  9551. closecallback: function () { }
  9552. }, {
  9553. "style": {
  9554. "height": "36px"
  9555. }
  9556. }).form; //创建窗体
  9557. _taskbar = {
  9558. "id": str + _formdiv.id,
  9559. "style": {
  9560. "backgroundImage": "url(/img/icon/cocopi.png)"
  9561. },
  9562. "name": "CocoPi",
  9563. "forms": _formdiv,
  9564. "click": function () {
  9565. U.MD.D.I.openApplication(str, obj, info);
  9566. }
  9567. }
  9568. break;
  9569. }
  9570. if (_iframe) {
  9571. if (str == 'CocoPi') {
  9572. _iframe = _formdiv.querySelector('iframe')
  9573. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9574. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9575. })
  9576. if (onloadListener) {
  9577. _iframe.contentDocument.location.reload()
  9578. } else {
  9579. _iframe.contentDocument.location.reload()
  9580. }
  9581. }
  9582. _jie.onclick = async () => {
  9583. let text = ''
  9584. if (aTool == 57) {
  9585. text = _iframe.contentWindow.getLoadXmlStr()
  9586. }
  9587. _loading.style.display = 'flex'
  9588. console.log(_loading);
  9589. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  9590. _loading.style.display = 'none'
  9591. let _div = document.createElement('div')
  9592. _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;"
  9593. let _inner = document.createElement('div')
  9594. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  9595. _inner.innerHTML = "上传成功"
  9596. _div.appendChild(_inner)
  9597. _iframe.contentWindow.window.document.body.appendChild(_div)
  9598. _div.onclick = () => {
  9599. _iframe.contentWindow.window.document.body.removeChild(_div)
  9600. }
  9601. setTimeout(() => {
  9602. _iframe.contentWindow.window.document.body.removeChild(_div)
  9603. }, 1000);
  9604. }, [], { "type": "POST", "withCredentials": true });
  9605. }
  9606. }
  9607. }
  9608. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  9609. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  9610. if (res.value[0].length > 0) {
  9611. if (atool == 57) {
  9612. iframe.contentWindow.loadingXml(res.value[0][0].content)
  9613. }
  9614. } else {
  9615. if (atool == 57) {
  9616. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  9617. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9618. }
  9619. }
  9620. }, [], { "type": "POST", "withCredentials": true });
  9621. }