DeskTop.js 657 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533
  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": "teacher", "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. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  687. ];
  688. //hk
  689. U.MD.D.I.hkStudentDeskIcon = [
  690. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  691. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  692. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  693. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  694. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  695. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  696. ];
  697. //hk
  698. U.MD.D.I.hkaceteacherDeskIcon = [
  699. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  700. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  701. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  702. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  703. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  704. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  705. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  706. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  707. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  708. // { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  709. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  710. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  711. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  712. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  713. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  715. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  716. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  717. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  718. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  719. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  720. ];
  721. //hk
  722. U.MD.D.I.hkaceStudentDeskIcon = [
  723. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  724. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  725. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  726. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  727. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  728. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  729. ];
  730. //香海正覺蓮社佛教正覺中學
  731. U.MD.D.I.hkZJLSteacherDeskIcon = [
  732. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  733. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  734. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  735. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  736. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  737. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  738. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  739. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  740. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  741. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  742. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  743. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  744. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  745. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  746. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  747. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  748. ];
  749. //香海正覺蓮社佛教正覺中學
  750. U.MD.D.I.hkZJLSStudentDeskIcon = [
  751. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  752. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  753. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  754. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  755. ];
  756. //云海
  757. U.MD.D.I.yunhaiTeacherDeskIcon = [
  758. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  759. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  760. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  761. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  762. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  763. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  764. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  765. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  766. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  767. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  768. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  769. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  770. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  771. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  772. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  773. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  774. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  775. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  776. ];
  777. //福田
  778. U.MD.D.I.heyuanTeacherDeskIcon = [
  779. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  780. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  781. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  782. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  783. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  784. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  785. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  786. // { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  787. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  788. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  789. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  790. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  791. ];
  792. //福田
  793. U.MD.D.I.heyuanAdminDeskIcon = [
  794. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  795. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  796. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  797. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  798. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  799. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  800. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  801. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  802. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  803. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  804. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  805. ];
  806. //szjylh 54f09f1e-09f0-11ee-91d8-005056b86db5
  807. U.MD.D.I.szherTeacherDeskIcon = [
  808. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  809. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  810. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  811. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  812. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  813. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  814. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  815. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  816. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  817. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  818. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  819. ];
  820. //dsei
  821. U.MD.D.I.dseiTeacherDeskIcon = [
  822. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  823. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  824. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  825. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  826. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  827. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  828. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  829. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  830. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  831. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  832. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  833. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  834. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  835. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  836. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  837. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  838. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  839. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  840. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  841. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  842. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  843. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  844. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  845. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  846. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  847. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  848. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  849. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  850. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  851. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  852. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  853. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  854. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  855. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  856. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  857. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  858. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  859. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  860. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  861. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  862. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  863. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  864. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  865. ];
  866. //dsei
  867. U.MD.D.I.dseiAdminDeskIcon = [
  868. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  869. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  870. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  871. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  872. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  873. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  874. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  875. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  876. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  877. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  878. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  879. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  880. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  881. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  882. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  883. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  884. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  885. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  886. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  887. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  888. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  889. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  890. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  891. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  892. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  893. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  894. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  895. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  896. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  897. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  898. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  899. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  900. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  901. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  902. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  903. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  904. // { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  905. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  906. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  907. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  908. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  909. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  910. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  911. ];
  912. //dsei
  913. U.MD.D.I.dseiStudentDeskIcon = [
  914. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  915. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  916. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  917. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  918. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  919. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  920. ];
  921. //未来教育基地
  922. U.MD.D.I.szjkyTeacherDeskIcon = [
  923. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  924. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  925. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  926. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  927. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  928. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  929. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  930. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  931. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  932. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  933. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  934. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  935. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  936. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  937. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  938. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  939. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  940. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  941. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  942. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  943. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  944. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  945. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  946. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  947. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  948. ];
  949. //未来教育基地
  950. U.MD.D.I.szjkyAdminDeskIcon = [
  951. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  952. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  953. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  954. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  955. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  956. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  957. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  958. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  959. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  960. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  961. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  962. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  963. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  964. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  965. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  966. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  967. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  968. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  969. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  970. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  971. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  972. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  973. // { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  974. // { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  975. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  976. ];
  977. //未来教育基地
  978. U.MD.D.I.szjkyStudentDeskIcon = [
  979. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  980. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  981. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  982. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  983. ];
  984. //成华教育局
  985. U.MD.D.I.chjyjTeacherDeskIcon = [
  986. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  987. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  988. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  989. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  990. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  991. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  992. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  993. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  994. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  995. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  996. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  997. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  998. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  999. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1000. ];
  1001. //成华教育局chjyj
  1002. U.MD.D.I.chjyjAdminDeskIcon = [
  1003. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1004. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1005. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1006. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1007. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1008. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1009. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1010. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1011. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1012. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1013. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1014. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1015. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1016. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1017. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1018. ];
  1019. //成华教育局chjyj
  1020. U.MD.D.I.chjyjStudentDeskIcon = [
  1021. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1022. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1023. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1024. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1025. ];
  1026. //tpc
  1027. U.MD.D.I.tpcStudentDeskIcon = [
  1028. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1029. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1030. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1031. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1032. ];
  1033. //tpc
  1034. U.MD.D.I.tpcTeacherDeskIcon = [
  1035. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1036. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1037. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1038. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1039. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1040. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1041. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1042. ];
  1043. //tpc
  1044. U.MD.D.I.tpcAdminDeskIcon = [
  1045. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1046. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1047. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1048. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1049. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1050. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1051. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1052. ];
  1053. //THU-IOE
  1054. U.MD.D.I.thuioeTeacherDeskIcon = [
  1055. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1056. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1057. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1058. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1059. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1060. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1061. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1062. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1063. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1064. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1065. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1066. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1067. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1068. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1069. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1070. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1071. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1072. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1073. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1074. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1075. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1076. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1077. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1078. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1079. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1080. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1081. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1082. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1083. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1084. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1085. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1086. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1087. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1088. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1089. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1090. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1091. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1092. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1093. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1094. ];
  1095. //THU-IOE
  1096. U.MD.D.I.thuioeStudentDeskIcon = [
  1097. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1098. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1099. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1100. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1101. ];
  1102. //jccssyl
  1103. U.MD.D.I.jccssylTeacherDeskIcon = [
  1104. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1105. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1106. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1107. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1108. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1109. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1110. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1111. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1112. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1113. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1114. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1115. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1116. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1117. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1118. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1119. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1120. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1121. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1122. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1123. ];
  1124. //jccssyl
  1125. U.MD.D.I.jccssylStudentDeskIcon = [
  1126. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1127. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1128. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1129. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1130. ];
  1131. //cale
  1132. U.MD.D.I.caleTeacherDeskIcon = [
  1133. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1134. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1135. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1136. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1137. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1138. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1139. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1140. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1141. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1142. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1143. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1144. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1145. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1146. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1147. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1148. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1149. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1150. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1151. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1152. ];
  1153. //cale
  1154. U.MD.D.I.caleStudentDeskIcon = [
  1155. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1156. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1157. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1158. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1159. ];
  1160. //lqwmsgzs
  1161. U.MD.D.I.lqwmsgzsTeacherDeskIcon = [
  1162. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1163. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1164. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1165. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1166. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1167. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1168. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1169. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1170. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1171. { "Name": "我的资料", "Url": "my", "style": { "cssText": "background-image:url(/img/icon/myMessage.png)" } },
  1172. { "Name": "通知公告", "Url": "notice", "style": { "cssText": "background-image:url(/img/icon/news.png)" } },
  1173. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1174. { "Name": "电子白板", "Url": "whiteboard", "style": { "cssText": "background-image:url(/img/icon/whiteBoard.png)" } },
  1175. { "Name": "问卷调查", "Url": "investigation", "style": { "cssText": "background-image:url(/img/icon/ask.png)" } },
  1176. { "Name": "便签分类", "Url": "note", "style": { "cssText": "background-image:url(/img/icon/note.png)" } },
  1177. { "Name": "思维导图", "Url": "mind", "style": { "cssText": "background-image:url(/img/icon/mindMapping.png)" } },
  1178. { "Name": "协同文档", "Url": "doc", "style": { "cssText": "background-image:url(/img/icon/doc.png)" } },
  1179. { "Name": "思维网格", "Url": "mindNetwork", "style": { "cssText": "background-image:url(/img/icon/mindNetwork.png)" } },
  1180. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1181. { "Name": "项目设计", "Url": "courseDesign", "style": { "cssText": "background-image:url(/img/icon/courseDesign.png)" } },
  1182. { "Name": "训练平台", "Url": "train", "style": { "cssText": "background-image:url(/img/icon/trainPlatform.png)" } },
  1183. { "Name": "编程平台", "Url": "program", "style": { "cssText": "background-image:url(/img/icon/program.png)" } },
  1184. { "Name": "AI体验", "Url": "AIprogram2", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1185. { "Name": "Python", "Url": "Pythonprogram", "style": { "cssText": "background-image:url(/img/icon/Pythonprogram.png)" } },
  1186. { "Name": "AI编程", "Url": "AIprogram", "style": { "cssText": "background-image:url(/img/icon/AIprogram.png)" } },
  1187. { "Name": "源码编辑", "Url": "codeEdit", "style": { "cssText": "background-image:url(/img/icon/code.png)" } },
  1188. { "Name": "MindMap", "Url": "MindMap", "style": { "cssText": "background-image:url(/img/icon/MIndMap.png)" } },
  1189. { "Name": "翻译", "Url": "translation", "style": { "cssText": "background-image:url(/img/icon/translation.png)" } },
  1190. { "Name": "魔盒识字", "Url": "mohe", "style": { "cssText": "background-image:url(/img/icon/mohe.png)" } },
  1191. { "Name": "24点", "Url": "24game", "style": { "cssText": "background-image:url(/img/icon/24game.png)" } },
  1192. { "Name": "数学画板", "Url": "netWorkPanel", "style": { "cssText": "background-image:url(/img/icon/networkPanel.png)" } },
  1193. { "Name": "GeoGebra", "Url": "GeoGebra", "style": { "cssText": "background-image:url(/img/icon/GeoGebra.png)" } },
  1194. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1195. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1196. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1197. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1198. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1199. ];
  1200. //lqwmsgzs
  1201. U.MD.D.I.lqwmsgzsStudentDeskIcon = [
  1202. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1203. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1204. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1205. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1206. ];
  1207. //盐田区幼儿园
  1208. U.MD.D.I.ytyTeacherDeskIcon = [
  1209. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1210. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1211. { "Name": "课程评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1212. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1213. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1214. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1215. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1216. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1217. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1218. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1219. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1220. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1221. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1222. ];
  1223. //盐田区幼儿园
  1224. U.MD.D.I.ytyStudentDeskIcon = [
  1225. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1226. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1227. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1228. ];
  1229. //scnuai
  1230. U.MD.D.I.scnuaiTeacherDeskIcon = [
  1231. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1232. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1233. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1234. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1235. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1236. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1237. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1238. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1239. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1240. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1241. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1242. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1243. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1244. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1245. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1246. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1247. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1248. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1249. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1250. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1251. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1252. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1253. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1254. ];
  1255. //scnuai
  1256. U.MD.D.I.scnuaiAdminDeskIcon = [
  1257. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1258. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1259. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1260. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1261. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1262. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1263. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1264. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1265. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1266. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1267. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1268. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1269. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1270. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1271. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1272. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1273. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1274. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1275. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1276. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1277. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1278. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1279. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1280. ];
  1281. //scnuai
  1282. U.MD.D.I.scnuaiStudentDeskIcon = [
  1283. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1284. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1285. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1286. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1287. ];
  1288. //cocobiz
  1289. U.MD.D.I.cocobizteacherDeskIcon = [
  1290. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1291. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1292. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1293. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1294. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1295. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1296. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1297. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1298. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1299. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1300. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1301. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1302. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1303. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1304. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1305. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1306. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1307. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1308. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1309. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1310. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1311. ];
  1312. //cocobiz
  1313. U.MD.D.I.cocobizStudentDeskIcon = [
  1314. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1315. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1316. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1317. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1318. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1319. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1320. ];
  1321. //xxzjky
  1322. U.MD.D.I.xxzjkyteacherDeskIcon = [
  1323. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1324. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1325. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1326. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1327. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1328. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1329. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1330. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1331. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1332. { "Name": "年级管理", "Url": "Grade", "style": { "cssText": "background-image:url(/img/icon/Grade.png)" } },
  1333. { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1334. // { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1335. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1336. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1337. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1338. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1339. // { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1340. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1341. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1342. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1343. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1344. ];
  1345. //xxzjky
  1346. U.MD.D.I.xxzjkyStudentDeskIcon = [
  1347. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1348. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1349. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1350. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1351. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1352. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1353. ];
  1354. //nsfx
  1355. U.MD.D.I.nsfxTeacherDeskIcon = [
  1356. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1357. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1358. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1359. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1360. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1361. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1362. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1363. { "Name": "素材库", "Url": "library", "style": { "cssText": "background-image:url(/img/icon/library.png)" } },
  1364. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1365. { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1366. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1367. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1368. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1369. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1370. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1371. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1372. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1373. ];
  1374. //nsfx
  1375. U.MD.D.I.nsfxStudentDeskIcon = [
  1376. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1377. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1378. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1379. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1380. ];
  1381. //stia
  1382. U.MD.D.I.stiaTeacherDeskIcon = [
  1383. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1384. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1385. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1386. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1387. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1388. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1389. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1390. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1391. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1392. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1393. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1394. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1395. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1396. ];
  1397. //stia
  1398. U.MD.D.I.stiaStudentDeskIcon = [
  1399. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1400. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1401. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1402. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1403. ];
  1404. //szdjg
  1405. U.MD.D.I.szdjgTeacherDeskIcon = [
  1406. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1407. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1408. ];
  1409. //szdjg
  1410. U.MD.D.I.szdjgStudentDeskIcon = [
  1411. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1412. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1413. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1414. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1415. ];
  1416. //010607
  1417. U.MD.D.I.x010607TeacherDeskIcon = [
  1418. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1419. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1420. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1421. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1422. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1423. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1424. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1425. { "Name": "目标管理", "Url": "sys", "style": { "cssText": "background-image:url(/img/icon/evalua.png)" } },
  1426. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1427. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1428. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1429. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1430. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1431. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1432. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1433. ];
  1434. //010607
  1435. U.MD.D.I.x010607StudentDeskIcon = [
  1436. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1437. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1438. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1439. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1440. ];
  1441. //010608
  1442. U.MD.D.I.x010608TeacherDeskIcon = [
  1443. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1444. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1445. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1446. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1447. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1448. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1449. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1450. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1451. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1452. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1453. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1454. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1455. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1456. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1457. ];
  1458. //010608
  1459. U.MD.D.I.x010608StudentDeskIcon = [
  1460. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1461. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1462. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1463. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1464. ];
  1465. //xhly
  1466. U.MD.D.I.xhlyTeacherDeskIcon = [
  1467. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1468. ];
  1469. //010608
  1470. U.MD.D.I.xhlyStudentDeskIcon = [
  1471. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1472. ];
  1473. //北师大
  1474. U.MD.D.I.BSDNSteacherDeskIcon = [
  1475. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1476. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1477. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1478. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1479. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1480. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1481. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1482. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1483. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1484. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1485. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1486. ];
  1487. //北师大
  1488. U.MD.D.I.BSDNSstudentDeskIcon = [
  1489. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1490. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1491. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1492. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1493. ];
  1494. //CUHK_EDU
  1495. U.MD.D.I.CUHKEDUTeacherDeskIcon = [
  1496. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1497. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1498. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1499. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1500. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1501. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1502. // { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1503. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1504. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1505. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1506. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1507. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1508. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1509. // { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1510. ];
  1511. //CUHK_EDU
  1512. U.MD.D.I.CUHKEDUStudentDeskIcon = [
  1513. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1514. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1515. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1516. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1517. ];
  1518. //010503
  1519. U.MD.D.I.x010503TeacherDeskIcon = [
  1520. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1521. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1522. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1523. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1524. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1525. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1526. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1527. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1528. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1529. ];
  1530. //010503
  1531. U.MD.D.I.x010503StudentDeskIcon = [
  1532. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1533. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1534. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1535. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1536. ];
  1537. //SPROUT Lab
  1538. U.MD.D.I.SPROUTLabTeacherDeskIcon = [
  1539. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1540. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1541. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1542. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1543. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1544. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1545. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1546. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1547. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1548. ];
  1549. //SPROUT Lab
  1550. U.MD.D.I.SPROUTLabStudentDeskIcon = [
  1551. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1552. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1553. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1554. ];
  1555. //010204
  1556. U.MD.D.I.x010204TeacherDeskIcon = [
  1557. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1558. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1559. ];
  1560. //010204
  1561. U.MD.D.I.x010204StudentDeskIcon = [
  1562. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1563. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1564. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1565. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1566. ];
  1567. //trail
  1568. U.MD.D.I.trailTeacherDeskIcon = [
  1569. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1570. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1571. ];
  1572. //trail
  1573. U.MD.D.I.trailStudentDeskIcon = [
  1574. // { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1575. // { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1576. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1577. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1578. ];
  1579. //010504
  1580. U.MD.D.I.x010504TeacherDeskIcon = [
  1581. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1582. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1583. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1584. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1585. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1586. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1587. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1588. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1589. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1590. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1591. ];
  1592. //010504
  1593. U.MD.D.I.x010504StudentDeskIcon = [
  1594. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1595. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1596. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1597. // { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1598. ];
  1599. //SCNUET
  1600. U.MD.D.I.SCNUETTeacherDeskIcon = [
  1601. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1602. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1603. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1604. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1605. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1606. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1607. // { "Name": "教研室", "Url": "tcTeacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1608. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1609. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1610. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1611. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1612. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1613. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1614. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1615. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1616. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1617. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1618. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1619. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1620. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1621. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1622. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1623. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1624. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1625. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1626. ];
  1627. //SCNUET
  1628. U.MD.D.I.SCNUETAdminDeskIcon = [
  1629. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1630. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1631. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1632. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1633. // { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1634. // { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1635. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1636. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1637. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1638. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1639. // { "Name": "班级管理", "Url": "class", "style": { "cssText": "background-image:url(/img/icon/class.png)" } },
  1640. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1641. // { "Name": "课程进展", "Url": "case", "style": { "cssText": "background-image:url(/img/icon/case.png)" } },
  1642. // { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1643. // { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1644. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1645. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1646. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1647. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1648. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1649. // { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1650. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1651. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1652. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1653. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1654. ];
  1655. //SCNUET
  1656. U.MD.D.I.SCNUETStudentDeskIcon = [
  1657. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1658. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1659. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1660. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1661. ];
  1662. //x020201
  1663. U.MD.D.I.x020201TeacherDeskIcon = [
  1664. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1665. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1666. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1667. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1668. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1669. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1670. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1671. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1672. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1673. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1674. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1675. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1676. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1677. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1678. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1679. ];
  1680. //x020201
  1681. U.MD.D.I.x020201AdminDeskIcon = [
  1682. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1683. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1684. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1685. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1686. { "Name": "教研室", "Url": "teacherOffice", "style": { "cssText": "background-image:url(/img/icon/teacherOffice.png)" } },
  1687. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1688. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1689. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1690. { "Name": "教学资源", "Url": "source", "style": { "cssText": "background-image:url(/img/icon/source.png)" } },
  1691. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1692. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1693. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1694. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1695. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1696. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1697. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1698. ];
  1699. //020201
  1700. U.MD.D.I.x020201StudentDeskIcon = [
  1701. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1702. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1703. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1704. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1705. ];
  1706. //010611
  1707. U.MD.D.I.x010611TeacherDeskIcon = [
  1708. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1709. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1710. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1711. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1712. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1713. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1714. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1715. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1716. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1717. ];
  1718. //010611
  1719. U.MD.D.I.x010611StudentDeskIcon = [
  1720. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1721. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1722. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1723. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1724. ];
  1725. //tianyuan
  1726. U.MD.D.I.tianyuanTeacherDeskIcon = [
  1727. { "Name": "课程管理", "Url": "project", "style": { "cssText": "background-image:url(/img/icon/project.png)" } },
  1728. { "Name": "课程中心", "Url": "study", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1729. { "Name": "学生管理", "Url": "student", "style": { "cssText": "background-image:url(/img/icon/student.png)" } },
  1730. { "Name": "学生评价", "Url": "evaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  1731. { "Name": "项目管理", "Url": "studentCourseS", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1732. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1733. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1734. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1735. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1736. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1737. ];
  1738. //010611
  1739. U.MD.D.I.tianyuanStudentDeskIcon = [
  1740. { "Name": "项目管理", "Url": "studentCourse", "style": { "cssText": "background-image:url(/img/icon/studentCourse.png)" } },
  1741. { "Name": "项目中心", "Url": "studentIndex", "style": { "cssText": "background-image:url(/img/icon/studentIndex.png)" } },
  1742. { "Name": "课程中心", "Url": "studentStudy", "style": { "cssText": "background-image:url(/img/icon/study.png)" } },
  1743. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1744. ];
  1745. //#region 桌面初始化a
  1746. /**
  1747. * 初始化桌面的起始函数
  1748. *
  1749. */
  1750. U.MD.D.I.init = function () {
  1751. if ($("#U_MD_D_K")[0]) {
  1752. //初始化桌面图标
  1753. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], 1);
  1754. // var clickUrl = ':12588/requestIp.php';
  1755. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  1756. // U.MD.D.I.Ip = data;
  1757. // var AccessUrl = ':12588/useAccess.php?ip=' + U.MD.D.I.Ip;
  1758. // U.MD.D.I.Mysqlrequest(AccessUrl,function(data){
  1759. // U.selectEl("#U_MD_D_RW").css("width", US.width - 165 + "px");
  1760. // })
  1761. // //初始化任务栏,因为是静态的,所以直接改变样式即可.
  1762. // })
  1763. }
  1764. }
  1765. /**
  1766. * 模式切换
  1767. *
  1768. */
  1769. U.MD.D.I.ModeCheck = function (type) {
  1770. if (US.Config.type == type) {
  1771. return
  1772. }
  1773. US.Config.type = type
  1774. $('.U_PBL_Check .active')[0].className = ''
  1775. if (type == 1) {
  1776. $('.U_PBL_Check div')[0].className = 'active'
  1777. $("#U_MD_D_BG")[0].style.backgroundImage = US.Config.background
  1778. } else {
  1779. $('.U_PBL_Check div')[1].className = 'active'
  1780. $("#U_MD_D_BG")[0].style.backgroundImage = 'url("/img/icon/easyBg.png")'
  1781. }
  1782. //初始化桌面图标
  1783. U.MD.D.I.initDesktopIcons($("#U_MD_D_K")[0], type);
  1784. if (type == 2) {
  1785. U.MD.D.I.openApplication("project")
  1786. }
  1787. }
  1788. /**
  1789. * 隐藏任务栏
  1790. *
  1791. * @param {element} 桌面元素
  1792. */
  1793. U.MD.D.I.hiddenTaskbar = function (el) {
  1794. //任务栏位置变小
  1795. U.selectEl(el).parentElement(3).css({ "bottom": "-60px" });
  1796. //桌面的位置变大
  1797. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1798. }
  1799. /**
  1800. * 隐藏任务栏
  1801. *
  1802. * @param {element} 桌面元素
  1803. */
  1804. U.MD.D.I.hiddenTaskbarout = function (el) {
  1805. //任务栏位置变小
  1806. if (!U.UF.EV.stopBubbleMouseOutOrOver(el)) {
  1807. //任务栏位置变化
  1808. U.selectEl(el).css({ "bottom": "-60px" });
  1809. //桌面的位置变大
  1810. // U.selectEl("#U_MD_D_K").css({ "left": "5px" });
  1811. }
  1812. }
  1813. /**
  1814. * 初始化打印桌面图标
  1815. *
  1816. * @param {element} 桌面元素
  1817. */
  1818. U.MD.D.I.initDesktopIcons = function (el, type) {
  1819. var i, //用于循环
  1820. _content, //桌面图标元素
  1821. _iconcontent, //桌面图标元素
  1822. _frag = $$("frag"), //定义一个碎片元素
  1823. _type = US.userInfo.type,
  1824. _org = US.userInfo.org,
  1825. _oid = US.userInfo.organizeid,
  1826. _role = US.userInfo.role,
  1827. _teacherDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.teacherDeskIcon)), //获取教师端桌面图标
  1828. _easyDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.easyDeskIcon)), //极简模式桌面图标
  1829. _teacherDesktopIconInfo2 = U.MD.D.I.teacherDeskIcon2, //获取教师端桌面图标
  1830. _studentDesktopIconInfo = JSON.parse(JSON.stringify(U.MD.D.I.studentDeskIcon)), //获取学生端桌面图标
  1831. _studentDesktopIconInfo2 = U.MD.D.I.studentDeskIcon2, //获取学生端桌面图标
  1832. _studentDesktopIconInfo3 = U.MD.D.I.studentDeskIcon3, //获取学生端桌面图标
  1833. _orgDesktopIconInfo = U.MD.D.I.orgDeskIcon, //获取组织桌面图标
  1834. _orgStemDeskIcon = U.MD.D.I.orgStemDeskIcon,
  1835. _szulsDeskIcon = U.MD.D.I.szulsDeskIcon,
  1836. _hanDeskIcon = U.MD.D.I.hanDeskIcon,
  1837. _schoolDesktopIconInfo = U.MD.D.I.schoolDeskIcon, //获取测试学校桌面图标
  1838. _BSDNSteacherDesktopIconInfo = U.MD.D.I.BSDNSteacherDeskIcon, //获取北师大.
  1839. _BSDNSstudentDesktopIconInfo = U.MD.D.I.BSDNSstudentDeskIcon, //获取北师大.
  1840. _zhoujiateacherDesktopIconInfo = U.MD.D.I.zhoujiaTeacherDeskIcon, //获取周佳名工作室
  1841. _SONGteacherDesktopIconInfo = U.MD.D.I.SONGteacherDeskIcon, //获取松山湖
  1842. _wanketeacherDesktopIconInfo = U.MD.D.I.wankeTeacherDeskIcon, //获取万科双语
  1843. _wankeAdminDesktopIconInfo = U.MD.D.I.wankeAdminDeskIcon, //获取万科双语
  1844. _MingdeTeacherDeskIcon = U.MD.D.I.MingdeTeacherDeskIcon, //获取万科双语
  1845. _lhsteacherDesktopIconInfo = U.MD.D.I.lhsTeacherDeskIcon, //获取未来小学
  1846. _lhsAdminDesktopIconInfo = U.MD.D.I.lhsAdminDeskIcon, //获取未来小学
  1847. _GMteacherDesktopIconInfo = U.MD.D.I.GMteacherDeskIcon, //获取光明学校桌面图标
  1848. _GMstudentDesktopIconInfo = U.MD.D.I.GMstudentDeskIcon, //获取光明学校桌面图标
  1849. _tcStudentDeskIconInfo = U.MD.D.I.tcStudentDeskIcon, //腾讯学生
  1850. _tcTeacherDeskIconInfo = U.MD.D.I.tcTeacherDeskIcon, //腾讯学生
  1851. _futianTeacherDeskIconInfo = U.MD.D.I.futianTeacherDeskIcon, //福田
  1852. _futianAdminDeskIconInfo = U.MD.D.I.futianAdminDeskIcon, //福田
  1853. _szjkyTeacherDeskIconInfo = U.MD.D.I.szjkyTeacherDeskIcon, //未来教育基地
  1854. _szjkyAdminDeskIconInfo = U.MD.D.I.szjkyAdminDeskIcon, //未来教育基地
  1855. _szjkyStudentDeskIconInfo = U.MD.D.I.szjkyStudentDeskIcon, //未来教育基地
  1856. _chjyjTeacherDeskIconInfo = U.MD.D.I.chjyjTeacherDeskIcon, //成华教育局
  1857. _chjyjAdminDeskIconInfo = U.MD.D.I.chjyjAdminDeskIcon, //成华教育局
  1858. _chjyjStudentDeskIconInfo = U.MD.D.I.chjyjStudentDeskIcon, //成华教育局
  1859. _dseiTeacherDeskIconInfo = U.MD.D.I.dseiTeacherDeskIcon, //dsei
  1860. _dseiAdminDeskIconInfo = U.MD.D.I.dseiAdminDeskIcon, //dsei
  1861. _dseiStudentDeskIconInfo = U.MD.D.I.dseiStudentDeskIcon, //dsei
  1862. _heyuanTeacherDeskIconInfo = U.MD.D.I.heyuanTeacherDeskIcon, //福田
  1863. _heyuannAdminDeskIconInfo = U.MD.D.I.heyuanAdminDeskIcon, //福田
  1864. _szherTeacherDeskIconInfo = U.MD.D.I.szherTeacherDeskIcon, //szher
  1865. _gdjgTeacherDeskIconInfo = U.MD.D.I.gdjgTeacherDeskIcon, //
  1866. _gdjgAdminDeskIconInfo = U.MD.D.I.gdjgAdminDeskIcon, //
  1867. _lotechTeacherDeskIconInfo = U.MD.D.I.lotechTeacherDeskIcon, //lotech
  1868. _longhuaTeacherDeskIconInfo = U.MD.D.I.longhuateacherDeskIcon, //龙华中心
  1869. _siesTeacherDeskIconInfo = U.MD.D.I.siesteacherDeskIcon, //sies
  1870. _siesStudentDeskIconInfo = U.MD.D.I.siesStudentDeskIcon, //sies
  1871. _guzmsTeacherDeskIconInfo = U.MD.D.I.guzmsteacherDeskIcon, //guzms
  1872. _guzmsStudentDeskIconInfo = U.MD.D.I.guzmsStudentDeskIcon, //guzms
  1873. _tcOrganizerDeskIconInfo = U.MD.D.I.tcOrganizerDeskIcon, //腾讯学生
  1874. _hkTeacherDeskIconInfo = U.MD.D.I.hkteacherDeskIcon, //hk
  1875. _hkStudentDeskIconInfo = U.MD.D.I.hkStudentDeskIcon, //hk
  1876. _hkaceTeacherDeskIconInfo = U.MD.D.I.hkaceteacherDeskIcon, //hk
  1877. _hkaceStudentDeskIconInfo = U.MD.D.I.hkaceStudentDeskIcon, //hk
  1878. _cocobizTeacherDeskIconInfo = U.MD.D.I.cocobizteacherDeskIcon, //cocobiz
  1879. _cocobizStudentDeskIconInfo = U.MD.D.I.cocobizStudentDeskIcon, //cocobiz
  1880. _xxzjkyTeacherDeskIconInfo = U.MD.D.I.xxzjkyteacherDeskIcon, //xxzjky
  1881. _xxzjkyStudentDeskIconInfo = U.MD.D.I.xxzjkyStudentDeskIcon, //xxzjky
  1882. _hkZJLSTeacherDeskIconInfo = U.MD.D.I.hkZJLSteacherDeskIcon, //hk
  1883. _hkZJLSStudentDeskIconInfo = U.MD.D.I.hkZJLSStudentDeskIcon, //hk
  1884. _yunhaiTeacherDeskIconInfo = U.MD.D.I.yunhaiTeacherDeskIcon, //云海
  1885. _tpcStudentDeskIconInfo = U.MD.D.I.tpcStudentDeskIcon,
  1886. _tpcTeacherDeskIconInfo = U.MD.D.I.tpcTeacherDeskIcon,
  1887. _tpcOrganizerDeskIconInfo = U.MD.D.I.tpcAdminDeskIcon,
  1888. _thuioeStudentDeskIconInfo = U.MD.D.I.thuioeStudentDeskIcon, // thu-ioe
  1889. _thuioeTeacherDeskIconInfo = U.MD.D.I.thuioeTeacherDeskIcon, // thu-ioe
  1890. _jccssylStudentDeskIconInfo = U.MD.D.I.jccssylStudentDeskIcon, // jccssyl
  1891. _jccssylTeacherDeskIconInfo = U.MD.D.I.jccssylTeacherDeskIcon, // jccssyl
  1892. _caleStudentDeskIconInfo = U.MD.D.I.caleStudentDeskIcon, // jccssyl
  1893. _caleTeacherDeskIconInfo = U.MD.D.I.caleTeacherDeskIcon, // jccssyl
  1894. _lqwmsgzsStudentDeskIconInfo = U.MD.D.I.lqwmsgzsStudentDeskIcon, // lqwmsgzs
  1895. _lqwmsgzsTeacherDeskIconInfo = U.MD.D.I.lqwmsgzsTeacherDeskIcon, // lqwmsgzs
  1896. _ytyStudentDeskIconInfo = U.MD.D.I.ytyStudentDeskIcon, // 盐田幼儿园
  1897. _ytyTeacherDeskIconInfo = U.MD.D.I.ytyTeacherDeskIcon, // 盐田幼儿园
  1898. _szscStudentDeskIconInfo = U.MD.D.I.szscStudentDeskIcon, //网络夏令营
  1899. _szscTeacherDeskIconInfo = U.MD.D.I.szscTeacherDeskIcon, //网络夏令营
  1900. _nsfxStudentDeskIconInfo = U.MD.D.I.nsfxStudentDeskIcon, //nsfx
  1901. _nsfxTeacherDeskIconInfo = U.MD.D.I.nsfxTeacherDeskIcon, //nsfx
  1902. _stiaStudentDeskIconInfo = U.MD.D.I.stiaStudentDeskIcon, //stia
  1903. _stiaTeacherDeskIconInfo = U.MD.D.I.stiaTeacherDeskIcon, //stia
  1904. _szdjgStudentDeskIconInfo = U.MD.D.I.szdjgStudentDeskIcon, //szdjg
  1905. _szdjgTeacherDeskIconInfo = U.MD.D.I.szdjgTeacherDeskIcon, //szdjg
  1906. _x010607StudentDeskIconInfo = U.MD.D.I.x010607StudentDeskIcon, //010607
  1907. _x010607TeacherDeskIconInfo = U.MD.D.I.x010607TeacherDeskIcon, //010607
  1908. _x010608StudentDeskIconInfo = U.MD.D.I.x010608StudentDeskIcon, //010608
  1909. _x010608TeacherDeskIconInfo = U.MD.D.I.x010608TeacherDeskIcon, //010608
  1910. _x010611StudentDeskIconInfo = U.MD.D.I.x010611StudentDeskIcon, //010611
  1911. _x010611TeacherDeskIconInfo = U.MD.D.I.x010611TeacherDeskIcon, //010611
  1912. _tianyuantudentDeskIconInfo = U.MD.D.I.tianyuanStudentDeskIcon, //tianyuan
  1913. _tianyuanTeacherDeskIconInfo = U.MD.D.I.tianyuanTeacherDeskIcon, //tianyuan
  1914. _xhlyStudentDeskIconInfo = U.MD.D.I.xhlyStudentDeskIcon, //xhly
  1915. _xhlyTeacherDeskIconInfo = U.MD.D.I.xhlyTeacherDeskIcon, //xhly
  1916. _CUHKEDUStudentDeskIconInfo = U.MD.D.I.CUHKEDUStudentDeskIcon, //CUHK_EDU
  1917. _CUHKEDUTeacherDeskIconInfo = U.MD.D.I.CUHKEDUTeacherDeskIcon, //CUHK_EDU
  1918. _x010503StudentDeskIconInfo = U.MD.D.I.x010503StudentDeskIcon, //010503
  1919. _x010503TeacherDeskIconInfo = U.MD.D.I.x010503TeacherDeskIcon, //010503
  1920. _x010504StudentDeskIconInfo = U.MD.D.I.x010504StudentDeskIcon, //010504
  1921. _x010504TeacherDeskIconInfo = U.MD.D.I.x010504TeacherDeskIcon, //010504
  1922. _x010204StudentDeskIconInfo = U.MD.D.I.x010204StudentDeskIcon, //010204
  1923. _x010204TeacherDeskIconInfo = U.MD.D.I.x010204TeacherDeskIcon, //010204
  1924. _trailStudentDeskIconInfo = U.MD.D.I.trailStudentDeskIcon, //trail
  1925. _trailTeacherDeskIconInfo = U.MD.D.I.trailTeacherDeskIcon, //trail
  1926. _SCNUETTeacherDeskIconInfo = U.MD.D.I.SCNUETTeacherDeskIcon, //SCNUET
  1927. _SCNUETAdminDeskIconInfo = U.MD.D.I.SCNUETAdminDeskIcon, //SCNUET
  1928. _SCNUETStudentDeskIconInfo = U.MD.D.I.SCNUETStudentDeskIcon, //SCNUET
  1929. _SPROUTLabTeacherDeskIconInfo = U.MD.D.I.SPROUTLabTeacherDeskIcon, //SPROUT Lab
  1930. _SPROUTLabStudentDeskIconInfo = U.MD.D.I.SPROUTLabStudentDeskIcon, //SPROUT Lab
  1931. _x020201TeacherDeskIconInfo = U.MD.D.I.x020201TeacherDeskIcon, //x020201
  1932. _x020201AdminDeskIconInfo = U.MD.D.I.x020201AdminDeskIcon, //x020201
  1933. _x020201StudentDeskIconInfo = U.MD.D.I.x020201StudentDeskIcon, //x020201
  1934. _scnuaiTeacherDeskIconInfo = U.MD.D.I.scnuaiTeacherDeskIcon, //scnuai
  1935. _scnuaiAdminDeskIconInfo = U.MD.D.I.scnuaiAdminDeskIcon, //scnuai
  1936. _scnuaiStudentDeskIconInfo = U.MD.D.I.scnuaiStudentDeskIcon, //scnuai
  1937. _szscOrganizerDeskIconInfo = U.MD.D.I.szscOrganizerDeskIcon; //szsc
  1938. var _oidA = ['69893dca-1d47-11ed-8c78-005056b86db5', "91305d49-01ba-11ed-8c78-005056b86db5", "d9db3320-503a-11ed-8c78-005056b86db5", "05b62310-8cda-11ed-b13d-005056b86db5", '1c3b9def-8fbe-11ed-b13d-005056b86db5', '91305d49-01ba-11ed-8c78-005056b86db4', 'ea2a8c65-f38c-11ed-91d8-005056b86db5', '4c686762-1d0a-11ed-8c78-005056b86db5', 'b1095a3c-1d06-4ac8-854f-7c0d97f4ab41', '206c38d2-0cbe-11ee-91d8-005056b86db5', '2f30fe58-a94f-11ee-b534-005056b86db5', 'eaba9110-d1eb-11ee-b534-005056b86db5','c7df0bd4-6e75-401a-a137-4e163aa62263','8a352da2-56e1-11ef-b873-005056b86db5','9b46a3c9-7657-11ef-9b30-005056b86db5','857af1c7-c8ee-4b04-85b5-fd182903adb7','876030db-7a49-11ef-9b30-005056b86db5','b97fc213-86a9-11ef-9b30-005056b86db5', 'c636f63e-86f4-11ef-9b30-005056b86db5','6c16df93-8849-11ef-9b30-005056b86db5','72c16ee0-89fe-11ef-9b30-005056b86db5','369222a8-cddd-11ed-9546-005056b86db5','3fc7840d-a1c4-11ef-9b30-005056b86db5'];
  1939. 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'];
  1940. //清楚桌面图标
  1941. el.innerHTML = "";
  1942. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5' || _oid == "16d397f3-b192-11ed-9211-005056b86db5" || _org == "0fec3a8a-ad04-11ed-b13d-005056b86db5") {
  1943. _teacherDesktopIconInfo.push(
  1944. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1945. { "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)" } },
  1946. )
  1947. _easyDesktopIconInfo.push({ "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)", "width": '114px', 'height': '114px' } })
  1948. }
  1949. if (_oid == '45facc0a-1211-11ec-80ad-005056b86db5' || _org == '0fec3a8a-ad04-11ed-b13d-005056b86db5') {
  1950. _teacherDesktopIconInfo.push(
  1951. // { "Name": "chatPDF", "Url": "chatPDF", "style": { "cssText": "background-image:url(/img/icon/chatPDF.png)" } },
  1952. { "Name": "学习分析", "Url": "learnAna", "style": { "cssText": "background-image:url(/img/icon/learnAna.png)" } },
  1953. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1954. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1955. { "Name": "AI Agent", "Url": "aiagent", "style": { "cssText": "background-image:url(/img/icon/AIprogram2.png)" } },
  1956. { "Name": "工作管理", "Url": "studioCourse", "style": { "cssText": "background-image:url(/img/icon/studioCourse.png)" } },
  1957. { "Name": "工作中心", "Url": "studioIndex", "style": { "cssText": "background-image:url(/img/icon/studioIndex.png)" } },
  1958. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1959. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1960. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1961. { "Name": "AI助手", "Url": "gpt4", "style": { "cssText": "background-image:url(/img/icon/gpt4.png)" } },
  1962. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1963. { "Name": "观察记录", "Url": "Record", "style": { "cssText": "background-image:url(/img/icon/Record.png)" } },
  1964. { "Name": "课堂观察", "Url": "classroomObservation", "style": { "cssText": "background-image:url(/img/icon/classroomObservation.png)" } },
  1965. { "Name": "学生PBL", "Url": "pblCourse", "style": { "cssText": "background-image:url(/img/icon/pblCourse.png)" } },
  1966. { "Name": "知识建构", "Url": "aiKnowledge", "style": { "cssText": "background-image:url(/img/icon/aiKnowledge.png)" } },
  1967. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  1968. { "Name": "应用中心", "Url": "appStore", "style": { "cssText": "background-image:url(/img/icon/appStore.png)" } },
  1969. )
  1970. }
  1971. if (_oid == '5f6c97eb-4778-11ed-8c78-005056b86db5') {//松坪学校
  1972. _teacherDesktopIconInfo.push(
  1973. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  1974. )
  1975. }
  1976. // if (_oid == 'c7df0bd4-6e75-401a-a137-4e163aa62263') {
  1977. // _teacherDesktopIconInfo.push(
  1978. // )
  1979. // }
  1980. if (_oid == 'c69c43a6-515a-11ee-91d8-005056b86db5') {
  1981. _teacherDesktopIconInfo.push(
  1982. { "Name": "AI共创", "Url": "AIChat", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1983. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1984. )
  1985. }
  1986. if (_org == 'c95e0a56-c205-11ed-8d51-005056b86db5') {
  1987. _teacherDesktopIconInfo.push(
  1988. { "Name": "AI协同", "Url": "ainew", "style": { "cssText": "background-image:url(/img/icon/AIChat.png)" } },
  1989. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  1990. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  1991. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  1992. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  1993. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  1994. )
  1995. _studentDesktopIconInfo.push(
  1996. )
  1997. }
  1998. if (_org == '1ef7bdf6-c300-11ed-8d51-005056b86db5') {
  1999. _teacherDesktopIconInfo.push(
  2000. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2001. )
  2002. _studentDesktopIconInfo.push(
  2003. )
  2004. }
  2005. //010606 组织
  2006. if (_oid == 'f297fbdc-f0a0-11ee-b534-005056b86db5' || _oid == '4eb38bbd-90ee-11ef-9b30-005056b86db5') {
  2007. _teacherDesktopIconInfo.push(
  2008. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2009. )
  2010. _studentDesktopIconInfo.push(
  2011. )
  2012. }
  2013. //麒麟二中 和 民新小学
  2014. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5' || _oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2015. _teacherDesktopIconInfo.push(
  2016. )
  2017. }
  2018. if (_oid == "d67940a5-510c-40ea-9c9a-2631ab03013a") {
  2019. _teacherDesktopIconInfo.push(
  2020. { "Name": "教师管理", "Url": "testTeacher", "style": { "cssText": "background-image:url(/img/icon/testTeacher.png)" } },
  2021. { "Name": "教师中心", "Url": "testStudentSies", "style": { "cssText": "background-image:url(/img/icon/testStudent.png)" } },
  2022. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2023. )
  2024. }
  2025. if(_org == 'b50cf65a-001c-11ee-91d8-005056b86db5' && _role == '1'){
  2026. _hkTeacherDeskIconInfo.push(
  2027. { "Name": "教师管理", "Url": "teacher", "style": { "cssText": "background-image:url(/img/icon/teacher.png)" } },
  2028. )
  2029. }
  2030. //北师大附中(010601)
  2031. // if(_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7"){
  2032. // _teacherDesktopIconInfo.push(
  2033. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2034. // )
  2035. // _studentDesktopIconInfo.push(
  2036. // { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2037. // )
  2038. // }
  2039. //樂善堂余近卿中學
  2040. if(_oid == "8d074a02-6057-11ef-b873-005056b86db5"){
  2041. _teacherDesktopIconInfo.push(
  2042. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2043. )
  2044. }
  2045. // Education Artificial Intelligence
  2046. if(_org == "0f4359aa-1065-423f-afcc-a70cc21ea9d0"){
  2047. _teacherDesktopIconInfo.push(
  2048. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2049. )
  2050. }
  2051. if (_oid == "215340ee-8f22-11ee-b98c-005056b86db5" || _oid == "1bc66f4e-8798-11ee-b98c-005056b86db5") {
  2052. _teacherDesktopIconInfo.push(
  2053. { "Name": "AI助手+", "Url": "aigpt", "style": { "cssText": "background-image:url(/img/icon/aigpt.png)" } },
  2054. )
  2055. }
  2056. // 马峦小学 和 龙华区教育科学研究院附属学校 和 侨香学校
  2057. if (_oid == "602a1e3d-d031-11ed-9546-005056b86db5" || _oid == "f30a6615-5379-11ed-8c78-005056b86db5" || _oid == "82fcb5c7-c13b-11ed-8d51-005056b86db5") {
  2058. _teacherDesktopIconInfo.push(
  2059. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2060. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2061. )
  2062. }
  2063. //麒麟二中
  2064. if (_oid == 'cf8841e8-c7c0-11ed-9546-005056b86db5') {
  2065. _studentDesktopIconInfo.push(
  2066. // { "Name": "数据看板", "Url": "dataBoard", "style": { "cssText": "background-image:url(/img/icon/dataBoard.png)" } },
  2067. { "Name": "综合看板", "Url": "dataBoardNew", "style": { "cssText": "background-image:url(/img/icon/dataBoardNew.png)" } },
  2068. )
  2069. }
  2070. //万科双语
  2071. if (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5') {
  2072. _studentDesktopIconInfo3 = _studentDesktopIconInfo3.filter((el) => {
  2073. if (el.Name == '项目管理') {
  2074. el.Name = 'PBL项目'
  2075. }
  2076. return el
  2077. })
  2078. _studentDesktopIconInfo3.push(
  2079. { "Name": "协同建构", "Url": "futureClass", "style": { "cssText": "background-image:url(/img/icon/futureClass.png)" } },
  2080. )
  2081. }
  2082. if (_oid != '45facc0a-1211-11ec-80ad-005056b86db5') {
  2083. _teacherDesktopIconInfo = _teacherDesktopIconInfo.filter((el) => {
  2084. return el.Name != '魔盒识字' && el.Name != '24点'
  2085. })
  2086. }
  2087. 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) {
  2088. _studentDesktopIconInfo.push(
  2089. { "Name": "我的评价", "Url": "myReport", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2090. { "Name": "学生评价", "Url": "studentEvaluate", "style": { "cssText": "background-image:url(/img/icon/evaluation.png)" } },
  2091. )
  2092. }
  2093. //循环创建桌面图标
  2094. if (type == 1) {
  2095. if (_type == 2 && _oidA.indexOf(_oid) == -1 && _orgA.indexOf(_org) == -1 && _org != 'eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217') {
  2096. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2097. _content = $$("div", {
  2098. className: "U_MD_D_KO",
  2099. "onmousedown": U.UF.C.closure(function (obj) {
  2100. //防止拖动图标即打开了桌面应用
  2101. U.MD.D.click(this, obj);
  2102. }, [_studentDesktopIconInfo[i]]),
  2103. "onclick": U.UF.C.closure(function (obj) {
  2104. //防止拖动图标即打开了桌面应用
  2105. U.MD.D.click(this, obj);
  2106. }, [_studentDesktopIconInfo[i]])
  2107. }, _frag); //
  2108. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2109. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2110. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2111. }
  2112. } else if (_type == 2 && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  2113. for (i = 0; i < _hkZJLSStudentDeskIconInfo.length; i++) {
  2114. _content = $$("div", {
  2115. className: "U_MD_D_KO",
  2116. "onmousedown": U.UF.C.closure(function (obj) {
  2117. //防止拖动图标即打开了桌面应用
  2118. U.MD.D.click(this, obj);
  2119. }, [_hkZJLSStudentDeskIconInfo[i]]),
  2120. "onclick": U.UF.C.closure(function (obj) {
  2121. //防止拖动图标即打开了桌面应用
  2122. U.MD.D.click(this, obj);
  2123. }, [_hkZJLSStudentDeskIconInfo[i]])
  2124. }, _frag); //
  2125. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2126. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSStudentDeskIconInfo[i].style }, _iconcontent);
  2127. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSStudentDeskIconInfo[i].Name }, _iconcontent);
  2128. } //
  2129. }else if (_type == 2 && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  2130. for (i = 0; i < _ytyStudentDeskIconInfo.length; i++) {
  2131. _content = $$("div", {
  2132. className: "U_MD_D_KO",
  2133. "onmousedown": U.UF.C.closure(function (obj) {
  2134. //防止拖动图标即打开了桌面应用
  2135. U.MD.D.click(this, obj);
  2136. }, [_ytyStudentDeskIconInfo[i]]),
  2137. "onclick": U.UF.C.closure(function (obj) {
  2138. //防止拖动图标即打开了桌面应用
  2139. U.MD.D.click(this, obj);
  2140. }, [_ytyStudentDeskIconInfo[i]])
  2141. }, _frag); //
  2142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyStudentDeskIconInfo[i].style }, _iconcontent);
  2144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyStudentDeskIconInfo[i].Name }, _iconcontent);
  2145. } //
  2146. } else if (_type == 2 && (_org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff")) {
  2147. for (i = 0; i < _jccssylStudentDeskIconInfo.length; i++) {
  2148. _content = $$("div", {
  2149. className: "U_MD_D_KO",
  2150. "onmousedown": U.UF.C.closure(function (obj) {
  2151. //防止拖动图标即打开了桌面应用
  2152. U.MD.D.click(this, obj);
  2153. }, [_jccssylStudentDeskIconInfo[i]]),
  2154. "onclick": U.UF.C.closure(function (obj) {
  2155. //防止拖动图标即打开了桌面应用
  2156. U.MD.D.click(this, obj);
  2157. }, [_jccssylStudentDeskIconInfo[i]])
  2158. }, _frag); //
  2159. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2160. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylStudentDeskIconInfo[i].style }, _iconcontent);
  2161. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylStudentDeskIconInfo[i].Name }, _iconcontent);
  2162. }
  2163. } else if (_type == 2 && (_org == "884c5665-a453-46f3-b7b6-01d575290aa9")) {
  2164. for (i = 0; i < _scnuaiStudentDeskIconInfo.length; i++) {
  2165. _content = $$("div", {
  2166. className: "U_MD_D_KO",
  2167. "onmousedown": U.UF.C.closure(function (obj) {
  2168. //防止拖动图标即打开了桌面应用
  2169. U.MD.D.click(this, obj);
  2170. }, [_scnuaiStudentDeskIconInfo[i]]),
  2171. "onclick": U.UF.C.closure(function (obj) {
  2172. //防止拖动图标即打开了桌面应用
  2173. U.MD.D.click(this, obj);
  2174. }, [_scnuaiStudentDeskIconInfo[i]])
  2175. }, _frag); //
  2176. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2177. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiStudentDeskIconInfo[i].style }, _iconcontent);
  2178. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiStudentDeskIconInfo[i].Name }, _iconcontent);
  2179. }
  2180. } else if (_type == 2 && (_org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344")) {
  2181. for (i = 0; i < _caleStudentDeskIconInfo.length; i++) {
  2182. _content = $$("div", {
  2183. className: "U_MD_D_KO",
  2184. "onmousedown": U.UF.C.closure(function (obj) {
  2185. //防止拖动图标即打开了桌面应用
  2186. U.MD.D.click(this, obj);
  2187. }, [_caleStudentDeskIconInfo[i]]),
  2188. "onclick": U.UF.C.closure(function (obj) {
  2189. //防止拖动图标即打开了桌面应用
  2190. U.MD.D.click(this, obj);
  2191. }, [_caleStudentDeskIconInfo[i]])
  2192. }, _frag); //
  2193. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2194. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleStudentDeskIconInfo[i].style }, _iconcontent);
  2195. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleStudentDeskIconInfo[i].Name }, _iconcontent);
  2196. }
  2197. } else if (_type == 2 && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2198. for (i = 0; i < _thuioeStudentDeskIconInfo.length; i++) {
  2199. _content = $$("div", {
  2200. className: "U_MD_D_KO",
  2201. "onmousedown": U.UF.C.closure(function (obj) {
  2202. //防止拖动图标即打开了桌面应用
  2203. U.MD.D.click(this, obj);
  2204. }, [_thuioeStudentDeskIconInfo[i]]),
  2205. "onclick": U.UF.C.closure(function (obj) {
  2206. //防止拖动图标即打开了桌面应用
  2207. U.MD.D.click(this, obj);
  2208. }, [_thuioeStudentDeskIconInfo[i]])
  2209. }, _frag); //
  2210. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2211. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeStudentDeskIconInfo[i].style }, _iconcontent);
  2212. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeStudentDeskIconInfo[i].Name }, _iconcontent);
  2213. }
  2214. } else if (_type == 2 && (_org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956")) {
  2215. for (i = 0; i < _tpcStudentDeskIconInfo.length; i++) {
  2216. _content = $$("div", {
  2217. className: "U_MD_D_KO",
  2218. "onmousedown": U.UF.C.closure(function (obj) {
  2219. //防止拖动图标即打开了桌面应用
  2220. U.MD.D.click(this, obj);
  2221. }, [_tpcStudentDeskIconInfo[i]]),
  2222. "onclick": U.UF.C.closure(function (obj) {
  2223. //防止拖动图标即打开了桌面应用
  2224. U.MD.D.click(this, obj);
  2225. }, [_tpcStudentDeskIconInfo[i]])
  2226. }, _frag); //
  2227. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2228. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcStudentDeskIconInfo[i].style }, _iconcontent);
  2229. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcStudentDeskIconInfo[i].Name }, _iconcontent);
  2230. } //
  2231. } else if (_type == 2 && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5")) {
  2232. for (i = 0; i < _chjyjStudentDeskIconInfo.length; i++) {
  2233. _content = $$("div", {
  2234. className: "U_MD_D_KO",
  2235. "onmousedown": U.UF.C.closure(function (obj) {
  2236. //防止拖动图标即打开了桌面应用
  2237. U.MD.D.click(this, obj);
  2238. }, [_chjyjStudentDeskIconInfo[i]]),
  2239. "onclick": U.UF.C.closure(function (obj) {
  2240. //防止拖动图标即打开了桌面应用
  2241. U.MD.D.click(this, obj);
  2242. }, [_chjyjStudentDeskIconInfo[i]])
  2243. }, _frag); //
  2244. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2245. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjStudentDeskIconInfo[i].style }, _iconcontent);
  2246. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjStudentDeskIconInfo[i].Name }, _iconcontent);
  2247. }
  2248. } else if (_type == 2 && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5")) {
  2249. for (i = 0; i < _szjkyStudentDeskIconInfo.length; i++) {
  2250. _content = $$("div", {
  2251. className: "U_MD_D_KO",
  2252. "onmousedown": U.UF.C.closure(function (obj) {
  2253. //防止拖动图标即打开了桌面应用
  2254. U.MD.D.click(this, obj);
  2255. }, [_szjkyStudentDeskIconInfo[i]]),
  2256. "onclick": U.UF.C.closure(function (obj) {
  2257. //防止拖动图标即打开了桌面应用
  2258. U.MD.D.click(this, obj);
  2259. }, [_szjkyStudentDeskIconInfo[i]])
  2260. }, _frag); //
  2261. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2262. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2263. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2264. }
  2265. } else if (_type == 2 && (_oid == "369222a8-cddd-11ed-9546-005056b86db5")) {
  2266. for (i = 0; i < _x020201StudentDeskIconInfo.length; i++) {
  2267. _content = $$("div", {
  2268. className: "U_MD_D_KO",
  2269. "onmousedown": U.UF.C.closure(function (obj) {
  2270. //防止拖动图标即打开了桌面应用
  2271. U.MD.D.click(this, obj);
  2272. }, [_x020201StudentDeskIconInfo[i]]),
  2273. "onclick": U.UF.C.closure(function (obj) {
  2274. //防止拖动图标即打开了桌面应用
  2275. U.MD.D.click(this, obj);
  2276. }, [_x020201StudentDeskIconInfo[i]])
  2277. }, _frag); //
  2278. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2279. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201StudentDeskIconInfo[i].style }, _iconcontent);
  2280. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201StudentDeskIconInfo[i].Name }, _iconcontent);
  2281. }
  2282. } else if (_type == 2 && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5")) {
  2283. for (i = 0; i < _SCNUETStudentDeskIconInfo.length; i++) {
  2284. _content = $$("div", {
  2285. className: "U_MD_D_KO",
  2286. "onmousedown": U.UF.C.closure(function (obj) {
  2287. //防止拖动图标即打开了桌面应用
  2288. U.MD.D.click(this, obj);
  2289. }, [_SCNUETStudentDeskIconInfo[i]]),
  2290. "onclick": U.UF.C.closure(function (obj) {
  2291. //防止拖动图标即打开了桌面应用
  2292. U.MD.D.click(this, obj);
  2293. }, [_SCNUETStudentDeskIconInfo[i]])
  2294. }, _frag); //
  2295. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2296. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETStudentDeskIconInfo[i].style }, _iconcontent);
  2297. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETStudentDeskIconInfo[i].Name }, _iconcontent);
  2298. }
  2299. } else if (_type == 2 && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5")) {
  2300. for (i = 0; i < _dseiStudentDeskIconInfo.length; i++) {
  2301. _content = $$("div", {
  2302. className: "U_MD_D_KO",
  2303. "onmousedown": U.UF.C.closure(function (obj) {
  2304. //防止拖动图标即打开了桌面应用
  2305. U.MD.D.click(this, obj);
  2306. }, [_dseiStudentDeskIconInfo[i]]),
  2307. "onclick": U.UF.C.closure(function (obj) {
  2308. //防止拖动图标即打开了桌面应用
  2309. U.MD.D.click(this, obj);
  2310. }, [_dseiStudentDeskIconInfo[i]])
  2311. }, _frag); //
  2312. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2313. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiStudentDeskIconInfo[i].style }, _iconcontent);
  2314. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiStudentDeskIconInfo[i].Name }, _iconcontent);
  2315. }
  2316. } else if (_type == 2 && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  2317. for (i = 0; i < _lqwmsgzsStudentDeskIconInfo.length; i++) {
  2318. _content = $$("div", {
  2319. className: "U_MD_D_KO",
  2320. "onmousedown": U.UF.C.closure(function (obj) {
  2321. //防止拖动图标即打开了桌面应用
  2322. U.MD.D.click(this, obj);
  2323. }, [_lqwmsgzsStudentDeskIconInfo[i]]),
  2324. "onclick": U.UF.C.closure(function (obj) {
  2325. //防止拖动图标即打开了桌面应用
  2326. U.MD.D.click(this, obj);
  2327. }, [_lqwmsgzsStudentDeskIconInfo[i]])
  2328. }, _frag); //
  2329. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2330. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsStudentDeskIconInfo[i].style }, _iconcontent);
  2331. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsStudentDeskIconInfo[i].Name }, _iconcontent);
  2332. }
  2333. } else if (_type == 2 && (_oid == "8a352da2-56e1-11ef-b873-005056b86db5")) {
  2334. for (i = 0; i < _nsfxStudentDeskIconInfo.length; i++) {
  2335. _content = $$("div", {
  2336. className: "U_MD_D_KO",
  2337. "onmousedown": U.UF.C.closure(function (obj) {
  2338. //防止拖动图标即打开了桌面应用
  2339. U.MD.D.click(this, obj);
  2340. }, [_nsfxStudentDeskIconInfo[i]]),
  2341. "onclick": U.UF.C.closure(function (obj) {
  2342. //防止拖动图标即打开了桌面应用
  2343. U.MD.D.click(this, obj);
  2344. }, [_nsfxStudentDeskIconInfo[i]])
  2345. }, _frag); //
  2346. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2347. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxStudentDeskIconInfo[i].style }, _iconcontent);
  2348. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxStudentDeskIconInfo[i].Name }, _iconcontent);
  2349. }
  2350. } else if (_type == 2 && (_org == "f3b243b2-75e2-4b00-8f66-7644946a2a25")) {
  2351. for (i = 0; i < _stiaStudentDeskIconInfo.length; i++) {
  2352. _content = $$("div", {
  2353. className: "U_MD_D_KO",
  2354. "onmousedown": U.UF.C.closure(function (obj) {
  2355. //防止拖动图标即打开了桌面应用
  2356. U.MD.D.click(this, obj);
  2357. }, [_stiaStudentDeskIconInfo[i]]),
  2358. "onclick": U.UF.C.closure(function (obj) {
  2359. //防止拖动图标即打开了桌面应用
  2360. U.MD.D.click(this, obj);
  2361. }, [_stiaStudentDeskIconInfo[i]])
  2362. }, _frag); //
  2363. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2364. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaStudentDeskIconInfo[i].style }, _iconcontent);
  2365. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaStudentDeskIconInfo[i].Name }, _iconcontent);
  2366. }
  2367. } else if (_type == 2 && (_org == "16ace517-b5c7-4168-a9bb-a9e0035df840")) {
  2368. for (i = 0; i < _szdjgStudentDeskIconInfo.length; i++) {
  2369. _content = $$("div", {
  2370. className: "U_MD_D_KO",
  2371. "onmousedown": U.UF.C.closure(function (obj) {
  2372. //防止拖动图标即打开了桌面应用
  2373. U.MD.D.click(this, obj);
  2374. }, [_szdjgStudentDeskIconInfo[i]]),
  2375. "onclick": U.UF.C.closure(function (obj) {
  2376. //防止拖动图标即打开了桌面应用
  2377. U.MD.D.click(this, obj);
  2378. }, [_szdjgStudentDeskIconInfo[i]])
  2379. }, _frag); //
  2380. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2381. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgStudentDeskIconInfo[i].style }, _iconcontent);
  2382. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgStudentDeskIconInfo[i].Name }, _iconcontent);
  2383. }
  2384. } else if (_type == 2 && (_org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4")) {
  2385. for (i = 0; i < _x010607StudentDeskIconInfo.length; i++) {
  2386. _content = $$("div", {
  2387. className: "U_MD_D_KO",
  2388. "onmousedown": U.UF.C.closure(function (obj) {
  2389. //防止拖动图标即打开了桌面应用
  2390. U.MD.D.click(this, obj);
  2391. }, [_x010607StudentDeskIconInfo[i]]),
  2392. "onclick": U.UF.C.closure(function (obj) {
  2393. //防止拖动图标即打开了桌面应用
  2394. U.MD.D.click(this, obj);
  2395. }, [_x010607StudentDeskIconInfo[i]])
  2396. }, _frag); //
  2397. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2398. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607StudentDeskIconInfo[i].style }, _iconcontent);
  2399. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607StudentDeskIconInfo[i].Name }, _iconcontent);
  2400. }
  2401. } else if (_type == 2 && (_org == "a5efd078-20f6-4185-bef9-6d1c688bee70")) {
  2402. for (i = 0; i < _xhlyStudentDeskIconInfo.length; i++) {
  2403. _content = $$("div", {
  2404. className: "U_MD_D_KO",
  2405. "onmousedown": U.UF.C.closure(function (obj) {
  2406. //防止拖动图标即打开了桌面应用
  2407. U.MD.D.click(this, obj);
  2408. }, [_xhlyStudentDeskIconInfo[i]]),
  2409. "onclick": U.UF.C.closure(function (obj) {
  2410. //防止拖动图标即打开了桌面应用
  2411. U.MD.D.click(this, obj);
  2412. }, [_xhlyStudentDeskIconInfo[i]])
  2413. }, _frag); //
  2414. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2415. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyStudentDeskIconInfo[i].style }, _iconcontent);
  2416. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyStudentDeskIconInfo[i].Name }, _iconcontent);
  2417. }
  2418. } else if (_type == 2 && (_org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6")) {
  2419. for (i = 0; i < _CUHKEDUStudentDeskIconInfo.length; i++) {
  2420. _content = $$("div", {
  2421. className: "U_MD_D_KO",
  2422. "onmousedown": U.UF.C.closure(function (obj) {
  2423. //防止拖动图标即打开了桌面应用
  2424. U.MD.D.click(this, obj);
  2425. }, [_CUHKEDUStudentDeskIconInfo[i]]),
  2426. "onclick": U.UF.C.closure(function (obj) {
  2427. //防止拖动图标即打开了桌面应用
  2428. U.MD.D.click(this, obj);
  2429. }, [_CUHKEDUStudentDeskIconInfo[i]])
  2430. }, _frag); //
  2431. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2432. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUStudentDeskIconInfo[i].style }, _iconcontent);
  2433. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUStudentDeskIconInfo[i].Name }, _iconcontent);
  2434. }
  2435. } else if (_type == 2 && (_oid == "876030db-7a49-11ef-9b30-005056b86db5")) {
  2436. for (i = 0; i < _x010503StudentDeskIconInfo.length; i++) {
  2437. _content = $$("div", {
  2438. className: "U_MD_D_KO",
  2439. "onmousedown": U.UF.C.closure(function (obj) {
  2440. //防止拖动图标即打开了桌面应用
  2441. U.MD.D.click(this, obj);
  2442. }, [_x010503StudentDeskIconInfo[i]]),
  2443. "onclick": U.UF.C.closure(function (obj) {
  2444. //防止拖动图标即打开了桌面应用
  2445. U.MD.D.click(this, obj);
  2446. }, [_x010503StudentDeskIconInfo[i]])
  2447. }, _frag); //
  2448. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2449. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503StudentDeskIconInfo[i].style }, _iconcontent);
  2450. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503StudentDeskIconInfo[i].Name }, _iconcontent);
  2451. }
  2452. } else if (_type == 2 && (_oid == "6c16df93-8849-11ef-9b30-005056b86db5")) {
  2453. for (i = 0; i < _x010504StudentDeskIconInfo.length; i++) {
  2454. _content = $$("div", {
  2455. className: "U_MD_D_KO",
  2456. "onmousedown": U.UF.C.closure(function (obj) {
  2457. //防止拖动图标即打开了桌面应用
  2458. U.MD.D.click(this, obj);
  2459. }, [_x010504StudentDeskIconInfo[i]]),
  2460. "onclick": U.UF.C.closure(function (obj) {
  2461. //防止拖动图标即打开了桌面应用
  2462. U.MD.D.click(this, obj);
  2463. }, [_x010504StudentDeskIconInfo[i]])
  2464. }, _frag); //
  2465. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2466. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504StudentDeskIconInfo[i].style }, _iconcontent);
  2467. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504StudentDeskIconInfo[i].Name }, _iconcontent);
  2468. }
  2469. } else if (_type == 2 && (_oid == "b97fc213-86a9-11ef-9b30-005056b86db5")) {
  2470. for (i = 0; i < _x010204StudentDeskIconInfo.length; i++) {
  2471. _content = $$("div", {
  2472. className: "U_MD_D_KO",
  2473. "onmousedown": U.UF.C.closure(function (obj) {
  2474. //防止拖动图标即打开了桌面应用
  2475. U.MD.D.click(this, obj);
  2476. }, [_x010204StudentDeskIconInfo[i]]),
  2477. "onclick": U.UF.C.closure(function (obj) {
  2478. //防止拖动图标即打开了桌面应用
  2479. U.MD.D.click(this, obj);
  2480. }, [_x010204StudentDeskIconInfo[i]])
  2481. }, _frag); //
  2482. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2483. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204StudentDeskIconInfo[i].style }, _iconcontent);
  2484. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204StudentDeskIconInfo[i].Name }, _iconcontent);
  2485. }
  2486. } else if (_type == 2 && (_oid == "c636f63e-86f4-11ef-9b30-005056b86db5")) {
  2487. for (i = 0; i < _trailStudentDeskIconInfo.length; i++) {
  2488. _content = $$("div", {
  2489. className: "U_MD_D_KO",
  2490. "onmousedown": U.UF.C.closure(function (obj) {
  2491. //防止拖动图标即打开了桌面应用
  2492. U.MD.D.click(this, obj);
  2493. }, [_trailStudentDeskIconInfo[i]]),
  2494. "onclick": U.UF.C.closure(function (obj) {
  2495. //防止拖动图标即打开了桌面应用
  2496. U.MD.D.click(this, obj);
  2497. }, [_trailStudentDeskIconInfo[i]])
  2498. }, _frag); //
  2499. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2500. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailStudentDeskIconInfo[i].style }, _iconcontent);
  2501. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailStudentDeskIconInfo[i].Name }, _iconcontent);
  2502. }
  2503. } else if (_type == 2 && (_org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3")) {
  2504. for (i = 0; i < _SPROUTLabStudentDeskIconInfo.length; i++) {
  2505. _content = $$("div", {
  2506. className: "U_MD_D_KO",
  2507. "onmousedown": U.UF.C.closure(function (obj) {
  2508. //防止拖动图标即打开了桌面应用
  2509. U.MD.D.click(this, obj);
  2510. }, [_SPROUTLabStudentDeskIconInfo[i]]),
  2511. "onclick": U.UF.C.closure(function (obj) {
  2512. //防止拖动图标即打开了桌面应用
  2513. U.MD.D.click(this, obj);
  2514. }, [_SPROUTLabStudentDeskIconInfo[i]])
  2515. }, _frag); //
  2516. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2517. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabStudentDeskIconInfo[i].style }, _iconcontent);
  2518. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabStudentDeskIconInfo[i].Name }, _iconcontent);
  2519. }
  2520. } else if (_type == 2 && (_oid == "9b46a3c9-7657-11ef-9b30-005056b86db5")) {
  2521. for (i = 0; i < _x010608StudentDeskIconInfo.length; i++) {
  2522. _content = $$("div", {
  2523. className: "U_MD_D_KO",
  2524. "onmousedown": U.UF.C.closure(function (obj) {
  2525. //防止拖动图标即打开了桌面应用
  2526. U.MD.D.click(this, obj);
  2527. }, [_x010608StudentDeskIconInfo[i]]),
  2528. "onclick": U.UF.C.closure(function (obj) {
  2529. //防止拖动图标即打开了桌面应用
  2530. U.MD.D.click(this, obj);
  2531. }, [_x010608StudentDeskIconInfo[i]])
  2532. }, _frag); //
  2533. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2534. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608StudentDeskIconInfo[i].style }, _iconcontent);
  2535. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608StudentDeskIconInfo[i].Name }, _iconcontent);
  2536. }
  2537. } else if (_type == 2 && (_oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5")) {
  2538. for (i = 0; i < _x010611StudentDeskIconInfo.length; i++) {
  2539. _content = $$("div", {
  2540. className: "U_MD_D_KO",
  2541. "onmousedown": U.UF.C.closure(function (obj) {
  2542. //防止拖动图标即打开了桌面应用
  2543. U.MD.D.click(this, obj);
  2544. }, [_x010611StudentDeskIconInfo[i]]),
  2545. "onclick": U.UF.C.closure(function (obj) {
  2546. //防止拖动图标即打开了桌面应用
  2547. U.MD.D.click(this, obj);
  2548. }, [_x010611StudentDeskIconInfo[i]])
  2549. }, _frag); //
  2550. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2551. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611StudentDeskIconInfo[i].style }, _iconcontent);
  2552. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611StudentDeskIconInfo[i].Name }, _iconcontent);
  2553. }
  2554. } else if (_type == 2 && (_oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5")) {
  2555. for (i = 0; i < _tianyuantudentDeskIconInfo.length; i++) {
  2556. _content = $$("div", {
  2557. className: "U_MD_D_KO",
  2558. "onmousedown": U.UF.C.closure(function (obj) {
  2559. //防止拖动图标即打开了桌面应用
  2560. U.MD.D.click(this, obj);
  2561. }, [_tianyuantudentDeskIconInfo[i]]),
  2562. "onclick": U.UF.C.closure(function (obj) {
  2563. //防止拖动图标即打开了桌面应用
  2564. U.MD.D.click(this, obj);
  2565. }, [_tianyuantudentDeskIconInfo[i]])
  2566. }, _frag); //
  2567. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2568. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuantudentDeskIconInfo[i].style }, _iconcontent);
  2569. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuantudentDeskIconInfo[i].Name }, _iconcontent);
  2570. }
  2571. } else if (_type == 2 && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  2572. for (i = 0; i < _siesStudentDeskIconInfo.length; i++) {
  2573. _content = $$("div", {
  2574. className: "U_MD_D_KO",
  2575. "onmousedown": U.UF.C.closure(function (obj) {
  2576. //防止拖动图标即打开了桌面应用
  2577. U.MD.D.click(this, obj);
  2578. }, [_siesStudentDeskIconInfo[i]]),
  2579. "onclick": U.UF.C.closure(function (obj) {
  2580. //防止拖动图标即打开了桌面应用
  2581. U.MD.D.click(this, obj);
  2582. }, [_siesStudentDeskIconInfo[i]])
  2583. }, _frag); //
  2584. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2585. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesStudentDeskIconInfo[i].style }, _iconcontent);
  2586. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesStudentDeskIconInfo[i].Name }, _iconcontent);
  2587. }
  2588. } else if (_type == 2 && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  2589. for (i = 0; i < _guzmsStudentDeskIconInfo.length; i++) {
  2590. _content = $$("div", {
  2591. className: "U_MD_D_KO",
  2592. "onmousedown": U.UF.C.closure(function (obj) {
  2593. //防止拖动图标即打开了桌面应用
  2594. U.MD.D.click(this, obj);
  2595. }, [_guzmsStudentDeskIconInfo[i]]),
  2596. "onclick": U.UF.C.closure(function (obj) {
  2597. //防止拖动图标即打开了桌面应用
  2598. U.MD.D.click(this, obj);
  2599. }, [_guzmsStudentDeskIconInfo[i]])
  2600. }, _frag); //
  2601. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2602. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsStudentDeskIconInfo[i].style }, _iconcontent);
  2603. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsStudentDeskIconInfo[i].Name }, _iconcontent);
  2604. }
  2605. } else if (_type == 2 && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  2606. for (i = 0; i < _hkStudentDeskIconInfo.length; i++) {
  2607. _content = $$("div", {
  2608. className: "U_MD_D_KO",
  2609. "onmousedown": U.UF.C.closure(function (obj) {
  2610. //防止拖动图标即打开了桌面应用
  2611. U.MD.D.click(this, obj);
  2612. }, [_hkStudentDeskIconInfo[i]]),
  2613. "onclick": U.UF.C.closure(function (obj) {
  2614. //防止拖动图标即打开了桌面应用
  2615. U.MD.D.click(this, obj);
  2616. }, [_hkStudentDeskIconInfo[i]])
  2617. }, _frag); //
  2618. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2619. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkStudentDeskIconInfo[i].style }, _iconcontent);
  2620. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkStudentDeskIconInfo[i].Name }, _iconcontent);
  2621. }
  2622. } else if (_type == 2 && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  2623. for (i = 0; i < _hkaceStudentDeskIconInfo.length; i++) {
  2624. _content = $$("div", {
  2625. className: "U_MD_D_KO",
  2626. "onmousedown": U.UF.C.closure(function (obj) {
  2627. //防止拖动图标即打开了桌面应用
  2628. U.MD.D.click(this, obj);
  2629. }, [_hkaceStudentDeskIconInfo[i]]),
  2630. "onclick": U.UF.C.closure(function (obj) {
  2631. //防止拖动图标即打开了桌面应用
  2632. U.MD.D.click(this, obj);
  2633. }, [_hkaceStudentDeskIconInfo[i]])
  2634. }, _frag); //
  2635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceStudentDeskIconInfo[i].style }, _iconcontent);
  2637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceStudentDeskIconInfo[i].Name }, _iconcontent);
  2638. }
  2639. } else if (_type == 2 && (_oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7")) {
  2640. for (i = 0; i < _BSDNSstudentDesktopIconInfo.length; i++) {
  2641. _content = $$("div", {
  2642. className: "U_MD_D_KO",
  2643. "onmousedown": U.UF.C.closure(function (obj) {
  2644. //防止拖动图标即打开了桌面应用
  2645. U.MD.D.click(this, obj);
  2646. }, [_BSDNSstudentDesktopIconInfo[i]]),
  2647. "onclick": U.UF.C.closure(function (obj) {
  2648. //防止拖动图标即打开了桌面应用
  2649. U.MD.D.click(this, obj);
  2650. }, [_BSDNSstudentDesktopIconInfo[i]])
  2651. }, _frag); //
  2652. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2653. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSstudentDesktopIconInfo[i].style }, _iconcontent);
  2654. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSstudentDesktopIconInfo[i].Name }, _iconcontent);
  2655. }
  2656. } else if (_type == 2 && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  2657. for (i = 0; i < _cocobizStudentDeskIconInfo.length; i++) {
  2658. _content = $$("div", {
  2659. className: "U_MD_D_KO",
  2660. "onmousedown": U.UF.C.closure(function (obj) {
  2661. //防止拖动图标即打开了桌面应用
  2662. U.MD.D.click(this, obj);
  2663. }, [_cocobizStudentDeskIconInfo[i]]),
  2664. "onclick": U.UF.C.closure(function (obj) {
  2665. //防止拖动图标即打开了桌面应用
  2666. U.MD.D.click(this, obj);
  2667. }, [_cocobizStudentDeskIconInfo[i]])
  2668. }, _frag); //
  2669. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2670. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizStudentDeskIconInfo[i].style }, _iconcontent);
  2671. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizStudentDeskIconInfo[i].Name }, _iconcontent);
  2672. }
  2673. } else if (_type == 2 && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  2674. for (i = 0; i < _xxzjkyStudentDeskIconInfo.length; i++) {
  2675. _content = $$("div", {
  2676. className: "U_MD_D_KO",
  2677. "onmousedown": U.UF.C.closure(function (obj) {
  2678. //防止拖动图标即打开了桌面应用
  2679. U.MD.D.click(this, obj);
  2680. }, [_xxzjkyStudentDeskIconInfo[i]]),
  2681. "onclick": U.UF.C.closure(function (obj) {
  2682. //防止拖动图标即打开了桌面应用
  2683. U.MD.D.click(this, obj);
  2684. }, [_xxzjkyStudentDeskIconInfo[i]])
  2685. }, _frag); //
  2686. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2687. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyStudentDeskIconInfo[i].style }, _iconcontent);
  2688. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyStudentDeskIconInfo[i].Name }, _iconcontent);
  2689. }
  2690. } else if (_type == 2 && (_oid == "91305d49-01ba-11ed-8c78-005056b86db5")) {
  2691. for (i = 0; i < _studentDesktopIconInfo.length; i++) {
  2692. _content = $$("div", {
  2693. className: "U_MD_D_KO",
  2694. "onmousedown": U.UF.C.closure(function (obj) {
  2695. //防止拖动图标即打开了桌面应用
  2696. U.MD.D.click(this, obj);
  2697. }, [_studentDesktopIconInfo[i]]),
  2698. "onclick": U.UF.C.closure(function (obj) {
  2699. //防止拖动图标即打开了桌面应用
  2700. U.MD.D.click(this, obj);
  2701. }, [_studentDesktopIconInfo[i]])
  2702. }, _frag); //
  2703. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2704. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo[i].style }, _iconcontent);
  2705. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo[i].Name }, _iconcontent);
  2706. }
  2707. } else if (_type == 2 && _org == "150e3120-9195-11ed-b13d-005056b86db5") {
  2708. for (i = 0; i < _tcStudentDeskIconInfo.length; i++) {
  2709. _content = $$("div", {
  2710. className: "U_MD_D_KO",
  2711. "onmousedown": U.UF.C.closure(function (obj) {
  2712. //防止拖动图标即打开了桌面应用
  2713. U.MD.D.click(this, obj);
  2714. }, [_tcStudentDeskIconInfo[i]]),
  2715. "onclick": U.UF.C.closure(function (obj) {
  2716. //防止拖动图标即打开了桌面应用
  2717. U.MD.D.click(this, obj);
  2718. }, [_tcStudentDeskIconInfo[i]])
  2719. }, _frag); //
  2720. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2721. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcStudentDeskIconInfo[i].style }, _iconcontent);
  2722. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcStudentDeskIconInfo[i].Name }, _iconcontent);
  2723. }
  2724. } else if (_type == 2 && _org == "ee40e8e3-e36c-4872-8105-cf395481012s") {
  2725. for (i = 0; i < _szscStudentDeskIconInfo.length; i++) {
  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. }, [_szscStudentDeskIconInfo[i]]),
  2732. "onclick": U.UF.C.closure(function (obj) {
  2733. //防止拖动图标即打开了桌面应用
  2734. U.MD.D.click(this, obj);
  2735. }, [_szscStudentDeskIconInfo[i]])
  2736. }, _frag); //
  2737. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2738. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscStudentDeskIconInfo[i].style }, _iconcontent);
  2739. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscStudentDeskIconInfo[i].Name }, _iconcontent);
  2740. }
  2741. } else if (_type == 2 && (_oid == '1c3b9def-8fbe-11ed-b13d-005056b86db5' || _org == "7ada499f-4ec7-11ed-8c78-005056b86db5")) {
  2742. for (i = 0; i < _studentDesktopIconInfo3.length; i++) {
  2743. _content = $$("div", {
  2744. className: "U_MD_D_KO",
  2745. "onmousedown": U.UF.C.closure(function (obj) {
  2746. //防止拖动图标即打开了桌面应用
  2747. U.MD.D.click(this, obj);
  2748. }, [_studentDesktopIconInfo3[i]]),
  2749. "onclick": U.UF.C.closure(function (obj) {
  2750. //防止拖动图标即打开了桌面应用
  2751. U.MD.D.click(this, obj);
  2752. }, [_studentDesktopIconInfo3[i]])
  2753. }, _frag); //
  2754. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2755. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo3[i].style }, _iconcontent);
  2756. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo3[i].Name }, _iconcontent);
  2757. }
  2758. } else if (_type == 2 && (_oidA.indexOf(_oid) != -1 || _orgA.indexOf(_org) != -1)) {
  2759. for (i = 0; i < _studentDesktopIconInfo2.length; i++) {
  2760. _content = $$("div", {
  2761. className: "U_MD_D_KO",
  2762. "onmousedown": U.UF.C.closure(function (obj) {
  2763. //防止拖动图标即打开了桌面应用
  2764. U.MD.D.click(this, obj);
  2765. }, [_studentDesktopIconInfo2[i]]),
  2766. "onclick": U.UF.C.closure(function (obj) {
  2767. //防止拖动图标即打开了桌面应用
  2768. U.MD.D.click(this, obj);
  2769. }, [_studentDesktopIconInfo2[i]])
  2770. }, _frag); //
  2771. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2772. $$("div", { className: "U_MD_D_KOS U_Img", "style": _studentDesktopIconInfo2[i].style }, _iconcontent);
  2773. $$("div", { className: "U_MD_D_KOX", "innerHTML": _studentDesktopIconInfo2[i].Name }, _iconcontent);
  2774. }
  2775. } else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 0) {
  2776. for (i = 0; i < _wanketeacherDesktopIconInfo.length; i++) {
  2777. if(_role === 0 && _wanketeacherDesktopIconInfo[i].Url == 'testTeacher'){
  2778. continue
  2779. }
  2780. _content = $$("div", {
  2781. className: "U_MD_D_KO",
  2782. "onmousedown": U.UF.C.closure(function (obj) {
  2783. //防止拖动图标即打开了桌面应用
  2784. U.MD.D.click(this, obj);
  2785. }, [_wanketeacherDesktopIconInfo[i]]),
  2786. "onclick": U.UF.C.closure(function (obj) {
  2787. //防止拖动图标即打开了桌面应用
  2788. U.MD.D.click(this, obj);
  2789. }, [_wanketeacherDesktopIconInfo[i]])
  2790. }, _frag); //
  2791. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2792. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wanketeacherDesktopIconInfo[i].style }, _iconcontent);
  2793. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wanketeacherDesktopIconInfo[i].Name }, _iconcontent);
  2794. }
  2795. }else if ((_type == 1 || _type == 4) && _oid == "1c3b9def-8fbe-11ed-b13d-005056b86db5" && _role == 1) {
  2796. for (i = 0; i < _wankeAdminDesktopIconInfo.length; i++) {
  2797. _content = $$("div", {
  2798. className: "U_MD_D_KO",
  2799. "onmousedown": U.UF.C.closure(function (obj) {
  2800. //防止拖动图标即打开了桌面应用
  2801. U.MD.D.click(this, obj);
  2802. }, [_wankeAdminDesktopIconInfo[i]]),
  2803. "onclick": U.UF.C.closure(function (obj) {
  2804. //防止拖动图标即打开了桌面应用
  2805. U.MD.D.click(this, obj);
  2806. }, [_wankeAdminDesktopIconInfo[i]])
  2807. }, _frag); //
  2808. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2809. $$("div", { className: "U_MD_D_KOS U_Img", "style": _wankeAdminDesktopIconInfo[i].style }, _iconcontent);
  2810. $$("div", { className: "U_MD_D_KOX", "innerHTML": _wankeAdminDesktopIconInfo[i].Name }, _iconcontent);
  2811. }
  2812. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 0) {
  2813. for (i = 0; i < _scnuaiTeacherDeskIconInfo.length; i++) {
  2814. if(_role === 0 && _scnuaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2815. continue
  2816. }
  2817. _content = $$("div", {
  2818. className: "U_MD_D_KO",
  2819. "onmousedown": U.UF.C.closure(function (obj) {
  2820. //防止拖动图标即打开了桌面应用
  2821. U.MD.D.click(this, obj);
  2822. }, [_scnuaiTeacherDeskIconInfo[i]]),
  2823. "onclick": U.UF.C.closure(function (obj) {
  2824. //防止拖动图标即打开了桌面应用
  2825. U.MD.D.click(this, obj);
  2826. }, [_scnuaiTeacherDeskIconInfo[i]])
  2827. }, _frag); //
  2828. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2829. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiTeacherDeskIconInfo[i].style }, _iconcontent);
  2830. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  2831. }
  2832. } else if ((_type == 1 || _type == 4) && _oid == "857af1c7-c8ee-4b04-85b5-fd182903adb7") {
  2833. for (i = 0; i < _BSDNSteacherDesktopIconInfo.length; i++) {
  2834. if(_role === 0 && _BSDNSteacherDesktopIconInfo[i].Url == 'testTeacher'){
  2835. continue
  2836. }
  2837. _content = $$("div", {
  2838. className: "U_MD_D_KO",
  2839. "onmousedown": U.UF.C.closure(function (obj) {
  2840. //防止拖动图标即打开了桌面应用
  2841. U.MD.D.click(this, obj);
  2842. }, [_BSDNSteacherDesktopIconInfo[i]]),
  2843. "onclick": U.UF.C.closure(function (obj) {
  2844. //防止拖动图标即打开了桌面应用
  2845. U.MD.D.click(this, obj);
  2846. }, [_BSDNSteacherDesktopIconInfo[i]])
  2847. }, _frag); //
  2848. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2849. $$("div", { className: "U_MD_D_KOS U_Img", "style": _BSDNSteacherDesktopIconInfo[i].style }, _iconcontent);
  2850. $$("div", { className: "U_MD_D_KOX", "innerHTML": _BSDNSteacherDesktopIconInfo[i].Name }, _iconcontent);
  2851. }
  2852. } else if ((_type == 1 || _type == 4) && _org == "884c5665-a453-46f3-b7b6-01d575290aa9" && _role == 1) {
  2853. for (i = 0; i < _scnuaiAdminDeskIconInfo.length; i++) {
  2854. _content = $$("div", {
  2855. className: "U_MD_D_KO",
  2856. "onmousedown": U.UF.C.closure(function (obj) {
  2857. //防止拖动图标即打开了桌面应用
  2858. U.MD.D.click(this, obj);
  2859. }, [_scnuaiAdminDeskIconInfo[i]]),
  2860. "onclick": U.UF.C.closure(function (obj) {
  2861. //防止拖动图标即打开了桌面应用
  2862. U.MD.D.click(this, obj);
  2863. }, [_scnuaiAdminDeskIconInfo[i]])
  2864. }, _frag); //
  2865. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2866. $$("div", { className: "U_MD_D_KOS U_Img", "style": _scnuaiAdminDeskIconInfo[i].style }, _iconcontent);
  2867. $$("div", { className: "U_MD_D_KOX", "innerHTML": _scnuaiAdminDeskIconInfo[i].Name }, _iconcontent);
  2868. }
  2869. } else if ((_type == 1 || _type == 4) && _org == "63060b4a-89dc-4f0c-bf04-a1de22d479ff") {
  2870. for (i = 0; i < _jccssylTeacherDeskIconInfo.length; i++) {
  2871. if(_role === 0 && _jccssylTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2872. continue
  2873. }
  2874. _content = $$("div", {
  2875. className: "U_MD_D_KO",
  2876. "onmousedown": U.UF.C.closure(function (obj) {
  2877. //防止拖动图标即打开了桌面应用
  2878. U.MD.D.click(this, obj);
  2879. }, [_jccssylTeacherDeskIconInfo[i]]),
  2880. "onclick": U.UF.C.closure(function (obj) {
  2881. //防止拖动图标即打开了桌面应用
  2882. U.MD.D.click(this, obj);
  2883. }, [_jccssylTeacherDeskIconInfo[i]])
  2884. }, _frag); //
  2885. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2886. $$("div", { className: "U_MD_D_KOS U_Img", "style": _jccssylTeacherDeskIconInfo[i].style }, _iconcontent);
  2887. $$("div", { className: "U_MD_D_KOX", "innerHTML": _jccssylTeacherDeskIconInfo[i].Name }, _iconcontent);
  2888. }
  2889. } else if ((_type == 1 || _type == 4) && _org == "03d24cf9-4fbc-4aeb-bb02-6f84f66e6344") {
  2890. for (i = 0; i < _caleTeacherDeskIconInfo.length; i++) {
  2891. if(_role === 0 && _caleTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2892. continue
  2893. }
  2894. _content = $$("div", {
  2895. className: "U_MD_D_KO",
  2896. "onmousedown": U.UF.C.closure(function (obj) {
  2897. //防止拖动图标即打开了桌面应用
  2898. U.MD.D.click(this, obj);
  2899. }, [_caleTeacherDeskIconInfo[i]]),
  2900. "onclick": U.UF.C.closure(function (obj) {
  2901. //防止拖动图标即打开了桌面应用
  2902. U.MD.D.click(this, obj);
  2903. }, [_caleTeacherDeskIconInfo[i]])
  2904. }, _frag); //
  2905. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2906. $$("div", { className: "U_MD_D_KOS U_Img", "style": _caleTeacherDeskIconInfo[i].style }, _iconcontent);
  2907. $$("div", { className: "U_MD_D_KOX", "innerHTML": _caleTeacherDeskIconInfo[i].Name }, _iconcontent);
  2908. }
  2909. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 1) {
  2910. for (i = 0; i < _tpcOrganizerDeskIconInfo.length; i++) {
  2911. _content = $$("div", {
  2912. className: "U_MD_D_KO",
  2913. "onmousedown": U.UF.C.closure(function (obj) {
  2914. //防止拖动图标即打开了桌面应用
  2915. U.MD.D.click(this, obj);
  2916. }, [_tpcOrganizerDeskIconInfo[i]]),
  2917. "onclick": U.UF.C.closure(function (obj) {
  2918. //防止拖动图标即打开了桌面应用
  2919. U.MD.D.click(this, obj);
  2920. }, [_tpcOrganizerDeskIconInfo[i]])
  2921. }, _frag); //
  2922. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2923. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcOrganizerDeskIconInfo[i].style }, _iconcontent);
  2924. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  2925. }
  2926. } else if ((_type == 1 || _type == 4) && _org == "a0fc1c55-3c2f-4ece-8cd4-ac3e2c1e9956" && _role == 0) {
  2927. for (i = 0; i < _tpcTeacherDeskIconInfo.length; i++) {
  2928. if(_role === 0 && _tpcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2929. continue
  2930. }
  2931. _content = $$("div", {
  2932. className: "U_MD_D_KO",
  2933. "onmousedown": U.UF.C.closure(function (obj) {
  2934. //防止拖动图标即打开了桌面应用
  2935. U.MD.D.click(this, obj);
  2936. }, [_tpcTeacherDeskIconInfo[i]]),
  2937. "onclick": U.UF.C.closure(function (obj) {
  2938. //防止拖动图标即打开了桌面应用
  2939. U.MD.D.click(this, obj);
  2940. }, [_tpcTeacherDeskIconInfo[i]])
  2941. }, _frag); //
  2942. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2943. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tpcTeacherDeskIconInfo[i].style }, _iconcontent);
  2944. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tpcTeacherDeskIconInfo[i].Name }, _iconcontent);
  2945. }
  2946. } else if ((_type == 1 || _type == 4) && (_oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  2947. for (i = 0; i < _teacherDesktopIconInfo2.length; i++) {
  2948. if(_role === 0 && _teacherDesktopIconInfo2[i].Url == 'testTeacher'){
  2949. continue
  2950. }
  2951. _content = $$("div", {
  2952. className: "U_MD_D_KO",
  2953. "onmousedown": U.UF.C.closure(function (obj) {
  2954. //防止拖动图标即打开了桌面应用
  2955. U.MD.D.click(this, obj);
  2956. }, [_teacherDesktopIconInfo2[i]]),
  2957. "onclick": U.UF.C.closure(function (obj) {
  2958. //防止拖动图标即打开了桌面应用
  2959. U.MD.D.click(this, obj);
  2960. }, [_teacherDesktopIconInfo2[i]])
  2961. }, _frag); //
  2962. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2963. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo2[i].style }, _iconcontent);
  2964. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo2[i].Name }, _iconcontent);
  2965. }
  2966. } else if ((_type == 1 || _type == 4) && (_org == "fbb00cc1-380b-4173-add4-59b3cf7682b5")) {
  2967. for (i = 0; i < _thuioeTeacherDeskIconInfo.length; i++) {
  2968. if(_role === 0 && _thuioeTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2969. continue
  2970. }
  2971. _content = $$("div", {
  2972. className: "U_MD_D_KO",
  2973. "onmousedown": U.UF.C.closure(function (obj) {
  2974. //防止拖动图标即打开了桌面应用
  2975. U.MD.D.click(this, obj);
  2976. }, [_thuioeTeacherDeskIconInfo[i]]),
  2977. "onclick": U.UF.C.closure(function (obj) {
  2978. //防止拖动图标即打开了桌面应用
  2979. U.MD.D.click(this, obj);
  2980. }, [_thuioeTeacherDeskIconInfo[i]])
  2981. }, _frag); //
  2982. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  2983. $$("div", { className: "U_MD_D_KOS U_Img", "style": _thuioeTeacherDeskIconInfo[i].style }, _iconcontent);
  2984. $$("div", { className: "U_MD_D_KOX", "innerHTML": _thuioeTeacherDeskIconInfo[i].Name }, _iconcontent);
  2985. }
  2986. } else if ((_type == 1 || _type == 4) && (_org == "4df1b570-f6ac-48fc-8d50-d0b157dae776")) {
  2987. for (i = 0; i < _lotechTeacherDeskIconInfo.length; i++) {
  2988. if(_role === 0 && _lotechTeacherDeskIconInfo[i].Url == 'testTeacher'){
  2989. continue
  2990. }
  2991. _content = $$("div", {
  2992. className: "U_MD_D_KO",
  2993. "onmousedown": U.UF.C.closure(function (obj) {
  2994. //防止拖动图标即打开了桌面应用
  2995. U.MD.D.click(this, obj);
  2996. }, [_lotechTeacherDeskIconInfo[i]]),
  2997. "onclick": U.UF.C.closure(function (obj) {
  2998. //防止拖动图标即打开了桌面应用
  2999. U.MD.D.click(this, obj);
  3000. }, [_lotechTeacherDeskIconInfo[i]])
  3001. }, _frag); //
  3002. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3003. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lotechTeacherDeskIconInfo[i].style }, _iconcontent);
  3004. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lotechTeacherDeskIconInfo[i].Name }, _iconcontent);
  3005. }//
  3006. } else if ((_type == 1 || _type == 4) && (_oid == "2f30fe58-a94f-11ee-b534-005056b86db5")) {
  3007. for (i = 0; i < _lqwmsgzsTeacherDeskIconInfo.length; i++) {
  3008. if(_role === 0 && _lqwmsgzsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3009. continue
  3010. }
  3011. _content = $$("div", {
  3012. className: "U_MD_D_KO",
  3013. "onmousedown": U.UF.C.closure(function (obj) {
  3014. //防止拖动图标即打开了桌面应用
  3015. U.MD.D.click(this, obj);
  3016. }, [_lqwmsgzsTeacherDeskIconInfo[i]]),
  3017. "onclick": U.UF.C.closure(function (obj) {
  3018. //防止拖动图标即打开了桌面应用
  3019. U.MD.D.click(this, obj);
  3020. }, [_lqwmsgzsTeacherDeskIconInfo[i]])
  3021. }, _frag); //
  3022. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3023. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lqwmsgzsTeacherDeskIconInfo[i].style }, _iconcontent);
  3024. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lqwmsgzsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3025. }
  3026. } else if ((_type == 1 || _type == 4) && (_oid == "4c686762-1d0a-11ed-8c78-005056b86db5")) {
  3027. for (i = 0; i < _siesTeacherDeskIconInfo.length; i++) {
  3028. if(_role === 0 && _siesTeacherDeskIconInfo[i].Url == 'testTeacherSies'){
  3029. continue
  3030. }
  3031. _content = $$("div", {
  3032. className: "U_MD_D_KO",
  3033. "onmousedown": U.UF.C.closure(function (obj) {
  3034. //防止拖动图标即打开了桌面应用
  3035. U.MD.D.click(this, obj);
  3036. }, [_siesTeacherDeskIconInfo[i]]),
  3037. "onclick": U.UF.C.closure(function (obj) {
  3038. //防止拖动图标即打开了桌面应用
  3039. U.MD.D.click(this, obj);
  3040. }, [_siesTeacherDeskIconInfo[i]])
  3041. }, _frag); //
  3042. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3043. $$("div", { className: "U_MD_D_KOS U_Img", "style": _siesTeacherDeskIconInfo[i].style }, _iconcontent);
  3044. $$("div", { className: "U_MD_D_KOX", "innerHTML": _siesTeacherDeskIconInfo[i].Name }, _iconcontent);
  3045. }
  3046. } else if ((_type == 1 || _type == 4) && (_oid == "c7df0bd4-6e75-401a-a137-4e163aa62263")) {
  3047. for (i = 0; i < _guzmsTeacherDeskIconInfo.length; i++) {
  3048. if(_role === 0 && _guzmsTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3049. continue
  3050. }
  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. }, [_guzmsTeacherDeskIconInfo[i]]),
  3057. "onclick": U.UF.C.closure(function (obj) {
  3058. //防止拖动图标即打开了桌面应用
  3059. U.MD.D.click(this, obj);
  3060. }, [_guzmsTeacherDeskIconInfo[i]])
  3061. }, _frag); //
  3062. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3063. $$("div", { className: "U_MD_D_KOS U_Img", "style": _guzmsTeacherDeskIconInfo[i].style }, _iconcontent);
  3064. $$("div", { className: "U_MD_D_KOX", "innerHTML": _guzmsTeacherDeskIconInfo[i].Name }, _iconcontent);
  3065. }
  3066. } else if ((_type == 1 || _type == 4) && (_oid == "ea2a8c65-f38c-11ed-91d8-005056b86db5")) {
  3067. for (i = 0; i < _longhuaTeacherDeskIconInfo.length; i++) {
  3068. if(_role === 0 && _longhuaTeacherDeskIconInfo[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. }, [_longhuaTeacherDeskIconInfo[i]]),
  3077. "onclick": U.UF.C.closure(function (obj) {
  3078. //防止拖动图标即打开了桌面应用
  3079. U.MD.D.click(this, obj);
  3080. }, [_longhuaTeacherDeskIconInfo[i]])
  3081. }, _frag); //
  3082. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3083. $$("div", { className: "U_MD_D_KOS U_Img", "style": _longhuaTeacherDeskIconInfo[i].style }, _iconcontent);
  3084. $$("div", { className: "U_MD_D_KOX", "innerHTML": _longhuaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3085. }
  3086. } else if ((_type == 1 || _type == 4) && (_oid == "eaba9110-d1eb-11ee-b534-005056b86db5")) {
  3087. for (i = 0; i < _ytyTeacherDeskIconInfo.length; i++) {
  3088. if(_role === 0 && _ytyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3089. continue
  3090. }
  3091. _content = $$("div", {
  3092. className: "U_MD_D_KO",
  3093. "onmousedown": U.UF.C.closure(function (obj) {
  3094. //防止拖动图标即打开了桌面应用
  3095. U.MD.D.click(this, obj);
  3096. }, [_ytyTeacherDeskIconInfo[i]]),
  3097. "onclick": U.UF.C.closure(function (obj) {
  3098. //防止拖动图标即打开了桌面应用
  3099. U.MD.D.click(this, obj);
  3100. }, [_ytyTeacherDeskIconInfo[i]])
  3101. }, _frag); //
  3102. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3103. $$("div", { className: "U_MD_D_KOS U_Img", "style": _ytyTeacherDeskIconInfo[i].style }, _iconcontent);
  3104. $$("div", { className: "U_MD_D_KOX", "innerHTML": _ytyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3105. }
  3106. }else if ((_type == 1 || _type == 4) && (_oid == "b1095a3c-1d06-4ac8-854f-7c0d97f4ab41")) {
  3107. for (i = 0; i < _yunhaiTeacherDeskIconInfo.length; i++) {
  3108. if(_role === 0 && _yunhaiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3109. continue
  3110. }
  3111. _content = $$("div", {
  3112. className: "U_MD_D_KO",
  3113. "onmousedown": U.UF.C.closure(function (obj) {
  3114. //防止拖动图标即打开了桌面应用
  3115. U.MD.D.click(this, obj);
  3116. }, [_yunhaiTeacherDeskIconInfo[i]]),
  3117. "onclick": U.UF.C.closure(function (obj) {
  3118. //防止拖动图标即打开了桌面应用
  3119. U.MD.D.click(this, obj);
  3120. }, [_yunhaiTeacherDeskIconInfo[i]])
  3121. }, _frag); //
  3122. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3123. $$("div", { className: "U_MD_D_KOS U_Img", "style": _yunhaiTeacherDeskIconInfo[i].style }, _iconcontent);
  3124. $$("div", { className: "U_MD_D_KOX", "innerHTML": _yunhaiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3125. } //_hkStudentDeskIconInfo
  3126. } else if ((_type == 1 || _type == 4) && (_oid == "206c38d2-0cbe-11ee-91d8-005056b86db5")) {
  3127. for (i = 0; i < _hkZJLSTeacherDeskIconInfo.length; i++) {
  3128. if(_role === 0 && _hkZJLSTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3129. continue
  3130. }
  3131. _content = $$("div", {
  3132. className: "U_MD_D_KO",
  3133. "onmousedown": U.UF.C.closure(function (obj) {
  3134. //防止拖动图标即打开了桌面应用
  3135. U.MD.D.click(this, obj);
  3136. }, [_hkZJLSTeacherDeskIconInfo[i]]),
  3137. "onclick": U.UF.C.closure(function (obj) {
  3138. //防止拖动图标即打开了桌面应用
  3139. U.MD.D.click(this, obj);
  3140. }, [_hkZJLSTeacherDeskIconInfo[i]])
  3141. }, _frag); //
  3142. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3143. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkZJLSTeacherDeskIconInfo[i].style }, _iconcontent);
  3144. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkZJLSTeacherDeskIconInfo[i].Name }, _iconcontent);
  3145. }
  3146. } else if ((_type == 1 || _type == 4) && (_org == "b50cf65a-001c-11ee-91d8-005056b86db5")) {
  3147. for (i = 0; i < _hkTeacherDeskIconInfo.length; i++) {
  3148. if(_role === 0 && _hkTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3149. continue
  3150. }
  3151. _content = $$("div", {
  3152. className: "U_MD_D_KO",
  3153. "onmousedown": U.UF.C.closure(function (obj) {
  3154. //防止拖动图标即打开了桌面应用
  3155. U.MD.D.click(this, obj);
  3156. }, [_hkTeacherDeskIconInfo[i]]),
  3157. "onclick": U.UF.C.closure(function (obj) {
  3158. //防止拖动图标即打开了桌面应用
  3159. U.MD.D.click(this, obj);
  3160. }, [_hkTeacherDeskIconInfo[i]])
  3161. }, _frag); //
  3162. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3163. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkTeacherDeskIconInfo[i].style }, _iconcontent);
  3164. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkTeacherDeskIconInfo[i].Name }, _iconcontent);
  3165. }
  3166. } else if ((_type == 1 || _type == 4) && (_org == "777559d2-7239-11ee-b98c-005056b86db5")) {
  3167. for (i = 0; i < _hkaceTeacherDeskIconInfo.length; i++) {
  3168. if(_role === 0 && _hkaceTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3169. continue
  3170. }
  3171. _content = $$("div", {
  3172. className: "U_MD_D_KO",
  3173. "onmousedown": U.UF.C.closure(function (obj) {
  3174. //防止拖动图标即打开了桌面应用
  3175. U.MD.D.click(this, obj);
  3176. }, [_hkaceTeacherDeskIconInfo[i]]),
  3177. "onclick": U.UF.C.closure(function (obj) {
  3178. //防止拖动图标即打开了桌面应用
  3179. U.MD.D.click(this, obj);
  3180. }, [_hkaceTeacherDeskIconInfo[i]])
  3181. }, _frag); //
  3182. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3183. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hkaceTeacherDeskIconInfo[i].style }, _iconcontent);
  3184. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hkaceTeacherDeskIconInfo[i].Name }, _iconcontent);
  3185. }
  3186. } else if ((_type == 1 || _type == 4) && (_org == "c9a6de59-8b4f-4be1-8565-a08081f649d3")) {
  3187. for (i = 0; i < _cocobizTeacherDeskIconInfo.length; i++) {
  3188. if(_role === 0 && _cocobizTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3189. continue
  3190. }
  3191. _content = $$("div", {
  3192. className: "U_MD_D_KO",
  3193. "onmousedown": U.UF.C.closure(function (obj) {
  3194. //防止拖动图标即打开了桌面应用
  3195. U.MD.D.click(this, obj);
  3196. }, [_cocobizTeacherDeskIconInfo[i]]),
  3197. "onclick": U.UF.C.closure(function (obj) {
  3198. //防止拖动图标即打开了桌面应用
  3199. U.MD.D.click(this, obj);
  3200. }, [_cocobizTeacherDeskIconInfo[i]])
  3201. }, _frag); //
  3202. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3203. $$("div", { className: "U_MD_D_KOS U_Img", "style": _cocobizTeacherDeskIconInfo[i].style }, _iconcontent);
  3204. $$("div", { className: "U_MD_D_KOX", "innerHTML": _cocobizTeacherDeskIconInfo[i].Name }, _iconcontent);
  3205. }
  3206. } else if ((_type == 1 || _type == 4) && (_org == "7f280060-665e-4868-b68f-1eec9e1b4a07")) {
  3207. for (i = 0; i < _xxzjkyTeacherDeskIconInfo.length; i++) {
  3208. if(_role === 0 && _xxzjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3209. continue
  3210. }
  3211. _content = $$("div", {
  3212. className: "U_MD_D_KO",
  3213. "onmousedown": U.UF.C.closure(function (obj) {
  3214. //防止拖动图标即打开了桌面应用
  3215. U.MD.D.click(this, obj);
  3216. }, [_xxzjkyTeacherDeskIconInfo[i]]),
  3217. "onclick": U.UF.C.closure(function (obj) {
  3218. //防止拖动图标即打开了桌面应用
  3219. U.MD.D.click(this, obj);
  3220. }, [_xxzjkyTeacherDeskIconInfo[i]])
  3221. }, _frag); //
  3222. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3223. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xxzjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3224. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xxzjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3225. }
  3226. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 1) {
  3227. for (i = 0; i < _gdjgAdminDeskIconInfo.length; i++) {
  3228. _content = $$("div", {
  3229. className: "U_MD_D_KO",
  3230. "onmousedown": U.UF.C.closure(function (obj) {
  3231. //防止拖动图标即打开了桌面应用
  3232. U.MD.D.click(this, obj);
  3233. }, [_gdjgAdminDeskIconInfo[i]]),
  3234. "onclick": U.UF.C.closure(function (obj) {
  3235. //防止拖动图标即打开了桌面应用
  3236. U.MD.D.click(this, obj);
  3237. }, [_gdjgAdminDeskIconInfo[i]])
  3238. }, _frag); //
  3239. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3240. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgAdminDeskIconInfo[i].style }, _iconcontent);
  3241. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgAdminDeskIconInfo[i].Name }, _iconcontent);
  3242. }
  3243. } else if ((_type == 1 || _type == 4) && (_org == "e632b86c-f89d-11ed-91d8-005056b86db5") && _role == 0) {
  3244. for (i = 0; i < _gdjgTeacherDeskIconInfo.length; i++) {
  3245. if(_role === 0 && _gdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3246. continue
  3247. }
  3248. _content = $$("div", {
  3249. className: "U_MD_D_KO",
  3250. "onmousedown": U.UF.C.closure(function (obj) {
  3251. //防止拖动图标即打开了桌面应用
  3252. U.MD.D.click(this, obj);
  3253. }, [_gdjgTeacherDeskIconInfo[i]]),
  3254. "onclick": U.UF.C.closure(function (obj) {
  3255. //防止拖动图标即打开了桌面应用
  3256. U.MD.D.click(this, obj);
  3257. }, [_gdjgTeacherDeskIconInfo[i]])
  3258. }, _frag); //
  3259. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3260. $$("div", { className: "U_MD_D_KOS U_Img", "style": _gdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3261. $$("div", { className: "U_MD_D_KOX", "innerHTML": _gdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3262. }
  3263. } else if ((_type == 1 || _type == 4) && (_org == "54f09f1e-09f0-11ee-91d8-005056b86db5")) {
  3264. for (i = 0; i < _szherTeacherDeskIconInfo.length; i++) {
  3265. if(_role === 0 && _szherTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3266. continue
  3267. }
  3268. _content = $$("div", {
  3269. className: "U_MD_D_KO",
  3270. "onmousedown": U.UF.C.closure(function (obj) {
  3271. //防止拖动图标即打开了桌面应用
  3272. U.MD.D.click(this, obj);
  3273. }, [_szherTeacherDeskIconInfo[i]]),
  3274. "onclick": U.UF.C.closure(function (obj) {
  3275. //防止拖动图标即打开了桌面应用
  3276. U.MD.D.click(this, obj);
  3277. }, [_szherTeacherDeskIconInfo[i]])
  3278. }, _frag); //
  3279. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3280. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szherTeacherDeskIconInfo[i].style }, _iconcontent);
  3281. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szherTeacherDeskIconInfo[i].Name }, _iconcontent);
  3282. }
  3283. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 1) {
  3284. for (i = 0; i < _heyuannAdminDeskIconInfo.length; i++) {
  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. }, [_heyuannAdminDeskIconInfo[i]]),
  3291. "onclick": U.UF.C.closure(function (obj) {
  3292. //防止拖动图标即打开了桌面应用
  3293. U.MD.D.click(this, obj);
  3294. }, [_heyuannAdminDeskIconInfo[i]])
  3295. }, _frag); //
  3296. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3297. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuannAdminDeskIconInfo[i].style }, _iconcontent);
  3298. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuannAdminDeskIconInfo[i].Name }, _iconcontent);
  3299. }
  3300. } else if ((_type == 1 || _type == 4) && (_org == "578de748-05d2-11ee-91d8-005056b86db5") && _role == 0) {
  3301. for (i = 0; i < _heyuanTeacherDeskIconInfo.length; i++) {
  3302. if(_role === 0 && _heyuanTeacherDeskIconInfo[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. }, [_heyuanTeacherDeskIconInfo[i]]),
  3311. "onclick": U.UF.C.closure(function (obj) {
  3312. //防止拖动图标即打开了桌面应用
  3313. U.MD.D.click(this, obj);
  3314. }, [_heyuanTeacherDeskIconInfo[i]])
  3315. }, _frag); //
  3316. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3317. $$("div", { className: "U_MD_D_KOS U_Img", "style": _heyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  3318. $$("div", { className: "U_MD_D_KOX", "innerHTML": _heyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  3319. } //
  3320. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 1) {
  3321. for (i = 0; i < _dseiAdminDeskIconInfo.length; i++) {
  3322. _content = $$("div", {
  3323. className: "U_MD_D_KO",
  3324. "onmousedown": U.UF.C.closure(function (obj) {
  3325. //防止拖动图标即打开了桌面应用
  3326. U.MD.D.click(this, obj);
  3327. }, [_dseiAdminDeskIconInfo[i]]),
  3328. "onclick": U.UF.C.closure(function (obj) {
  3329. //防止拖动图标即打开了桌面应用
  3330. U.MD.D.click(this, obj);
  3331. }, [_dseiAdminDeskIconInfo[i]])
  3332. }, _frag); //
  3333. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3334. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiAdminDeskIconInfo[i].style }, _iconcontent);
  3335. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiAdminDeskIconInfo[i].Name }, _iconcontent);
  3336. }
  3337. } else if ((_type == 1 || _type == 4) && (_org == "7b016f69-0f4f-11ee-91d8-005056b86db5") && _role == 0) {
  3338. for (i = 0; i < _dseiTeacherDeskIconInfo.length; i++) {
  3339. if(_role === 0 && _dseiTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3340. continue
  3341. }
  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. }, [_dseiTeacherDeskIconInfo[i]]),
  3348. "onclick": U.UF.C.closure(function (obj) {
  3349. //防止拖动图标即打开了桌面应用
  3350. U.MD.D.click(this, obj);
  3351. }, [_dseiTeacherDeskIconInfo[i]])
  3352. }, _frag); //
  3353. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3354. $$("div", { className: "U_MD_D_KOS U_Img", "style": _dseiTeacherDeskIconInfo[i].style }, _iconcontent);
  3355. $$("div", { className: "U_MD_D_KOX", "innerHTML": _dseiTeacherDeskIconInfo[i].Name }, _iconcontent);
  3356. } //
  3357. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 1) {
  3358. for (i = 0; i < _chjyjAdminDeskIconInfo.length; i++) {
  3359. _content = $$("div", {
  3360. className: "U_MD_D_KO",
  3361. "onmousedown": U.UF.C.closure(function (obj) {
  3362. //防止拖动图标即打开了桌面应用
  3363. U.MD.D.click(this, obj);
  3364. }, [_chjyjAdminDeskIconInfo[i]]),
  3365. "onclick": U.UF.C.closure(function (obj) {
  3366. //防止拖动图标即打开了桌面应用
  3367. U.MD.D.click(this, obj);
  3368. }, [_chjyjAdminDeskIconInfo[i]])
  3369. }, _frag); //
  3370. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3371. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjAdminDeskIconInfo[i].style }, _iconcontent);
  3372. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjAdminDeskIconInfo[i].Name }, _iconcontent);
  3373. }//
  3374. } else if ((_type == 1 || _type == 4) && (_org == "2fa75e51-189a-11ee-91d8-005056b86db5") && _role == 0) {
  3375. for (i = 0; i < _chjyjTeacherDeskIconInfo.length; i++) {
  3376. if(_role === 0 && _chjyjTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3377. continue
  3378. }
  3379. _content = $$("div", {
  3380. className: "U_MD_D_KO",
  3381. "onmousedown": U.UF.C.closure(function (obj) {
  3382. //防止拖动图标即打开了桌面应用
  3383. U.MD.D.click(this, obj);
  3384. }, [_chjyjTeacherDeskIconInfo[i]]),
  3385. "onclick": U.UF.C.closure(function (obj) {
  3386. //防止拖动图标即打开了桌面应用
  3387. U.MD.D.click(this, obj);
  3388. }, [_chjyjTeacherDeskIconInfo[i]])
  3389. }, _frag); //
  3390. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3391. $$("div", { className: "U_MD_D_KOS U_Img", "style": _chjyjTeacherDeskIconInfo[i].style }, _iconcontent);
  3392. $$("div", { className: "U_MD_D_KOX", "innerHTML": _chjyjTeacherDeskIconInfo[i].Name }, _iconcontent);
  3393. }
  3394. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 1) {
  3395. for (i = 0; i < _szjkyAdminDeskIconInfo.length; i++) {
  3396. _content = $$("div", {
  3397. className: "U_MD_D_KO",
  3398. "onmousedown": U.UF.C.closure(function (obj) {
  3399. //防止拖动图标即打开了桌面应用
  3400. U.MD.D.click(this, obj);
  3401. }, [_szjkyAdminDeskIconInfo[i]]),
  3402. "onclick": U.UF.C.closure(function (obj) {
  3403. //防止拖动图标即打开了桌面应用
  3404. U.MD.D.click(this, obj);
  3405. }, [_szjkyAdminDeskIconInfo[i]])
  3406. }, _frag); //
  3407. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3408. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyAdminDeskIconInfo[i].style }, _iconcontent);
  3409. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyAdminDeskIconInfo[i].Name }, _iconcontent);
  3410. }//
  3411. } else if ((_type == 1 || _type == 4) && (_org == "1973f6c7-1561-11ee-91d8-005056b86db5") && _role == 0) {
  3412. for (i = 0; i < _szjkyTeacherDeskIconInfo.length; i++) {
  3413. if(_role === 0 && _szjkyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3414. continue
  3415. }
  3416. _content = $$("div", {
  3417. className: "U_MD_D_KO",
  3418. "onmousedown": U.UF.C.closure(function (obj) {
  3419. //防止拖动图标即打开了桌面应用
  3420. U.MD.D.click(this, obj);
  3421. }, [_szjkyTeacherDeskIconInfo[i]]),
  3422. "onclick": U.UF.C.closure(function (obj) {
  3423. //防止拖动图标即打开了桌面应用
  3424. U.MD.D.click(this, obj);
  3425. }, [_szjkyTeacherDeskIconInfo[i]])
  3426. }, _frag); //
  3427. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3428. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szjkyTeacherDeskIconInfo[i].style }, _iconcontent);
  3429. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szjkyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3430. }
  3431. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 1) {
  3432. for (i = 0; i < _x020201AdminDeskIconInfo.length; i++) {
  3433. _content = $$("div", {
  3434. className: "U_MD_D_KO",
  3435. "onmousedown": U.UF.C.closure(function (obj) {
  3436. //防止拖动图标即打开了桌面应用
  3437. U.MD.D.click(this, obj);
  3438. }, [_x020201AdminDeskIconInfo[i]]),
  3439. "onclick": U.UF.C.closure(function (obj) {
  3440. //防止拖动图标即打开了桌面应用
  3441. U.MD.D.click(this, obj);
  3442. }, [_x020201AdminDeskIconInfo[i]])
  3443. }, _frag); //
  3444. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3445. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201AdminDeskIconInfo[i].style }, _iconcontent);
  3446. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201AdminDeskIconInfo[i].Name }, _iconcontent);
  3447. }//
  3448. } else if ((_type == 1 || _type == 4) && (_oid == "369222a8-cddd-11ed-9546-005056b86db5") && _role == 0) {
  3449. for (i = 0; i < _x020201TeacherDeskIconInfo.length; i++) {
  3450. if(_role === 0 && _x020201TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3451. continue
  3452. }
  3453. _content = $$("div", {
  3454. className: "U_MD_D_KO",
  3455. "onmousedown": U.UF.C.closure(function (obj) {
  3456. //防止拖动图标即打开了桌面应用
  3457. U.MD.D.click(this, obj);
  3458. }, [_x020201TeacherDeskIconInfo[i]]),
  3459. "onclick": U.UF.C.closure(function (obj) {
  3460. //防止拖动图标即打开了桌面应用
  3461. U.MD.D.click(this, obj);
  3462. }, [_x020201TeacherDeskIconInfo[i]])
  3463. }, _frag); //
  3464. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3465. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x020201TeacherDeskIconInfo[i].style }, _iconcontent);
  3466. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x020201TeacherDeskIconInfo[i].Name }, _iconcontent);
  3467. }
  3468. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 1) {
  3469. for (i = 0; i < _SCNUETAdminDeskIconInfo.length; i++) {
  3470. _content = $$("div", {
  3471. className: "U_MD_D_KO",
  3472. "onmousedown": U.UF.C.closure(function (obj) {
  3473. //防止拖动图标即打开了桌面应用
  3474. U.MD.D.click(this, obj);
  3475. }, [_SCNUETAdminDeskIconInfo[i]]),
  3476. "onclick": U.UF.C.closure(function (obj) {
  3477. //防止拖动图标即打开了桌面应用
  3478. U.MD.D.click(this, obj);
  3479. }, [_SCNUETAdminDeskIconInfo[i]])
  3480. }, _frag); //
  3481. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3482. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETAdminDeskIconInfo[i].style }, _iconcontent);
  3483. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETAdminDeskIconInfo[i].Name }, _iconcontent);
  3484. }//
  3485. } else if ((_type == 1 || _type == 4) && (_oid == "72c16ee0-89fe-11ef-9b30-005056b86db5") && _role == 0) {
  3486. for (i = 0; i < _SCNUETTeacherDeskIconInfo.length; i++) {
  3487. if(_role === 0 && _SCNUETTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3488. continue
  3489. }
  3490. _content = $$("div", {
  3491. className: "U_MD_D_KO",
  3492. "onmousedown": U.UF.C.closure(function (obj) {
  3493. //防止拖动图标即打开了桌面应用
  3494. U.MD.D.click(this, obj);
  3495. }, [_SCNUETTeacherDeskIconInfo[i]]),
  3496. "onclick": U.UF.C.closure(function (obj) {
  3497. //防止拖动图标即打开了桌面应用
  3498. U.MD.D.click(this, obj);
  3499. }, [_SCNUETTeacherDeskIconInfo[i]])
  3500. }, _frag); //
  3501. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3502. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SCNUETTeacherDeskIconInfo[i].style }, _iconcontent);
  3503. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SCNUETTeacherDeskIconInfo[i].Name }, _iconcontent);
  3504. }
  3505. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 1) {
  3506. for (i = 0; i < _futianAdminDeskIconInfo.length; i++) {
  3507. _content = $$("div", {
  3508. className: "U_MD_D_KO",
  3509. "onmousedown": U.UF.C.closure(function (obj) {
  3510. //防止拖动图标即打开了桌面应用
  3511. U.MD.D.click(this, obj);
  3512. }, [_futianAdminDeskIconInfo[i]]),
  3513. "onclick": U.UF.C.closure(function (obj) {
  3514. //防止拖动图标即打开了桌面应用
  3515. U.MD.D.click(this, obj);
  3516. }, [_futianAdminDeskIconInfo[i]])
  3517. }, _frag); //
  3518. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3519. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianAdminDeskIconInfo[i].style }, _iconcontent);
  3520. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianAdminDeskIconInfo[i].Name }, _iconcontent);
  3521. }
  3522. } else if ((_type == 1 || _type == 4) && (_org == "ec0af97a-7c10-4259-a7eb-db9cc8174cdc") && _role == 0) {
  3523. for (i = 0; i < _futianTeacherDeskIconInfo.length; i++) {
  3524. if(_role === 0 && _futianTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3525. continue
  3526. }
  3527. _content = $$("div", {
  3528. className: "U_MD_D_KO",
  3529. "onmousedown": U.UF.C.closure(function (obj) {
  3530. //防止拖动图标即打开了桌面应用
  3531. U.MD.D.click(this, obj);
  3532. }, [_futianTeacherDeskIconInfo[i]]),
  3533. "onclick": U.UF.C.closure(function (obj) {
  3534. //防止拖动图标即打开了桌面应用
  3535. U.MD.D.click(this, obj);
  3536. }, [_futianTeacherDeskIconInfo[i]])
  3537. }, _frag); //
  3538. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3539. $$("div", { className: "U_MD_D_KOS U_Img", "style": _futianTeacherDeskIconInfo[i].style }, _iconcontent);
  3540. $$("div", { className: "U_MD_D_KOX", "innerHTML": _futianTeacherDeskIconInfo[i].Name }, _iconcontent);
  3541. }
  3542. } else if ((_type == 1 || _type == 4) && (_oid == "91305d49-01ba-11ed-8c78-005056b86db4")) {
  3543. for (i = 0; i < _MingdeTeacherDeskIcon.length; i++) {
  3544. if(_role === 0 && _MingdeTeacherDeskIcon[i].Url == 'testTeacher'){
  3545. continue
  3546. }
  3547. _content = $$("div", {
  3548. className: "U_MD_D_KO",
  3549. "onmousedown": U.UF.C.closure(function (obj) {
  3550. //防止拖动图标即打开了桌面应用
  3551. U.MD.D.click(this, obj);
  3552. }, [_MingdeTeacherDeskIcon[i]]),
  3553. "onclick": U.UF.C.closure(function (obj) {
  3554. //防止拖动图标即打开了桌面应用
  3555. U.MD.D.click(this, obj);
  3556. }, [_MingdeTeacherDeskIcon[i]])
  3557. }, _frag); //
  3558. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3559. $$("div", { className: "U_MD_D_KOS U_Img", "style": _MingdeTeacherDeskIcon[i].style }, _iconcontent);
  3560. $$("div", { className: "U_MD_D_KOX", "innerHTML": _MingdeTeacherDeskIcon[i].Name }, _iconcontent);
  3561. }
  3562. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 1) {
  3563. for (i = 0; i < _lhsAdminDesktopIconInfo.length; i++) {
  3564. _content = $$("div", {
  3565. className: "U_MD_D_KO",
  3566. "onmousedown": U.UF.C.closure(function (obj) {
  3567. //防止拖动图标即打开了桌面应用
  3568. U.MD.D.click(this, obj);
  3569. }, [_lhsAdminDesktopIconInfo[i]]),
  3570. "onclick": U.UF.C.closure(function (obj) {
  3571. //防止拖动图标即打开了桌面应用
  3572. U.MD.D.click(this, obj);
  3573. }, [_lhsAdminDesktopIconInfo[i]])
  3574. }, _frag); //
  3575. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3576. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsAdminDesktopIconInfo[i].style }, _iconcontent);
  3577. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsAdminDesktopIconInfo[i].Name }, _iconcontent);
  3578. }
  3579. } else if ((_type == 1 || _type == 4) && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5") && _role == 0) {
  3580. for (i = 0; i < _lhsteacherDesktopIconInfo.length; i++) {
  3581. if(_role === 0 && _lhsteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3582. continue
  3583. }
  3584. _content = $$("div", {
  3585. className: "U_MD_D_KO",
  3586. "onmousedown": U.UF.C.closure(function (obj) {
  3587. //防止拖动图标即打开了桌面应用
  3588. U.MD.D.click(this, obj);
  3589. }, [_lhsteacherDesktopIconInfo[i]]),
  3590. "onclick": U.UF.C.closure(function (obj) {
  3591. //防止拖动图标即打开了桌面应用
  3592. U.MD.D.click(this, obj);
  3593. }, [_lhsteacherDesktopIconInfo[i]])
  3594. }, _frag); //
  3595. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3596. $$("div", { className: "U_MD_D_KOS U_Img", "style": _lhsteacherDesktopIconInfo[i].style }, _iconcontent);
  3597. $$("div", { className: "U_MD_D_KOX", "innerHTML": _lhsteacherDesktopIconInfo[i].Name }, _iconcontent);
  3598. }
  3599. } else if ((_type == 1 || _type == 4) && (_org == "97c4ee8b-d010-4042-986d-e9d3c217264f")) {
  3600. for (i = 0; i < _zhoujiateacherDesktopIconInfo.length; i++) {
  3601. if(_role === 0 && _zhoujiateacherDesktopIconInfo[i].Url == 'testTeacher'){
  3602. continue
  3603. }
  3604. _content = $$("div", {
  3605. className: "U_MD_D_KO",
  3606. "onmousedown": U.UF.C.closure(function (obj) {
  3607. //防止拖动图标即打开了桌面应用
  3608. U.MD.D.click(this, obj);
  3609. }, [_zhoujiateacherDesktopIconInfo[i]]),
  3610. "onclick": U.UF.C.closure(function (obj) {
  3611. //防止拖动图标即打开了桌面应用
  3612. U.MD.D.click(this, obj);
  3613. }, [_zhoujiateacherDesktopIconInfo[i]])
  3614. }, _frag); //
  3615. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3616. $$("div", { className: "U_MD_D_KOS U_Img", "style": _zhoujiateacherDesktopIconInfo[i].style }, _iconcontent);
  3617. $$("div", { className: "U_MD_D_KOX", "innerHTML": _zhoujiateacherDesktopIconInfo[i].Name }, _iconcontent);
  3618. }
  3619. } else if ((_type == 1 || _type == 4) && _oid == "d9db3320-503a-11ed-8c78-005056b86db5") {
  3620. for (i = 0; i < _hanDeskIcon.length; i++) {
  3621. if(_role === 0 && _hanDeskIcon[i].Url == 'testTeacher'){
  3622. continue
  3623. }
  3624. _content = $$("div", {
  3625. className: "U_MD_D_KO",
  3626. "onmousedown": U.UF.C.closure(function (obj) {
  3627. //防止拖动图标即打开了桌面应用
  3628. U.MD.D.click(this, obj);
  3629. }, [_hanDeskIcon[i]]),
  3630. "onclick": U.UF.C.closure(function (obj) {
  3631. //防止拖动图标即打开了桌面应用
  3632. U.MD.D.click(this, obj);
  3633. }, [_hanDeskIcon[i]])
  3634. }, _frag); //
  3635. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3636. $$("div", { className: "U_MD_D_KOS U_Img", "style": _hanDeskIcon[i].style }, _iconcontent);
  3637. $$("div", { className: "U_MD_D_KOX", "innerHTML": _hanDeskIcon[i].Name }, _iconcontent);
  3638. }
  3639. } else if ((_type == 1 || _type == 4) && _org == "7ada499f-4ec7-11ed-8c78-005056b86db5") {
  3640. for (i = 0; i < _orgStemDeskIcon.length; i++) {
  3641. if(_role === 0 && _orgStemDeskIcon[i].Url == 'testTeacher'){
  3642. continue
  3643. }
  3644. _content = $$("div", {
  3645. className: "U_MD_D_KO",
  3646. "onmousedown": U.UF.C.closure(function (obj) {
  3647. //防止拖动图标即打开了桌面应用
  3648. U.MD.D.click(this, obj);
  3649. }, [_orgStemDeskIcon[i]]),
  3650. "onclick": U.UF.C.closure(function (obj) {
  3651. //防止拖动图标即打开了桌面应用
  3652. U.MD.D.click(this, obj);
  3653. }, [_orgStemDeskIcon[i]])
  3654. }, _frag); //
  3655. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3656. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgStemDeskIcon[i].style }, _iconcontent);
  3657. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgStemDeskIcon[i].Name }, _iconcontent);
  3658. }
  3659. } else if ((_type == 1 || _type == 4) && _org == "383f207d-4ced-4eeb-a15a-7b0a2f3abe7b") {
  3660. for (i = 0; i < _szulsDeskIcon.length; i++) {
  3661. if(_role === 0 && _szulsDeskIcon[i].Url == 'testTeacher'){
  3662. continue
  3663. }
  3664. _content = $$("div", {
  3665. className: "U_MD_D_KO",
  3666. "onmousedown": U.UF.C.closure(function (obj) {
  3667. //防止拖动图标即打开了桌面应用
  3668. U.MD.D.click(this, obj);
  3669. }, [_szulsDeskIcon[i]]),
  3670. "onclick": U.UF.C.closure(function (obj) {
  3671. //防止拖动图标即打开了桌面应用
  3672. U.MD.D.click(this, obj);
  3673. }, [_szulsDeskIcon[i]])
  3674. }, _frag); //
  3675. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3676. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szulsDeskIcon[i].style }, _iconcontent);
  3677. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szulsDeskIcon[i].Name }, _iconcontent);
  3678. }
  3679. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f018d") {
  3680. for (i = 0; i < _orgDesktopIconInfo.length; i++) {
  3681. if(_role === 0 && _orgDesktopIconInfo[i].Url == 'testTeacher'){
  3682. continue
  3683. }
  3684. _content = $$("div", {
  3685. className: "U_MD_D_KO",
  3686. "onmousedown": U.UF.C.closure(function (obj) {
  3687. //防止拖动图标即打开了桌面应用
  3688. U.MD.D.click(this, obj);
  3689. }, [_orgDesktopIconInfo[i]]),
  3690. "onclick": U.UF.C.closure(function (obj) {
  3691. //防止拖动图标即打开了桌面应用
  3692. U.MD.D.click(this, obj);
  3693. }, [_orgDesktopIconInfo[i]])
  3694. }, _frag); //
  3695. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3696. $$("div", { className: "U_MD_D_KOS U_Img", "style": _orgDesktopIconInfo[i].style }, _iconcontent);
  3697. $$("div", { className: "U_MD_D_KOX", "innerHTML": _orgDesktopIconInfo[i].Name }, _iconcontent);
  3698. }
  3699. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  3700. for (i = 0; i < _schoolDesktopIconInfo.length; i++) {
  3701. if(_role === 0 && _schoolDesktopIconInfo[i].Url == 'testTeacher'){
  3702. continue
  3703. }
  3704. _content = $$("div", {
  3705. className: "U_MD_D_KO",
  3706. "onmousedown": U.UF.C.closure(function (obj) {
  3707. //防止拖动图标即打开了桌面应用
  3708. U.MD.D.click(this, obj);
  3709. }, [_schoolDesktopIconInfo[i]]),
  3710. "onclick": U.UF.C.closure(function (obj) {
  3711. //防止拖动图标即打开了桌面应用
  3712. U.MD.D.click(this, obj);
  3713. }, [_schoolDesktopIconInfo[i]])
  3714. }, _frag); //
  3715. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3716. $$("div", { className: "U_MD_D_KOS U_Img", "style": _schoolDesktopIconInfo[i].style }, _iconcontent);
  3717. $$("div", { className: "U_MD_D_KOX", "innerHTML": _schoolDesktopIconInfo[i].Name }, _iconcontent);
  3718. }
  3719. } else if ((_type == 1 || _type == 4) && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3720. for (i = 0; i < _GMteacherDesktopIconInfo.length; i++) {
  3721. if(_role === 0 && _GMteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3722. continue
  3723. }
  3724. _content = $$("div", {
  3725. className: "U_MD_D_KO",
  3726. "onmousedown": U.UF.C.closure(function (obj) {
  3727. //防止拖动图标即打开了桌面应用
  3728. U.MD.D.click(this, obj);
  3729. }, [_GMteacherDesktopIconInfo[i]]),
  3730. "onclick": U.UF.C.closure(function (obj) {
  3731. //防止拖动图标即打开了桌面应用
  3732. U.MD.D.click(this, obj);
  3733. }, [_GMteacherDesktopIconInfo[i]])
  3734. }, _frag); //
  3735. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3736. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMteacherDesktopIconInfo[i].style }, _iconcontent);
  3737. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMteacherDesktopIconInfo[i].Name }, _iconcontent);
  3738. }
  3739. } else if ((_type == 1 || _type == 4) && _oid == "9f888eae-7558-11ed-8c78-005056b86db5") {
  3740. for (i = 0; i < _SONGteacherDesktopIconInfo.length; i++) {
  3741. if(_role === 0 && _SONGteacherDesktopIconInfo[i].Url == 'testTeacher'){
  3742. continue
  3743. }
  3744. _content = $$("div", {
  3745. className: "U_MD_D_KO",
  3746. "onmousedown": U.UF.C.closure(function (obj) {
  3747. //防止拖动图标即打开了桌面应用
  3748. U.MD.D.click(this, obj);
  3749. }, [_SONGteacherDesktopIconInfo[i]]),
  3750. "onclick": U.UF.C.closure(function (obj) {
  3751. //防止拖动图标即打开了桌面应用
  3752. U.MD.D.click(this, obj);
  3753. }, [_SONGteacherDesktopIconInfo[i]])
  3754. }, _frag); //
  3755. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3756. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SONGteacherDesktopIconInfo[i].style }, _iconcontent);
  3757. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SONGteacherDesktopIconInfo[i].Name }, _iconcontent);
  3758. }
  3759. } else if (_type == 2 && _org == "eb2af5e9-ac3d-46b6-9fe3-3c1c364f0217") {
  3760. for (i = 0; i < _GMstudentDesktopIconInfo.length; i++) {
  3761. _content = $$("div", {
  3762. className: "U_MD_D_KO",
  3763. "onmousedown": U.UF.C.closure(function (obj) {
  3764. //防止拖动图标即打开了桌面应用
  3765. U.MD.D.click(this, obj);
  3766. }, [_GMstudentDesktopIconInfo[i]]),
  3767. "onclick": U.UF.C.closure(function (obj) {
  3768. //防止拖动图标即打开了桌面应用
  3769. U.MD.D.click(this, obj);
  3770. }, [_GMstudentDesktopIconInfo[i]])
  3771. }, _frag); //
  3772. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3773. $$("div", { className: "U_MD_D_KOS U_Img", "style": _GMstudentDesktopIconInfo[i].style }, _iconcontent);
  3774. $$("div", { className: "U_MD_D_KOX", "innerHTML": _GMstudentDesktopIconInfo[i].Name }, _iconcontent);
  3775. }
  3776. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role == 0) {
  3777. for (i = 0; i < _tcTeacherDeskIconInfo.length; i++) {
  3778. if(_role === 0 && _tcTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3779. continue
  3780. }
  3781. _content = $$("div", {
  3782. className: "U_MD_D_KO",
  3783. "onmousedown": U.UF.C.closure(function (obj) {
  3784. //防止拖动图标即打开了桌面应用
  3785. U.MD.D.click(this, obj);
  3786. }, [_tcTeacherDeskIconInfo[i]]),
  3787. "onclick": U.UF.C.closure(function (obj) {
  3788. //防止拖动图标即打开了桌面应用
  3789. U.MD.D.click(this, obj);
  3790. }, [_tcTeacherDeskIconInfo[i]])
  3791. }, _frag); //
  3792. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3793. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcTeacherDeskIconInfo[i].style }, _iconcontent);
  3794. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcTeacherDeskIconInfo[i].Name }, _iconcontent);
  3795. }
  3796. } else if ((_type == 1 || _type == 4) && _org == "150e3120-9195-11ed-b13d-005056b86db5" && _role === 1) {
  3797. for (i = 0; i < _tcOrganizerDeskIconInfo.length; i++) {
  3798. if(_role === 0 && _tcOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3799. continue
  3800. }
  3801. _content = $$("div", {
  3802. className: "U_MD_D_KO",
  3803. "onmousedown": U.UF.C.closure(function (obj) {
  3804. //防止拖动图标即打开了桌面应用
  3805. U.MD.D.click(this, obj);
  3806. }, [_tcOrganizerDeskIconInfo[i]]),
  3807. "onclick": U.UF.C.closure(function (obj) {
  3808. //防止拖动图标即打开了桌面应用
  3809. U.MD.D.click(this, obj);
  3810. }, [_tcOrganizerDeskIconInfo[i]])
  3811. }, _frag); //
  3812. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3813. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tcOrganizerDeskIconInfo[i].style }, _iconcontent);
  3814. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tcOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3815. }
  3816. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role == 0) {
  3817. for (i = 0; i < _szscTeacherDeskIconInfo.length; i++) {
  3818. if(_role === 0 && _szscTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3819. continue
  3820. }
  3821. _content = $$("div", {
  3822. className: "U_MD_D_KO",
  3823. "onmousedown": U.UF.C.closure(function (obj) {
  3824. //防止拖动图标即打开了桌面应用
  3825. U.MD.D.click(this, obj);
  3826. }, [_szscTeacherDeskIconInfo[i]]),
  3827. "onclick": U.UF.C.closure(function (obj) {
  3828. //防止拖动图标即打开了桌面应用
  3829. U.MD.D.click(this, obj);
  3830. }, [_szscTeacherDeskIconInfo[i]])
  3831. }, _frag); //
  3832. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3833. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscTeacherDeskIconInfo[i].style }, _iconcontent);
  3834. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscTeacherDeskIconInfo[i].Name }, _iconcontent);
  3835. }
  3836. } else if ((_type == 1 || _type == 4) && _org == "ee40e8e3-e36c-4872-8105-cf395481012s" && _role === 1) {
  3837. for (i = 0; i < _szscOrganizerDeskIconInfo.length; i++) {
  3838. if(_role === 0 && _szscOrganizerDeskIconInfo[i].Url == 'testTeacher'){
  3839. continue
  3840. }
  3841. _content = $$("div", {
  3842. className: "U_MD_D_KO",
  3843. "onmousedown": U.UF.C.closure(function (obj) {
  3844. //防止拖动图标即打开了桌面应用
  3845. U.MD.D.click(this, obj);
  3846. }, [_szscOrganizerDeskIconInfo[i]]),
  3847. "onclick": U.UF.C.closure(function (obj) {
  3848. //防止拖动图标即打开了桌面应用
  3849. U.MD.D.click(this, obj);
  3850. }, [_szscOrganizerDeskIconInfo[i]])
  3851. }, _frag); //
  3852. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3853. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szscOrganizerDeskIconInfo[i].style }, _iconcontent);
  3854. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szscOrganizerDeskIconInfo[i].Name }, _iconcontent);
  3855. }
  3856. } else if ((_type == 1 || _type == 4) && _oid == "8a352da2-56e1-11ef-b873-005056b86db5") {
  3857. for (i = 0; i < _nsfxTeacherDeskIconInfo.length; i++) {
  3858. if(_role === 0 && _nsfxTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3859. continue
  3860. }
  3861. _content = $$("div", {
  3862. className: "U_MD_D_KO",
  3863. "onmousedown": U.UF.C.closure(function (obj) {
  3864. //防止拖动图标即打开了桌面应用
  3865. U.MD.D.click(this, obj);
  3866. }, [_nsfxTeacherDeskIconInfo[i]]),
  3867. "onclick": U.UF.C.closure(function (obj) {
  3868. //防止拖动图标即打开了桌面应用
  3869. U.MD.D.click(this, obj);
  3870. }, [_nsfxTeacherDeskIconInfo[i]])
  3871. }, _frag); //
  3872. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3873. $$("div", { className: "U_MD_D_KOS U_Img", "style": _nsfxTeacherDeskIconInfo[i].style }, _iconcontent);
  3874. $$("div", { className: "U_MD_D_KOX", "innerHTML": _nsfxTeacherDeskIconInfo[i].Name }, _iconcontent);
  3875. }
  3876. } else if ((_type == 1 || _type == 4) && _org == "f3b243b2-75e2-4b00-8f66-7644946a2a25") {
  3877. for (i = 0; i < _stiaTeacherDeskIconInfo.length; i++) {
  3878. if(_role === 0 && _stiaTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3879. continue
  3880. }
  3881. _content = $$("div", {
  3882. className: "U_MD_D_KO",
  3883. "onmousedown": U.UF.C.closure(function (obj) {
  3884. //防止拖动图标即打开了桌面应用
  3885. U.MD.D.click(this, obj);
  3886. }, [_stiaTeacherDeskIconInfo[i]]),
  3887. "onclick": U.UF.C.closure(function (obj) {
  3888. //防止拖动图标即打开了桌面应用
  3889. U.MD.D.click(this, obj);
  3890. }, [_stiaTeacherDeskIconInfo[i]])
  3891. }, _frag); //
  3892. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3893. $$("div", { className: "U_MD_D_KOS U_Img", "style": _stiaTeacherDeskIconInfo[i].style }, _iconcontent);
  3894. $$("div", { className: "U_MD_D_KOX", "innerHTML": _stiaTeacherDeskIconInfo[i].Name }, _iconcontent);
  3895. }
  3896. } else if ((_type == 1 || _type == 4) && _org == "16ace517-b5c7-4168-a9bb-a9e0035df840") {
  3897. for (i = 0; i < _szdjgTeacherDeskIconInfo.length; i++) {
  3898. if(_role === 0 && _szdjgTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3899. continue
  3900. }
  3901. _content = $$("div", {
  3902. className: "U_MD_D_KO",
  3903. "onmousedown": U.UF.C.closure(function (obj) {
  3904. //防止拖动图标即打开了桌面应用
  3905. U.MD.D.click(this, obj);
  3906. }, [_szdjgTeacherDeskIconInfo[i]]),
  3907. "onclick": U.UF.C.closure(function (obj) {
  3908. //防止拖动图标即打开了桌面应用
  3909. U.MD.D.click(this, obj);
  3910. }, [_szdjgTeacherDeskIconInfo[i]])
  3911. }, _frag); //
  3912. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3913. $$("div", { className: "U_MD_D_KOS U_Img", "style": _szdjgTeacherDeskIconInfo[i].style }, _iconcontent);
  3914. $$("div", { className: "U_MD_D_KOX", "innerHTML": _szdjgTeacherDeskIconInfo[i].Name }, _iconcontent);
  3915. }
  3916. } else if ((_type == 1 || _type == 4) && _org == "2fe1a080-4425-4620-b7a0-be2f3750ffd4") {
  3917. for (i = 0; i < _x010607TeacherDeskIconInfo.length; i++) {
  3918. if(_role === 0 && _x010607TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3919. continue
  3920. }
  3921. _content = $$("div", {
  3922. className: "U_MD_D_KO",
  3923. "onmousedown": U.UF.C.closure(function (obj) {
  3924. //防止拖动图标即打开了桌面应用
  3925. U.MD.D.click(this, obj);
  3926. }, [_x010607TeacherDeskIconInfo[i]]),
  3927. "onclick": U.UF.C.closure(function (obj) {
  3928. //防止拖动图标即打开了桌面应用
  3929. U.MD.D.click(this, obj);
  3930. }, [_x010607TeacherDeskIconInfo[i]])
  3931. }, _frag); //
  3932. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3933. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010607TeacherDeskIconInfo[i].style }, _iconcontent);
  3934. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010607TeacherDeskIconInfo[i].Name }, _iconcontent);
  3935. }
  3936. } else if ((_type == 1 || _type == 4) && _org == "a5efd078-20f6-4185-bef9-6d1c688bee70") {
  3937. for (i = 0; i < _xhlyTeacherDeskIconInfo.length; i++) {
  3938. if(_role === 0 && _xhlyTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3939. continue
  3940. }
  3941. _content = $$("div", {
  3942. className: "U_MD_D_KO",
  3943. "onmousedown": U.UF.C.closure(function (obj) {
  3944. //防止拖动图标即打开了桌面应用
  3945. U.MD.D.click(this, obj);
  3946. }, [_xhlyTeacherDeskIconInfo[i]]),
  3947. "onclick": U.UF.C.closure(function (obj) {
  3948. //防止拖动图标即打开了桌面应用
  3949. U.MD.D.click(this, obj);
  3950. }, [_xhlyTeacherDeskIconInfo[i]])
  3951. }, _frag); //
  3952. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3953. $$("div", { className: "U_MD_D_KOS U_Img", "style": _xhlyTeacherDeskIconInfo[i].style }, _iconcontent);
  3954. $$("div", { className: "U_MD_D_KOX", "innerHTML": _xhlyTeacherDeskIconInfo[i].Name }, _iconcontent);
  3955. }
  3956. } else if ((_type == 1 || _type == 4) && _org == "23bbe712-e35a-4888-9b4e-8d9e5a4fa2f6") {
  3957. for (i = 0; i < _CUHKEDUTeacherDeskIconInfo.length; i++) {
  3958. if(_role === 0 && _CUHKEDUTeacherDeskIconInfo[i].Url == 'testTeacher'){
  3959. continue
  3960. }
  3961. _content = $$("div", {
  3962. className: "U_MD_D_KO",
  3963. "onmousedown": U.UF.C.closure(function (obj) {
  3964. //防止拖动图标即打开了桌面应用
  3965. U.MD.D.click(this, obj);
  3966. }, [_CUHKEDUTeacherDeskIconInfo[i]]),
  3967. "onclick": U.UF.C.closure(function (obj) {
  3968. //防止拖动图标即打开了桌面应用
  3969. U.MD.D.click(this, obj);
  3970. }, [_CUHKEDUTeacherDeskIconInfo[i]])
  3971. }, _frag); //
  3972. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3973. $$("div", { className: "U_MD_D_KOS U_Img", "style": _CUHKEDUTeacherDeskIconInfo[i].style }, _iconcontent);
  3974. $$("div", { className: "U_MD_D_KOX", "innerHTML": _CUHKEDUTeacherDeskIconInfo[i].Name }, _iconcontent);
  3975. }
  3976. } else if ((_type == 1 || _type == 4) && _oid == "876030db-7a49-11ef-9b30-005056b86db5") {
  3977. for (i = 0; i < _x010503TeacherDeskIconInfo.length; i++) {
  3978. if(_role === 0 && _x010503TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3979. continue
  3980. }
  3981. _content = $$("div", {
  3982. className: "U_MD_D_KO",
  3983. "onmousedown": U.UF.C.closure(function (obj) {
  3984. //防止拖动图标即打开了桌面应用
  3985. U.MD.D.click(this, obj);
  3986. }, [_x010503TeacherDeskIconInfo[i]]),
  3987. "onclick": U.UF.C.closure(function (obj) {
  3988. //防止拖动图标即打开了桌面应用
  3989. U.MD.D.click(this, obj);
  3990. }, [_x010503TeacherDeskIconInfo[i]])
  3991. }, _frag); //
  3992. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  3993. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010503TeacherDeskIconInfo[i].style }, _iconcontent);
  3994. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010503TeacherDeskIconInfo[i].Name }, _iconcontent);
  3995. }
  3996. } else if ((_type == 1 || _type == 4) && _oid == "6c16df93-8849-11ef-9b30-005056b86db5") {
  3997. for (i = 0; i < _x010504TeacherDeskIconInfo.length; i++) {
  3998. if(_role === 0 && _x010504TeacherDeskIconInfo[i].Url == 'testTeacher'){
  3999. continue
  4000. }
  4001. _content = $$("div", {
  4002. className: "U_MD_D_KO",
  4003. "onmousedown": U.UF.C.closure(function (obj) {
  4004. //防止拖动图标即打开了桌面应用
  4005. U.MD.D.click(this, obj);
  4006. }, [_x010504TeacherDeskIconInfo[i]]),
  4007. "onclick": U.UF.C.closure(function (obj) {
  4008. //防止拖动图标即打开了桌面应用
  4009. U.MD.D.click(this, obj);
  4010. }, [_x010504TeacherDeskIconInfo[i]])
  4011. }, _frag); //
  4012. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4013. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010504TeacherDeskIconInfo[i].style }, _iconcontent);
  4014. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010504TeacherDeskIconInfo[i].Name }, _iconcontent);
  4015. }
  4016. } else if ((_type == 1 || _type == 4) && _oid == "b97fc213-86a9-11ef-9b30-005056b86db5") {
  4017. for (i = 0; i < _x010204TeacherDeskIconInfo.length; i++) {
  4018. if(_role === 0 && _x010204TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4019. continue
  4020. }
  4021. _content = $$("div", {
  4022. className: "U_MD_D_KO",
  4023. "onmousedown": U.UF.C.closure(function (obj) {
  4024. //防止拖动图标即打开了桌面应用
  4025. U.MD.D.click(this, obj);
  4026. }, [_x010204TeacherDeskIconInfo[i]]),
  4027. "onclick": U.UF.C.closure(function (obj) {
  4028. //防止拖动图标即打开了桌面应用
  4029. U.MD.D.click(this, obj);
  4030. }, [_x010204TeacherDeskIconInfo[i]])
  4031. }, _frag); //
  4032. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4033. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010204TeacherDeskIconInfo[i].style }, _iconcontent);
  4034. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010204TeacherDeskIconInfo[i].Name }, _iconcontent);
  4035. }
  4036. } else if ((_type == 1 || _type == 4) && _oid == "c636f63e-86f4-11ef-9b30-005056b86db5") {
  4037. for (i = 0; i < _trailTeacherDeskIconInfo.length; i++) {
  4038. if(_role === 0 && _trailTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4039. continue
  4040. }
  4041. _content = $$("div", {
  4042. className: "U_MD_D_KO",
  4043. "onmousedown": U.UF.C.closure(function (obj) {
  4044. //防止拖动图标即打开了桌面应用
  4045. U.MD.D.click(this, obj);
  4046. }, [_trailTeacherDeskIconInfo[i]]),
  4047. "onclick": U.UF.C.closure(function (obj) {
  4048. //防止拖动图标即打开了桌面应用
  4049. U.MD.D.click(this, obj);
  4050. }, [_trailTeacherDeskIconInfo[i]])
  4051. }, _frag); //
  4052. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4053. $$("div", { className: "U_MD_D_KOS U_Img", "style": _trailTeacherDeskIconInfo[i].style }, _iconcontent);
  4054. $$("div", { className: "U_MD_D_KOX", "innerHTML": _trailTeacherDeskIconInfo[i].Name }, _iconcontent);
  4055. }
  4056. } else if ((_type == 1 || _type == 4) && _org == "ec84034b-8ea4-4d27-9cba-1adcb4720bb3") {
  4057. for (i = 0; i < _SPROUTLabTeacherDeskIconInfo.length; i++) {
  4058. if(_role === 0 && _SPROUTLabTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4059. continue
  4060. }
  4061. _content = $$("div", {
  4062. className: "U_MD_D_KO",
  4063. "onmousedown": U.UF.C.closure(function (obj) {
  4064. //防止拖动图标即打开了桌面应用
  4065. U.MD.D.click(this, obj);
  4066. }, [_SPROUTLabTeacherDeskIconInfo[i]]),
  4067. "onclick": U.UF.C.closure(function (obj) {
  4068. //防止拖动图标即打开了桌面应用
  4069. U.MD.D.click(this, obj);
  4070. }, [_SPROUTLabTeacherDeskIconInfo[i]])
  4071. }, _frag); //
  4072. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4073. $$("div", { className: "U_MD_D_KOS U_Img", "style": _SPROUTLabTeacherDeskIconInfo[i].style }, _iconcontent);
  4074. $$("div", { className: "U_MD_D_KOX", "innerHTML": _SPROUTLabTeacherDeskIconInfo[i].Name }, _iconcontent);
  4075. }
  4076. } else if ((_type == 1 || _type == 4) && _oid == "9b46a3c9-7657-11ef-9b30-005056b86db5") {
  4077. for (i = 0; i < _x010608TeacherDeskIconInfo.length; i++) {
  4078. if(_role === 0 && _x010608TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4079. continue
  4080. }
  4081. _content = $$("div", {
  4082. className: "U_MD_D_KO",
  4083. "onmousedown": U.UF.C.closure(function (obj) {
  4084. //防止拖动图标即打开了桌面应用
  4085. U.MD.D.click(this, obj);
  4086. }, [_x010608TeacherDeskIconInfo[i]]),
  4087. "onclick": U.UF.C.closure(function (obj) {
  4088. //防止拖动图标即打开了桌面应用
  4089. U.MD.D.click(this, obj);
  4090. }, [_x010608TeacherDeskIconInfo[i]])
  4091. }, _frag); //
  4092. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4093. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010608TeacherDeskIconInfo[i].style }, _iconcontent);
  4094. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010608TeacherDeskIconInfo[i].Name }, _iconcontent);
  4095. }
  4096. } else if ((_type == 1 || _type == 4) && _oid == "3fc7840d-a1c4-11ef-9b30-005056b86db5") {
  4097. for (i = 0; i < _x010611TeacherDeskIconInfo.length; i++) {
  4098. if(_role === 0 && _x010611TeacherDeskIconInfo[i].Url == 'testTeacher'){
  4099. continue
  4100. }
  4101. _content = $$("div", {
  4102. className: "U_MD_D_KO",
  4103. "onmousedown": U.UF.C.closure(function (obj) {
  4104. //防止拖动图标即打开了桌面应用
  4105. U.MD.D.click(this, obj);
  4106. }, [_x010611TeacherDeskIconInfo[i]]),
  4107. "onclick": U.UF.C.closure(function (obj) {
  4108. //防止拖动图标即打开了桌面应用
  4109. U.MD.D.click(this, obj);
  4110. }, [_x010611TeacherDeskIconInfo[i]])
  4111. }, _frag); //
  4112. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4113. $$("div", { className: "U_MD_D_KOS U_Img", "style": _x010611TeacherDeskIconInfo[i].style }, _iconcontent);
  4114. $$("div", { className: "U_MD_D_KOX", "innerHTML": _x010611TeacherDeskIconInfo[i].Name }, _iconcontent);
  4115. }
  4116. } else if ((_type == 1 || _type == 4) && _oid == "e5cdf6b8-abdc-11ef-b887-005056b86db5") {
  4117. for (i = 0; i < _tianyuanTeacherDeskIconInfo.length; i++) {
  4118. if(_role === 0 && _tianyuanTeacherDeskIconInfo[i].Url == 'testTeacher'){
  4119. continue
  4120. }
  4121. _content = $$("div", {
  4122. className: "U_MD_D_KO",
  4123. "onmousedown": U.UF.C.closure(function (obj) {
  4124. //防止拖动图标即打开了桌面应用
  4125. U.MD.D.click(this, obj);
  4126. }, [_tianyuanTeacherDeskIconInfo[i]]),
  4127. "onclick": U.UF.C.closure(function (obj) {
  4128. //防止拖动图标即打开了桌面应用
  4129. U.MD.D.click(this, obj);
  4130. }, [_tianyuanTeacherDeskIconInfo[i]])
  4131. }, _frag); //
  4132. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4133. $$("div", { className: "U_MD_D_KOS U_Img", "style": _tianyuanTeacherDeskIconInfo[i].style }, _iconcontent);
  4134. $$("div", { className: "U_MD_D_KOX", "innerHTML": _tianyuanTeacherDeskIconInfo[i].Name }, _iconcontent);
  4135. }
  4136. } else {
  4137. for (i = 0; i < _teacherDesktopIconInfo.length; i++) {
  4138. if(_role === 0 && _teacherDesktopIconInfo[i].Url == 'testTeacher' && _oid != '45facc0a-1211-11ec-80ad-005056b86db5'){
  4139. continue
  4140. }
  4141. _content = $$("div", {
  4142. className: "U_MD_D_KO",
  4143. "onmousedown": U.UF.C.closure(function (obj) {
  4144. //防止拖动图标即打开了桌面应用
  4145. U.MD.D.click(this, obj);
  4146. }, [_teacherDesktopIconInfo[i]]),
  4147. "onclick": U.UF.C.closure(function (obj) {
  4148. //防止拖动图标即打开了桌面应用
  4149. U.MD.D.click(this, obj);
  4150. }, [_teacherDesktopIconInfo[i]])
  4151. }, _frag); //
  4152. _iconcontent = $$("div", { className: "U_MD_D_KOA" }, _content);
  4153. $$("div", { className: "U_MD_D_KOS U_Img", "style": _teacherDesktopIconInfo[i].style }, _iconcontent);
  4154. $$("div", { className: "U_MD_D_KOX", "innerHTML": _teacherDesktopIconInfo[i].Name }, _iconcontent);
  4155. }
  4156. }
  4157. } else {
  4158. for (i = 0; i < _easyDesktopIconInfo.length; i++) {
  4159. _content = $$("div", {
  4160. className: "U_MD_D_KO",
  4161. style: { 'width': '124px', 'height': '145px' },
  4162. "onmousedown": U.UF.C.closure(function (obj) {
  4163. //防止拖动图标即打开了桌面应用
  4164. U.MD.D.click(this, obj);
  4165. }, [_easyDesktopIconInfo[i]]),
  4166. "onclick": U.UF.C.closure(function (obj) {
  4167. //防止拖动图标即打开了桌面应用
  4168. U.MD.D.click(this, obj);
  4169. }, [_easyDesktopIconInfo[i]])
  4170. }, _frag); //
  4171. _iconcontent = $$("div", { className: "U_MD_D_KOA", style: { width: '114px' } }, _content);
  4172. $$("div", { className: "U_MD_D_KOS U_Img", "style": _easyDesktopIconInfo[i].style }, _iconcontent);
  4173. $$("div", { className: "U_MD_D_KOX", "innerHTML": _easyDesktopIconInfo[i].Name, "style": { 'fontSize': '18px', width: '114px', height: '18px' } }, _iconcontent);
  4174. }
  4175. }
  4176. if (type == 1) {
  4177. //加载好后给图标定位
  4178. U.MD.D.iconPostion($(_frag).Child());
  4179. } else {
  4180. //加载好后给图标定位
  4181. U.MD.D.iconPostion2($(_frag).Child());
  4182. }
  4183. //把图标加载到页面
  4184. el.appendChild(_frag);
  4185. }
  4186. /**
  4187. * 显示任务栏
  4188. *
  4189. * @param {element} 桌面元素
  4190. */
  4191. U.MD.D.I.displayTaskbar = function (el) {
  4192. //判断是否需要形式任务栏,由于用了mouseover事件会冒泡响应多次,这里做了过滤
  4193. if (!U.UF.EV.stopBubbleMouseOutOrOver(el) && U.selectEl(el).css("bottom") != "0px") {
  4194. //任务栏位置变化
  4195. U.selectEl(el).css({ "bottom": "0px" });
  4196. //桌面位置变话
  4197. // U.selectEl("#U_MD_D_K").css({ "left": "70px" });
  4198. }
  4199. }
  4200. //#region 桌面图标拖动逻辑
  4201. /**
  4202. * 桌面排列图标
  4203. *
  4204. * @param {element} 桌面元素
  4205. * @param {object} 上下相距的距离
  4206. * @param {object} 左右相距的距离
  4207. * @return {object} 命名空间
  4208. */
  4209. U.MD.D.iconPostion = function (childs, top, left) {
  4210. var i; //用于循环处理
  4211. top = top || 15; //如果没有设置元素的间距处理默认上间距为15
  4212. left = left || 20; //如果没有设置元素的间距处理默认左间距为15
  4213. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4214. for (i = 0; i < childs.length; i++) {
  4215. //如果竖排top超过了范围处理
  4216. if (top + 95 > US.height - 10) {
  4217. //left超过了页面范围处理,则向上重叠打印处理
  4218. if ((left + 180) > US.width) {
  4219. top -= 110;
  4220. left -= 90;
  4221. }
  4222. //没有超过范围,那么left+90添加到下一个竖排打印
  4223. else {
  4224. left += 90;
  4225. top = 15;
  4226. };
  4227. }
  4228. //给图标的位置赋值
  4229. U.selectEl(childs[i]).css({ top: top + "px", left: left + "px" });
  4230. if (i < childs.length - 1) {
  4231. //页面图标每次向下加95
  4232. top += 95;
  4233. }
  4234. }
  4235. //返回最后调用的图标的位置
  4236. return [top, left];
  4237. }
  4238. /**
  4239. * 桌面排列图标
  4240. *
  4241. * @param {element} 桌面元素
  4242. * @param {object} 上下相距的距离
  4243. * @param {object} 左右相距的距离
  4244. * @return {object} 命名空间
  4245. */
  4246. U.MD.D.iconPostion2 = function (childs, top, left) {
  4247. var i, ol = (US.width - (Math.floor(US.width / 150) * 150)) / 2; //用于循环处理
  4248. top = top || 70; //如果没有设置元素的间距处理默认上间距为15
  4249. left = (US.width - (Math.min(Math.floor(US.width / 150), childs.length) * 150)) / 2; //left || 20; //如果没有设置元素的间距处理默认左间距为15
  4250. //循环所有的图标,设置每个图标的间距,打印顺序是竖排打印的方式
  4251. for (i = 0; i < childs.length; i++) {
  4252. //如果竖排top超过了范围处理
  4253. if (left + 150 > US.width - 10) {
  4254. //left超过了页面范围处理,则向上重叠打印处理
  4255. if ((top + 180) > US.Height) {
  4256. top -= 150;
  4257. left -= 150;
  4258. }
  4259. //没有超过范围,那么left+90添加到下一个竖排打印
  4260. else {
  4261. top += 150;
  4262. left = ol;
  4263. };
  4264. }
  4265. //给图标的位置赋值
  4266. U.selectEl(childs[i]).css({ bottom: top + "px", left: left + "px", top: 'unset' });
  4267. if (i < childs.length - 1) {
  4268. //页面图标每次向下加95
  4269. left += 150;
  4270. }
  4271. }
  4272. //返回最后调用的图标的位置
  4273. return [top, left];
  4274. }
  4275. /**
  4276. * 桌面点击事件逻辑
  4277. *
  4278. * @param {element} 桌面元素
  4279. * @param {object} 上下相距的距离
  4280. * @param {object} 左右相距的距离
  4281. * @return {object} 命名空间
  4282. */
  4283. U.MD.D.click = function (el, obj) {
  4284. var _buttonnumber = event.button; //点击的按钮的事件值
  4285. var _userinfo = US.userInfo;
  4286. U.UF.EV.stopBubble(); //阻止向上冒泡
  4287. //onmousedown 包含了左键和右键 这里大于2是为了兼容 所有浏览器的右键处理
  4288. if (_buttonnumber < 2) {
  4289. //如果是click事件的处理
  4290. if (event.type == "click") {
  4291. //如果元素在mousemove事件中没有移动则出发click事件
  4292. if (!U.MD.D.I.IsDrag) {
  4293. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4294. U.alert("请先登录您的账号!");
  4295. setTimeout(() => {
  4296. U.MD.U.L.login();
  4297. }, 2000);
  4298. } else {
  4299. //打开应用处理
  4300. U.MD.D.I.openApplication(obj.Url, { "userid": US.userInfo.userid, "directoryid": US.FTPFOLDERID });
  4301. }
  4302. }
  4303. }
  4304. //如果是mouse事件的处理
  4305. else {
  4306. if (US.Config.type == '1') {
  4307. //拖动处理,添加拖动和拖动结束事件
  4308. U.UF.F.drag(el, U.MD.D.iconMove, U.MD.D.iconUp);
  4309. }
  4310. }
  4311. U.MD.D.I.IsDrag = false;
  4312. }
  4313. }
  4314. /**
  4315. * 拖动的处理
  4316. *
  4317. */
  4318. U.MD.D.iconMove = function () {
  4319. //如果当前位置点击初始化的位置出现了变化,则设置是否拖动的属性 U.MD.D.I.IsDrag为true
  4320. U.MD.D.I.IsDrag = true;
  4321. }
  4322. /**
  4323. * 拖动结束后,这里是定位处理,以网状的形式定位
  4324. *
  4325. * @param {element} 拖动的元素
  4326. * @return {object} 命名空间
  4327. */
  4328. U.MD.D.iconUp = function (el) {
  4329. var _top = 15,
  4330. _left = 20,
  4331. _margin,
  4332. _childs = U.selectEl("#U_MD_D_K").Child(), //桌面所有的图标
  4333. _positioninfo = U.UF.EL.getElementInfo(el); //获取拖动结束的元素的位置
  4334. if (_positioninfo["OT"] > 15) {
  4335. //网状的形式定位,如果差超过了55,那么向下定位,否则向上定位
  4336. _margin = ((_positioninfo["OT"] - 15) % 95 > 55 && _positioninfo["OT"] + 95 < US.height) ? 1 : 0;
  4337. _top = (Math.floor((_positioninfo["OT"] - 15) / 95) + _margin) * 95 + 15;
  4338. }
  4339. if (_positioninfo["OL"] > 20) {
  4340. //网状的形式定位,如果差超过了90,那么向右定位,否则向左定位
  4341. _margin = ((_positioninfo["OL"] - 20) % 90 > 45 && _positioninfo["OL"] + 90 < US.width) ? 1 : 0;
  4342. _left = (Math.floor((_positioninfo["OL"] - 20) / 90) + _margin) * 90 + 20
  4343. }
  4344. //while循环判断么一个重叠的元素
  4345. do {
  4346. _positioninfo = U.MD.D.iconPostion([el], _top, _left); //给重叠的元素向下定位
  4347. _top = _positioninfo[0] + 95; //得到定位后的top
  4348. _left = _positioninfo[1]; //得到定位后的left
  4349. } while (el = U.MD.D.isOverlap(el, _childs, _positioninfo))
  4350. }
  4351. /**
  4352. * 判断拖动后图标是否重叠
  4353. *
  4354. * @param {element} 拖动的元素
  4355. * @param {element} 桌面所有的元素
  4356. * @param {array} 拖动元素的位置
  4357. ----------[0] 上 top
  4358. ----------[1] 左 left
  4359. * @return {object} 命名空间
  4360. */
  4361. U.MD.D.isOverlap = function (el, childs, postionarray) {
  4362. //循环所有的图标
  4363. for (var i = 0; i < childs.length; i++) {
  4364. //判断有没有和该图标诶子重叠的元素
  4365. if (el != childs[i] && (childs[i].offsetTop == postionarray[0] && childs[i].offsetLeft == postionarray[1])) {
  4366. return childs[i]; //如果有返回
  4367. }
  4368. }
  4369. }
  4370. //#endregion
  4371. //#endregion
  4372. //#region 桌面应用
  4373. /**
  4374. * 打开应用
  4375. *
  4376. * @param {string} 类型
  4377. -----------------Disk 网盘系统
  4378. -----------------PDisk 学习系统网盘
  4379. -----------------Poto 图片
  4380. -----------------Video 视频
  4381. -----------------Music 音乐
  4382. -----------------Word word
  4383. -----------------Excel excel
  4384. -----------------Txt 记事本
  4385. -----------------PB 学习系统
  4386. -----------------Blog 朋友圈系统
  4387. -----------------FTP ftp系统
  4388. -----------------Group 好友群
  4389. -----------------SY 首页系统
  4390. -----------------Set 个人设置
  4391. -----------------XSet 系统设置
  4392. -----------------App 我们所有的app
  4393. -----------------BC c.1473.cn 平台
  4394. -----------------CWeb d.1473.cn 变成平台
  4395. -----------------其他的外联系统 我们统一用iframe打开
  4396. * @param {array} 类型
  4397. 如果第一个参数为"disk",则第二个参数为object,里面包含了用户id和目录id{userid:"",directoryid:""}
  4398. 如果第一个参数为"word"或者"excel","txt",则第二个参数为文件信息fileinfo。
  4399. 如果第一个参数为"blog"或者"PDisk"。建议删除。
  4400. 如果第一个参数为其他,则无第二个参数
  4401. * @returns {array}
  4402. */
  4403. window.addEventListener('message', function (e) { // 监听 message 事件
  4404. // alert(e.data.type);
  4405. if (e.data.screenType && e.data.screenType == "2") { //课程管理传入
  4406. U.MD.D.I.openInApplication("studyDetail", e.data.cid, e.data.screenType, 4)
  4407. //3是展示全部阶段 2学生 1老师 4专家
  4408. } else if (e.data.screenType && e.data.screenType == "2s") { //课程管理传入
  4409. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, e.data.screenType, 4)
  4410. //3是展示全部阶段 2学生 1老师 4专家
  4411. } else if (e.data.screenType && e.data.screenType == "2studio") { //课程管理传入
  4412. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, e.data.screenType, 4)
  4413. //3是展示全部阶段 2学生 1老师 4专家
  4414. } else if (e.data.screenType && e.data.screenType == "3") { //课程管理传入
  4415. U.MD.D.I.openInApplication("studyDetail", e.data.cid, 2, 1)
  4416. } else if (e.data.screenType && e.data.screenType == "3train") { //培训管理传入
  4417. U.MD.D.I.openInApplication("studyDetailTrain", e.data.cid, 2, 1)
  4418. } else if (e.data.screenType && e.data.screenType == "3NT") { //课程管理传入
  4419. U.MD.D.I.openInApplication("studyDetailNT", e.data.cid, 2, 1)
  4420. } else if (e.data.screenType && e.data.screenType == "3s") { //课程管理传入
  4421. U.MD.D.I.openInApplication("studyDetailS", e.data.cid, 2, 1)
  4422. } else if (e.data.screenType && e.data.screenType == "3studio") { //课程管理传入
  4423. U.MD.D.I.openInApplication("studyDetailStudio", e.data.cid, 2, 1)
  4424. } else if (e.data.screenType && e.data.screenType == "3s2") { //课程管理传入
  4425. U.MD.D.I.openInApplication("studyDetailS5", e.data.cid, 2, 5)
  4426. } else if (e.data.screenType && e.data.screenType == "2gm") { //课程管理传入
  4427. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, e.data.screenType, 4)
  4428. //3是展示全部阶段 2学生 1老师 4专家
  4429. } else if (e.data.screenType && e.data.screenType == "3gm") { //课程管理传入
  4430. U.MD.D.I.openInApplication("studyDetailGM", e.data.cid, 2, 1)
  4431. } else if (e.data.close && e.data.close == "1") { //更新用户信息
  4432. U.MD.D.I.selectUser();
  4433. } else if (e.data.allScreen && e.data.allScreen == "1") {
  4434. var _formel = document.getElementById("study");
  4435. U.UF.F.windowZooming(_formel);
  4436. } else if (e.data.allScreen && e.data.allScreen == "2") {
  4437. var _formel = document.getElementById("studyDetail");
  4438. U.UF.F.windowZooming(_formel);
  4439. } else if (e.data.allScreen && e.data.allScreen == "2gm") {
  4440. var _formel = document.getElementById("studyDetail");
  4441. U.UF.F.windowZooming(_formel);
  4442. } else if (e.data.allScreen && e.data.allScreen == "3") {
  4443. var _formel = document.getElementById("studentStudy");
  4444. U.UF.F.windowZooming(_formel);
  4445. } else if (e.data.allScreen && e.data.allScreen == "6") {
  4446. // var _formel = document.getElementById("study");
  4447. //如果最大化了,那么就把他缩小
  4448. // if (_formel.ismaximize) {
  4449. // return;
  4450. // }
  4451. // U.UF.F.windowZooming(_formel);
  4452. // U.UF.F.topWindow(_formel);
  4453. } else if (e.data.allScreen && e.data.allScreen == "4") {
  4454. // var _formel = document.getElementById("studyDetail");
  4455. //如果最大化了,那么就把他缩小
  4456. // if (_formel.ismaximize) {
  4457. // return;
  4458. // }
  4459. // U.UF.F.windowZooming(_formel);
  4460. // U.UF.F.topWindow(_formel);
  4461. } else if (e.data.allScreen && e.data.allScreen == "5") {
  4462. // var _formel = document.getElementById("studentStudy");
  4463. // if (_formel.ismaximize) {
  4464. // return;
  4465. // }
  4466. // U.UF.F.windowZooming(_formel);
  4467. // U.UF.F.topWindow(_formel);
  4468. } else if (e.data.allScreen && e.data.allScreen == "5gm") {
  4469. var _formel = document.getElementById("study");
  4470. // if (_formel.ismaximize) {
  4471. // return;
  4472. // }
  4473. // U.UF.F.windowZooming(_formel);
  4474. U.UF.F.topWindow(_formel);
  4475. } else if (e.data.allScreen && e.data.allScreen == "1s") {
  4476. var _formel = document.getElementById("studentIndex");
  4477. U.UF.F.windowZooming(_formel);
  4478. } else if (e.data.allScreen && e.data.allScreen == "2s") {
  4479. var _formel = document.getElementById("studyDetailS");
  4480. U.UF.F.windowZooming(_formel);
  4481. } else if (e.data.allScreen && e.data.allScreen == "1studio") {
  4482. var _formel = document.getElementById("studioIndex");
  4483. U.UF.F.windowZooming(_formel);
  4484. } else if (e.data.allScreen && e.data.allScreen == "2studio") {
  4485. var _formel = document.getElementById("studyDetailStudio");
  4486. U.UF.F.windowZooming(_formel);
  4487. } else if (e.data.allScreen && e.data.allScreen == "2studiostudio") {
  4488. var _formel = document.getElementById("studyDetailStudio");
  4489. U.UF.F.windowZooming(_formel);
  4490. } else if (e.data.allScreen && e.data.allScreen == "2NT") {
  4491. var _formel = document.getElementById("studyDetailNT");
  4492. U.UF.F.windowZooming(_formel);
  4493. } else if (e.data.allScreen && e.data.allScreen == "2ss") {
  4494. var _formel = document.getElementById("studyDetailS");
  4495. U.UF.F.windowZooming(_formel);
  4496. } else if (e.data.allScreen && e.data.allScreen == "4s") {
  4497. var _formel = document.getElementById("studyDetailS");
  4498. U.UF.F.topWindow(_formel);
  4499. } else if (e.data.tools && e.data.tools == "1") {
  4500. // U.MD.D.I.openApplication("whiteboard")
  4501. U.MD.D.I.openApplicationJie("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4502. } else if (e.data.tools && e.data.tools == "2") {
  4503. U.MD.D.I.openApplication("note")
  4504. } else if (e.data.tools && e.data.tools == "3") {
  4505. // U.MD.D.I.openApplication("mind")
  4506. U.MD.D.I.openApplicationJie("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4507. } else if (e.data.tools && e.data.tools == "4") {
  4508. U.MD.D.I.openApplication("investigation")
  4509. } else if (e.data.tools && e.data.tools == "6") {
  4510. // U.MD.D.I.openApplication("doc")
  4511. U.MD.D.I.openApplicationJie("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4512. } else if (e.data.tools && e.data.tools == "7") {
  4513. // U.MD.D.I.openApplication("mindNetwork")
  4514. U.MD.D.I.openApplicationJie("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4515. } else if (e.data.tools && e.data.tools == "8") {
  4516. U.MD.D.I.openApplication("library")
  4517. } else if (e.data.tools && e.data.tools == "17") {
  4518. U.MD.D.I.openApplication("stuLibrary")
  4519. } else if (e.data.tools && e.data.tools == "18") {
  4520. U.MD.D.I.openApplication("train")
  4521. } else if (e.data.tools && e.data.tools == "21") {
  4522. U.MD.D.I.openApplication("program")
  4523. } else if (e.data.tools && e.data.tools == "22") {
  4524. U.MD.D.I.openApplication("AIprogram2")
  4525. } else if (e.data.tools && e.data.tools == "23") {
  4526. U.MD.D.I.openApplication("Pythonprogram")
  4527. } else if (e.data.tools && e.data.tools == "24") {
  4528. U.MD.D.I.openApplication("AIprogram")
  4529. } else if (e.data.tools && e.data.tools == "25") {
  4530. U.MD.D.I.openApplication("sys")
  4531. } else if (e.data.tools && e.data.tools == "26") {
  4532. // U.MD.D.I.openApplication("courseDesign")
  4533. U.MD.D.I.openApplicationJie("courseDesign", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4534. } else if (e.data.tools && e.data.tools == "31") {
  4535. U.MD.D.I.openApplication("netWorkPanel")
  4536. } else if (e.data.tools && e.data.tools == "32") {
  4537. U.MD.D.I.openApplication("codeEdit")
  4538. } else if (e.data.tools && e.data.tools == "57") {
  4539. U.MD.D.I.openApplication("CocoPi")
  4540. } else if (e.data.tools && e.data.tools == "63") {
  4541. U.MD.D.I.openApplication("Wood")
  4542. } else if (e.data.tools && e.data.tools == "58") {
  4543. U.MD.D.I.openApplication("car")
  4544. } else if (e.data.tools && e.data.tools == "59") {
  4545. U.MD.D.I.openApplication("lineSearch")
  4546. } else if (e.data.tools && e.data.tools == "60") {
  4547. U.MD.D.I.openApplication("deepLearning")
  4548. } else if (e.data.tools && e.data.tools == "61") {
  4549. U.MD.D.I.openApplication("allHistory")
  4550. } else if (e.data.tools && e.data.tools == "28") {
  4551. U.MD.D.I.openApplication("translation")
  4552. } else if (e.data.tools && e.data.tools == "37") {
  4553. U.MD.D.I.openApplication("mohe")
  4554. } else if (e.data.tools && e.data.tools == "38") {
  4555. U.MD.D.I.openApplication("24game")
  4556. } else if (e.data.tools && e.data.tools == "39") {
  4557. U.MD.D.I.openApplication("GeoGebra")
  4558. } else if (e.data.tools && e.data.tools == "43") {
  4559. U.MD.D.I.openApplication("studentEvaluate")
  4560. } else if (e.data.tools && e.data.tools == "44") {
  4561. U.MD.D.I.openInApplication("hanUrl", '', '', '')
  4562. } else if (e.data.tools && e.data.tools == "46") {
  4563. U.MD.D.I.openApplication("project")
  4564. } else if (e.data.tools && e.data.tools == "71") {
  4565. U.MD.D.I.openApplication("aigptCourse")
  4566. } else if (e.data.tools && e.data.tools == "1s") {
  4567. U.MD.D.I.openApplicationJieS("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4568. } else if (e.data.tools && e.data.tools == "3s") {
  4569. U.MD.D.I.openApplicationJieS("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4570. } else if (e.data.tools && e.data.tools == "6s") {
  4571. U.MD.D.I.openApplicationJieS("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4572. } else if (e.data.tools && e.data.tools == "1studio") {
  4573. U.MD.D.I.openApplicationJieStudio("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4574. } else if (e.data.tools && e.data.tools == "3studio") {
  4575. U.MD.D.I.openApplicationJieStudio("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4576. } else if (e.data.tools && e.data.tools == "6studio") {
  4577. U.MD.D.I.openApplicationJieStudio("doc", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4578. } else if (e.data.tools && e.data.tools == "3y") {
  4579. U.MD.D.I.openApplicationYu("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4580. } else if (e.data.tools && e.data.tools == "1y") {
  4581. U.MD.D.I.openApplicationYu("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4582. } else if (e.data.tools && e.data.tools == "inviteLogin") {
  4583. U.MD.D.getuser2(e.data.userid, e.data.courseId)
  4584. } else if (e.data.tools && e.data.tools == "AIAnalyse") {
  4585. U.MD.D.I.openApplication("AIAnalyse")
  4586. } else if (e.data.tools && e.data.tools == "1teacher") {
  4587. U.MD.D.I.openApplicationJieTeacher("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4588. } else if (e.data.tools && e.data.tools == "3teacher") {
  4589. U.MD.D.I.openApplicationJieTeacher("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4590. } else if (e.data.tools && e.data.tools == "7teacher") {
  4591. U.MD.D.I.openApplicationJieTeacher("mindNetwork", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4592. } else if (e.data.tools && e.data.tools == "1teacherE") {
  4593. U.MD.D.I.openApplicationJieTeacherE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4594. } else if (e.data.tools && e.data.tools == "3teacherE") {
  4595. U.MD.D.I.openApplicationJieTeacherE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4596. } else if (e.data.tools && e.data.tools == "1E") {
  4597. U.MD.D.I.openApplicationJieE("whiteboard", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4598. } else if (e.data.tools && e.data.tools == "3E") {
  4599. U.MD.D.I.openApplicationJieE("mind", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4600. } else if (e.data.tools && e.data.tools == "57y") {
  4601. U.MD.D.I.openApplicationYu("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4602. } else if (e.data.tools && e.data.tools == "57u") {
  4603. U.MD.D.I.openApplicationUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool)
  4604. } else if (e.data.tools && e.data.tools == "57teacher") {
  4605. U.MD.D.I.openApplicationTeacherUpload("CocoPi", e.data.cid, e.data.stage, e.data.task, e.data.tool, e.data.student)
  4606. } else if (e.data.tools && e.data.tools == "64") {
  4607. U.MD.D.I.openApplication("AIChat")
  4608. } else if (e.data.tools && e.data.tools == "66") {
  4609. U.MD.D.I.openApplication("formulaEdi")
  4610. } else if (e.data.tools && e.data.tools == "67") {
  4611. U.MD.D.I.openApplication("molStr")
  4612. } else if (e.data.tools && e.data.tools == "68") {
  4613. U.MD.D.I.openApplication("timeAxis")
  4614. } else if (e.data.tools && e.data.tools == "openCourse") {
  4615. let _data = {
  4616. typea: e.data.typea || '',
  4617. typeb: e.data.typeb || '',
  4618. typed: e.data.typed || '',
  4619. }
  4620. U.MD.D.I.openInApplication("index", _data)
  4621. } else if (e.data.tools && e.data.tools == "openDataClass") {
  4622. let _data = {
  4623. classid: e.data.classid || '',
  4624. }
  4625. U.MD.D.I.openInApplication("dataClass", _data)
  4626. } else if (e.data.tools && e.data.tools == "opencCscl") {
  4627. let _data = {
  4628. cid: e.data.cid || '',
  4629. gid: e.data.gid || '',
  4630. }
  4631. U.MD.D.I.openInApplication("opencCscl", _data)
  4632. } else if (e.data.tools && e.data.tools == "dataBoardTest") {
  4633. U.MD.D.I.openApplication("dataBoardTest")
  4634. } else if (e.data.tools && e.data.tools == "openCourseUpdate") {
  4635. U.MD.D.I.openInApplication("openCourseUpdate", e.data.cid)
  4636. }else if (e.data.tools && e.data.tools == "openCourseEUpdate") {
  4637. U.MD.D.I.openInApplication("openCourseEUpdate", e.data.cid)
  4638. }else if (e.data.tools && e.data.tools == "openCourseAiUpdate") {
  4639. U.MD.D.I.openInApplication("openCourseAiUpdate", e.data.cid)
  4640. }else if (e.data.tools && e.data.tools == "openNewCourseUpdate") {
  4641. U.MD.D.I.openInApplication("openNewCourseUpdate", e.data.cid)
  4642. }else if (e.data.tools && e.data.tools == "inviteLoginSz") {
  4643. U.MD.D.I.openInApplication("inviteLoginSz", e.data.cid)
  4644. }else if (e.data.tools && e.data.tools == "loginSz") {
  4645. U.MD.D.I.openInApplication("loginSz")
  4646. }else if (e.data.tools && e.data.tools == "classroom_observation_board"){
  4647. if($('#classroom_observation_board')[0]){
  4648. $('#classroom_observation_board iframe')[0].contentDocument.location.reload()
  4649. }
  4650. U.MD.D.I.openInApplication("classroom_observation_board", e.data.type)
  4651. }else if (e.data.tools && e.data.tools == "classroom_observation_ob_comment"){
  4652. if($('#classroom_observation_ob_comment')[0]){
  4653. $('#classroom_observation_ob_comment iframe')[0].contentDocument.location.reload()
  4654. }
  4655. U.MD.D.I.openInApplication("classroom_observation_ob_comment", e.data.type)
  4656. }
  4657. });
  4658. U.MD.D.I.selectUser = function () {
  4659. U.A.Request(US.Config.pbl + "selectUser?userid=" + US.userInfo.userid, [], function (res) { //US.userInfo.userid
  4660. if (res.value[0].length > 0) {
  4661. US.userInfo = res.value[0][0];
  4662. $(".userName")[0].innerHTML = US.userInfo.username;
  4663. }
  4664. }, [], { "type": "GET", "withCredentials": true });
  4665. }
  4666. U.MD.D.I.openInApplication = function (str, data, screenType, tType) {
  4667. var _userinfo = US.userInfo, //登录用户信息
  4668. _userid = US.userInfo.userid, //登录用户id
  4669. _oid = _userinfo.organizeid,
  4670. _type = US.userInfo.type,
  4671. _org = US.userInfo.org,
  4672. _role = US.userInfo.role,
  4673. _classId = US.userInfo.classid;
  4674. if (_type == 4) {
  4675. tType = 4
  4676. }
  4677. switch (str) {
  4678. case "studyDetailNT": //无终端模式
  4679. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4680. setTimeout(() => {
  4681. U.MD.U.L.login();
  4682. }, 2000);
  4683. } else {
  4684. _formdiv = new U.UF.UI.form(
  4685. "课程详情",
  4686. $$("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 }), {
  4687. "id": "studyDetailNT",
  4688. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4689. "onresize": function () { }
  4690. }, {
  4691. closecallback: function () { }
  4692. }, { "style": { "height": "36px" } }).form; //创建窗体
  4693. _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); } }
  4694. break;
  4695. }
  4696. case "studyDetail":
  4697. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4698. setTimeout(() => {
  4699. U.MD.U.L.login();
  4700. }, 2000);
  4701. } else {
  4702. _formdiv = new U.UF.UI.form(
  4703. "课程详情",
  4704. $$("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 }), {
  4705. "id": "studyDetail",
  4706. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4707. "onresize": function () { }
  4708. }, {
  4709. closecallback: function () { }
  4710. }, { "style": { "height": "36px" } }).form; //创建窗体
  4711. _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); } }
  4712. break;
  4713. }
  4714. case "studyDetailTrain":
  4715. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4716. setTimeout(() => {
  4717. U.MD.U.L.login();
  4718. }, 2000);
  4719. } else {
  4720. _formdiv = new U.UF.UI.form(
  4721. "培训详情",
  4722. $$("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 }), {
  4723. "id": "studyDetailTrain",
  4724. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4725. "onresize": function () { }
  4726. }, {
  4727. closecallback: function () { }
  4728. }, { "style": { "height": "36px" } }).form; //创建窗体
  4729. _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); } }
  4730. break;
  4731. }
  4732. case "studyDetailS":
  4733. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4734. setTimeout(() => {
  4735. U.MD.U.L.login();
  4736. }, 2000);
  4737. } else {
  4738. _formdiv = new U.UF.UI.form(
  4739. "项目详情",
  4740. $$("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 }), {
  4741. "id": "studyDetailS",
  4742. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4743. "onresize": function () { }
  4744. }, {
  4745. closecallback: function () { }
  4746. }, { "style": { "height": "36px" } }).form; //创建窗体
  4747. _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); } }
  4748. break;
  4749. }
  4750. case "studyDetailStudio":
  4751. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4752. setTimeout(() => {
  4753. U.MD.U.L.login();
  4754. }, 2000);
  4755. } else {
  4756. _formdiv = new U.UF.UI.form(
  4757. "工作详情",
  4758. $$("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 }), {
  4759. "id": "studyDetailStudio",
  4760. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4761. "onresize": function () { }
  4762. }, {
  4763. closecallback: function () { }
  4764. }, { "style": { "height": "36px" } }).form; //创建窗体
  4765. _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); } }
  4766. break;
  4767. }
  4768. case "studyDetailS5":
  4769. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4770. setTimeout(() => {
  4771. U.MD.U.L.login();
  4772. }, 2000);
  4773. } else {
  4774. _formdiv = new U.UF.UI.form(
  4775. "项目详情",
  4776. $$("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 }), {
  4777. "id": "studyDetailS",
  4778. "style": { "width": "95%", "height": "95%", "overflow": 'hidden' },
  4779. "onresize": function () { }
  4780. }, {
  4781. closecallback: function () { }
  4782. }, { "style": { "height": "36px" } }).form; //创建窗体
  4783. _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); } }
  4784. break;
  4785. }
  4786. case "studyDetailGM":
  4787. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4788. setTimeout(() => {
  4789. U.MD.U.L.login();
  4790. }, 2000);
  4791. } else {
  4792. _formdiv = new U.UF.UI.form(
  4793. "课程详情",
  4794. $$("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 }), {
  4795. "id": "studyDetail",
  4796. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4797. "onresize": function () { }
  4798. }, {
  4799. closecallback: function () { }
  4800. }, { "style": { "height": "36px" } }).form; //创建窗体
  4801. _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); } }
  4802. break;
  4803. }
  4804. case "hanUrl":
  4805. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4806. setTimeout(() => {
  4807. U.MD.U.L.login();
  4808. }, 2000);
  4809. } else {
  4810. _formdiv = new U.UF.UI.form(
  4811. "汉字宫",
  4812. $$("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" }), {
  4813. "id": "hanUrl",
  4814. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4815. "onresize": function () { }
  4816. }, {
  4817. closecallback: function () { }
  4818. }, { "style": { "height": "36px" } }).form; //创建窗体
  4819. _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); } }
  4820. break;
  4821. }
  4822. case "index":
  4823. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4824. setTimeout(() => {
  4825. U.MD.U.L.login();
  4826. }, 2000);
  4827. } else {
  4828. _formdiv = new U.UF.UI.form(
  4829. "课程中心",
  4830. $$("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 }), {
  4831. "id": "study",
  4832. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  4833. "onresize": function () { }
  4834. }, {
  4835. closecallback: function () { }
  4836. }, { "style": { "height": "36px" } }).form; //创建窗体
  4837. _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); } }
  4838. break;
  4839. }
  4840. case "dataClass":
  4841. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4842. setTimeout(() => {
  4843. U.MD.U.L.login();
  4844. }, 2000);
  4845. } else {
  4846. _formdiv = new U.UF.UI.form(
  4847. "数据报告",
  4848. $$("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 }), {
  4849. "id": "dataClass",
  4850. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4851. "onresize": function () { }
  4852. }, {
  4853. closecallback: function () { }
  4854. }, { "style": { "height": "36px" } }).form; //创建窗体
  4855. _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); } }
  4856. break;
  4857. }
  4858. case "opencCscl":
  4859. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4860. setTimeout(() => {
  4861. U.MD.U.L.login();
  4862. }, 2000);
  4863. } else {
  4864. _formdiv = new U.UF.UI.form(
  4865. "协同建构",
  4866. $$("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 }), {
  4867. "id": "futureClass",
  4868. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4869. "onresize": function () { }
  4870. }, {
  4871. closecallback: function () { $("iframe", _formdiv)[0].contentWindow.loginout(); }
  4872. }, { "style": { "height": "36px" } }).form; //创建窗体
  4873. _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); } }
  4874. break;
  4875. }
  4876. case "openCourseUpdate":
  4877. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4878. setTimeout(() => {
  4879. U.MD.U.L.login();
  4880. }, 2000);
  4881. } else {
  4882. _formdiv = new U.UF.UI.form(
  4883. "课程管理",
  4884. $$("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 }), {
  4885. "id": "openCourseUpdate",
  4886. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4887. "onresize": function () { }
  4888. }, {
  4889. closecallback: function () { }
  4890. }, { "style": { "height": "36px" } }).form; //创建窗体
  4891. break;
  4892. }
  4893. case "openNewCourseUpdate":
  4894. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4895. setTimeout(() => {
  4896. U.MD.U.L.login();
  4897. }, 2000);
  4898. } else {
  4899. _formdiv = new U.UF.UI.form(
  4900. "课程管理",
  4901. $$("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 }), {
  4902. "id": "openCourseUpdate",
  4903. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4904. "onresize": function () { }
  4905. }, {
  4906. closecallback: function () { }
  4907. }, { "style": { "height": "36px" } }).form; //创建窗体
  4908. break;
  4909. }
  4910. case "openCourseEUpdate":
  4911. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4912. setTimeout(() => {
  4913. U.MD.U.L.login();
  4914. }, 2000);
  4915. } else {
  4916. _formdiv = new U.UF.UI.form(
  4917. "课程管理",
  4918. $$("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 }), {
  4919. "id": "openCourseUpdate",
  4920. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4921. "onresize": function () { }
  4922. }, {
  4923. closecallback: function () { }
  4924. }, { "style": { "height": "36px" } }).form; //创建窗体
  4925. break;
  4926. }
  4927. case "openCourseAiUpdate":
  4928. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4929. setTimeout(() => {
  4930. U.MD.U.L.login();
  4931. }, 2000);
  4932. } else {
  4933. _formdiv = new U.UF.UI.form(
  4934. "课程管理",
  4935. $$("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 }), {
  4936. "id": "openCourseUpdate",
  4937. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4938. "onresize": function () { }
  4939. }, {
  4940. closecallback: function () { }
  4941. }, { "style": { "height": "36px" } }).form; //创建窗体
  4942. break;
  4943. }
  4944. case "openCourseNewUpdate":
  4945. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4946. setTimeout(() => {
  4947. U.MD.U.L.login();
  4948. }, 2000);
  4949. } else {
  4950. _formdiv = new U.UF.UI.form(
  4951. "课程管理",
  4952. $$("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 }), {
  4953. "id": "openCourseUpdate",
  4954. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4955. "onresize": function () { }
  4956. }, {
  4957. closecallback: function () { }
  4958. }, { "style": { "height": "36px" } }).form; //创建窗体
  4959. break;
  4960. }
  4961. case "inviteLoginSz":
  4962. _formdiv = new U.UF.UI.form(
  4963. "随机码登录",
  4964. $$("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 }), {
  4965. "id": "loginSz",
  4966. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4967. "onresize": function () { }
  4968. }, {
  4969. closecallback: function () { }
  4970. }, { "style": { "height": "36px" } }).form; //创建窗体
  4971. break;
  4972. case "loginSz":
  4973. _formdiv = new U.UF.UI.form(
  4974. "教师登录",
  4975. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://edu.cocorobo.cn/ResourcesLogin" }), {
  4976. "id": "loginSz",
  4977. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4978. "onresize": function () { }
  4979. }, {
  4980. closecallback: function () { }
  4981. }, { "style": { "height": "36px" } }).form; //创建窗体
  4982. break;
  4983. case "teacher":
  4984. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  4985. setTimeout(() => {
  4986. U.MD.U.L.login();
  4987. }, 2000);
  4988. } else {
  4989. _formdiv = new U.UF.UI.form(
  4990. "教师管理",
  4991. $$("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 }), {
  4992. "id": "teacher",
  4993. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  4994. "onresize": function () { }
  4995. }, {
  4996. closecallback: function () { }
  4997. }, { "style": { "height": "36px" } }).form; //创建窗体
  4998. break;
  4999. }
  5000. case "dataBoardSZArea":
  5001. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5002. setTimeout(() => {
  5003. U.MD.U.L.login();
  5004. }, 2000);
  5005. } else {
  5006. _formdiv = new U.UF.UI.form(
  5007. "综合数据看板",
  5008. $$("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 }), {
  5009. "id": "dataBoardSZArea",
  5010. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5011. "onresize": function () { }
  5012. }, {
  5013. closecallback: function () { }
  5014. }, { "style": { "height": "36px" } }).form; //创建窗体
  5015. break;
  5016. }
  5017. case "dataBoardSZCity":
  5018. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5019. setTimeout(() => {
  5020. U.MD.U.L.login();
  5021. }, 2000);
  5022. } else {
  5023. _formdiv = new U.UF.UI.form(
  5024. "综合数据看板",
  5025. $$("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 }), {
  5026. "id": "dataBoardSZCity",
  5027. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5028. "onresize": function () { }
  5029. }, {
  5030. closecallback: function () { }
  5031. }, { "style": { "height": "36px" } }).form; //创建窗体
  5032. break;
  5033. }
  5034. case "classroom_observation_board":
  5035. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5036. setTimeout(() => {
  5037. U.MD.U.L.login();
  5038. }, 2000);
  5039. } else {
  5040. _formdiv = new U.UF.UI.form(
  5041. "课堂观察",
  5042. $$("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 }), {
  5043. "id": "classroom_observation_board",
  5044. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5045. "onresize": function () { }
  5046. }, {
  5047. closecallback: function () { }
  5048. }, { "style": { "height": "36px" } }).form; //创建窗体
  5049. break;
  5050. }
  5051. case "classroom_observation_ob_comment":
  5052. if (!_userinfo || Object.keys(_userinfo).length === 0) {
  5053. setTimeout(() => {
  5054. U.MD.U.L.login();
  5055. }, 2000);
  5056. } else {
  5057. _formdiv = new U.UF.UI.form(
  5058. "课堂审核",
  5059. $$("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 }), {
  5060. "id": "classroom_observation_ob_comment",
  5061. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5062. "onresize": function () { }
  5063. }, {
  5064. closecallback: function () { }
  5065. }, { "style": { "height": "36px" } }).form; //创建窗体
  5066. break;
  5067. }
  5068. }
  5069. }
  5070. U.MD.D.I.openApplication = function (str, obj, info) {
  5071. obj = obj || {};
  5072. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  5073. _formdiv, //创建任务栏时同时弹出的窗体元素。
  5074. _userinfo = US.userInfo, //登录用户信息
  5075. _userid = obj.userid || US.userInfo.userid, //登录用户id
  5076. _oid = obj.organizeid || _userinfo.organizeid,
  5077. _type = US.userInfo.type,
  5078. _org = US.userInfo.org,
  5079. _role = US.userInfo.role,
  5080. _classId = US.userInfo.classid,
  5081. _TscreenType = 1
  5082. _screenType = 2,
  5083. _SscreenType = 3;
  5084. if (str == 'my' && _type == 2 && (_oid == "69893dca-1d47-11ed-8c78-005056b86db5" || _oid == "05b62310-8cda-11ed-b13d-005056b86db5")) {
  5085. return;
  5086. }
  5087. if (_type == 2 && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5088. switch (str) {
  5089. case "studnetProject": //好友打开
  5090. _formdiv = new U.UF.UI.form(
  5091. "我的项目",
  5092. $$("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 }), {
  5093. "id": "studnetProject",
  5094. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5095. "onresize": function () { }
  5096. }, {
  5097. closecallback: function () { }
  5098. }, { "style": { "height": "36px" } }).form; //创建窗体
  5099. _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); } }
  5100. break;
  5101. case "studentEvaluate": //好友打开
  5102. _formdiv = new U.UF.UI.form(
  5103. "我的评价",
  5104. $$("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 }), {
  5105. "id": "studentEvaluate",
  5106. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5107. "onresize": function () { }
  5108. }, {
  5109. closecallback: function () { }
  5110. }, { "style": { "height": "36px" } }).form; //创建窗体
  5111. _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); } }
  5112. break;
  5113. case "my":
  5114. _formdiv = new U.UF.UI.form(
  5115. "我的资料",
  5116. $$("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 }), {
  5117. "id": "my",
  5118. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5119. "onresize": function () { }
  5120. }, {
  5121. closecallback: function () { }
  5122. }, { "style": { "height": "36px" } }).form; //创建窗体
  5123. _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); } }
  5124. break;
  5125. case "program":
  5126. _formdiv = new U.UF.UI.form(
  5127. "编程平台",
  5128. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5129. "id": "program",
  5130. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5131. "onresize": function () { }
  5132. }, {
  5133. closecallback: function () { }
  5134. }, { "style": { "height": "36px" } }).form; //创建窗体
  5135. _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); } }
  5136. break;
  5137. case "library":
  5138. _formdiv = new U.UF.UI.form(
  5139. "素材库",
  5140. $$("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 }), {
  5141. "id": "library",
  5142. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5143. "onresize": function () { }
  5144. }, {
  5145. closecallback: function () { }
  5146. }, { "style": { "height": "36px" } }).form; //创建窗体
  5147. _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); } }
  5148. break;
  5149. case "whiteboard":
  5150. _formdiv = new U.UF.UI.form(
  5151. "电子白板",
  5152. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5153. "id": "whiteboard",
  5154. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5155. "onresize": function () { }
  5156. }, {
  5157. closecallback: function () { }
  5158. }, { "style": { "height": "36px" } }).form; //创建窗体
  5159. _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); } }
  5160. break;
  5161. case "investigation":
  5162. _formdiv = new U.UF.UI.form(
  5163. "问卷调查",
  5164. $$("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 }), {
  5165. "id": "investigation",
  5166. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5167. "onresize": function () { }
  5168. }, {
  5169. closecallback: function () { }
  5170. }, { "style": { "height": "36px" } }).form; //创建窗体
  5171. _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); } }
  5172. break;
  5173. case "note":
  5174. _formdiv = new U.UF.UI.form(
  5175. "便签分类",
  5176. $$("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 }), {
  5177. "id": "note",
  5178. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5179. "onresize": function () { }
  5180. }, {
  5181. closecallback: function () { }
  5182. }, { "style": { "height": "36px" } }).form; //创建窗体
  5183. _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); } }
  5184. break;
  5185. // case "score":
  5186. // _formdiv = new U.UF.UI.form(
  5187. // "量规评分",
  5188. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5189. // "id": "score",
  5190. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5191. // "onresize": function() {}
  5192. // }, {
  5193. // closecallback: function() {}
  5194. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5195. // _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); } }
  5196. // break;
  5197. case "mind":
  5198. _formdiv = new U.UF.UI.form(
  5199. "思维导图",
  5200. $$("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"
  5201. "id": "mind",
  5202. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5203. "onresize": function () { }
  5204. }, {
  5205. closecallback: function () { }
  5206. }, { "style": { "height": "36px" } }).form; //创建窗体
  5207. _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); } }
  5208. break;
  5209. case "doc":
  5210. // U.MD.D.I.isRoom();
  5211. _formdiv = new U.UF.UI.form(
  5212. "协同文档",
  5213. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), { //"/Office/Word/WordEditArea.htm"
  5214. "id": "doc",
  5215. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5216. "onresize": function () { }
  5217. }, {
  5218. closecallback: function () { }
  5219. }, { "style": { "height": "36px" } }).form; //创建窗体
  5220. // U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5221. // $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5222. // })
  5223. _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); } }
  5224. break;
  5225. case "studentStudy":
  5226. _formdiv = new U.UF.UI.form(
  5227. "课程中心",
  5228. $$("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
  5229. "id": "studentStudy",
  5230. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5236. break;
  5237. case "train": //好友打开
  5238. _formdiv = new U.UF.UI.form(
  5239. "训练平台",
  5240. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5241. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5248. break;
  5249. case "mindNetwork": //好友打开
  5250. _formdiv = new U.UF.UI.form(
  5251. "思维网格",
  5252. $$("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 }), {
  5253. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5260. break;
  5261. case "studentClassRoom": //好友打开
  5262. _formdiv = new U.UF.UI.form(
  5263. "实时课堂",
  5264. $$("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 }), {
  5265. "id": "studentClassRoom",
  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/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5272. setTimeout(() => {
  5273. U.UF.F.windowZooming(_formdiv)
  5274. }, 0);
  5275. break;
  5276. }
  5277. } else if (_type == 2 && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5278. switch (str) {
  5279. case "studnetProject": //好友打开
  5280. _formdiv = new U.UF.UI.form(
  5281. "我的项目",
  5282. $$("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 }), {
  5283. "id": "studnetProject",
  5284. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5285. "onresize": function () { }
  5286. }, {
  5287. closecallback: function () { }
  5288. }, { "style": { "height": "36px" } }).form; //创建窗体
  5289. _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); } }
  5290. break;
  5291. case "studentEvaluate": //好友打开
  5292. _formdiv = new U.UF.UI.form(
  5293. "我的评价",
  5294. $$("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 }), {
  5295. "id": "studentEvaluate",
  5296. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5297. "onresize": function () { }
  5298. }, {
  5299. closecallback: function () { }
  5300. }, { "style": { "height": "36px" } }).form; //创建窗体
  5301. _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); } }
  5302. break;
  5303. case "my":
  5304. _formdiv = new U.UF.UI.form(
  5305. "我的资料",
  5306. $$("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 }), {
  5307. "id": "my",
  5308. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5309. "onresize": function () { }
  5310. }, {
  5311. closecallback: function () { }
  5312. }, { "style": { "height": "36px" } }).form; //创建窗体
  5313. _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); } }
  5314. break;
  5315. case "program":
  5316. _formdiv = new U.UF.UI.form(
  5317. "编程平台",
  5318. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5319. "id": "program",
  5320. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5321. "onresize": function () { }
  5322. }, {
  5323. closecallback: function () { }
  5324. }, { "style": { "height": "36px" } }).form; //创建窗体
  5325. _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); } }
  5326. break;
  5327. case "library":
  5328. _formdiv = new U.UF.UI.form(
  5329. "素材库",
  5330. $$("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 }), {
  5331. "id": "library",
  5332. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5333. "onresize": function () { }
  5334. }, {
  5335. closecallback: function () { }
  5336. }, { "style": { "height": "36px" } }).form; //创建窗体
  5337. _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); } }
  5338. break;
  5339. case "whiteboard":
  5340. _formdiv = new U.UF.UI.form(
  5341. "电子白板",
  5342. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5343. "id": "whiteboard",
  5344. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5345. "onresize": function () { }
  5346. }, {
  5347. closecallback: function () { }
  5348. }, { "style": { "height": "36px" } }).form; //创建窗体
  5349. _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); } }
  5350. break;
  5351. case "investigation":
  5352. _formdiv = new U.UF.UI.form(
  5353. "问卷调查",
  5354. $$("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 }), {
  5355. "id": "investigation",
  5356. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5357. "onresize": function () { }
  5358. }, {
  5359. closecallback: function () { }
  5360. }, { "style": { "height": "36px" } }).form; //创建窗体
  5361. _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); } }
  5362. break;
  5363. case "note":
  5364. _formdiv = new U.UF.UI.form(
  5365. "便签分类",
  5366. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/note?userid=" + _userid + "&org=" + _org }), {
  5367. "id": "note",
  5368. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5369. "onresize": function () { }
  5370. }, {
  5371. closecallback: function () { }
  5372. }, { "style": { "height": "36px" } }).form; //创建窗体
  5373. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/note.png)" }, "name": "便签分类", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5374. break;
  5375. // case "score":
  5376. // _formdiv = new U.UF.UI.form(
  5377. // "量规评分",
  5378. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5379. // "id": "score",
  5380. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5381. // "onresize": function() {}
  5382. // }, {
  5383. // closecallback: function() {}
  5384. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5385. // _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/score.png)" }, "name": "量规评分", "forms": _formdiv, "click": function() { U.MD.D.I.openApplication(str, obj, info); } }
  5386. // break;
  5387. case "mind":
  5388. _formdiv = new U.UF.UI.form(
  5389. "思维导图",
  5390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5391. "id": "mind",
  5392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5393. "onresize": function () { }
  5394. }, {
  5395. closecallback: function () { }
  5396. }, { "style": { "height": "36px" } }).form; //创建窗体
  5397. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5398. break;
  5399. case "doc":
  5400. // U.MD.D.I.isRoom();
  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": "/Office/Word/WordEditArea.htm" }), {
  5404. "id": "doc",
  5405. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5406. "onresize": function () { }
  5407. }, {
  5408. closecallback: function () { }
  5409. }, { "style": { "height": "36px" } }).form; //创建窗体
  5410. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5411. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5412. })
  5413. _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); } }
  5414. break;
  5415. case "train": //好友打开
  5416. _formdiv = new U.UF.UI.form(
  5417. "训练平台",
  5418. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5419. "id": "train",
  5420. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5421. "onresize": function () { }
  5422. }, {
  5423. closecallback: function () { }
  5424. }, { "style": { "height": "36px" } }).form; //创建窗体
  5425. _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); } }
  5426. break;
  5427. case "studentStudy":
  5428. _formdiv = new U.UF.UI.form(
  5429. "课程中心",
  5430. $$("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
  5431. "id": "studentStudy",
  5432. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5433. "onresize": function () { }
  5434. }, {
  5435. closecallback: function () { }
  5436. }, { "style": { "height": "36px" } }).form; //创建窗体
  5437. _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); } }
  5438. break;
  5439. case "mindNetwork": //好友打开
  5440. _formdiv = new U.UF.UI.form(
  5441. "思维网格",
  5442. $$("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 }), {
  5443. "id": "mindNetwork",
  5444. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5445. "onresize": function () { }
  5446. }, {
  5447. closecallback: function () { }
  5448. }, { "style": { "height": "36px" } }).form; //创建窗体
  5449. _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); } }
  5450. break;
  5451. case "studentClassRoom": //好友打开
  5452. _formdiv = new U.UF.UI.form(
  5453. "实时课堂",
  5454. $$("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 }), {
  5455. "id": "studentClassRoom",
  5456. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5457. "onresize": function () { }
  5458. }, {
  5459. closecallback: function () { }
  5460. }, { "style": { "height": "36px" } }).form; //创建窗体
  5461. _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); } }
  5462. setTimeout(() => {
  5463. U.UF.F.windowZooming(_formdiv)
  5464. }, 0);
  5465. break;
  5466. }
  5467. } else if ((_type == 1 || _type == 4) && _oid != "91305d49-01ba-11ed-8c78-005056b86db5") {
  5468. //选择应用处理
  5469. switch (str) {
  5470. case "project": //好友打开
  5471. _formdiv = new U.UF.UI.form(
  5472. _org == '97c4ee8b-d010-4042-986d-e9d3c217264f' ? '工作项目' : "课程管理",
  5473. $$("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 }), {
  5474. "id": "project",
  5475. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5476. "onresize": function () { }
  5477. }, {
  5478. closecallback: function () { }
  5479. }, { "style": { "height": "36px" } }).form; //创建窗体
  5480. _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); } }
  5481. break;
  5482. case "student":
  5483. _formdiv = new U.UF.UI.form(
  5484. "学生管理",
  5485. $$("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 }), {
  5486. "id": "student",
  5487. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5488. "onresize": function () { }
  5489. }, {
  5490. closecallback: function () { }
  5491. }, { "style": { "height": "36px" } }).form; //创建窗体
  5492. _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); } }
  5493. break;
  5494. case "evaluate":
  5495. _formdiv = new U.UF.UI.form(
  5496. "学生评价",
  5497. $$("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 }), {
  5498. "id": "evaluate",
  5499. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5500. "onresize": function () { }
  5501. }, {
  5502. closecallback: function () { }
  5503. }, { "style": { "height": "36px" } }).form; //创建窗体
  5504. _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); } }
  5505. break;
  5506. case "sys":
  5507. _formdiv = new U.UF.UI.form(
  5508. "目标管理",
  5509. $$("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 }), {
  5510. "id": "sys",
  5511. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5512. "onresize": function () { }
  5513. }, {
  5514. closecallback: function () { }
  5515. }, { "style": { "height": "36px" } }).form; //创建窗体
  5516. _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); } }
  5517. break;
  5518. case "courseDesign":
  5519. _formdiv = new U.UF.UI.form(
  5520. "项目设计",
  5521. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5522. "id": "courseDesign",
  5523. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5524. "onresize": function () { }
  5525. }, {
  5526. closecallback: function () { }
  5527. }, { "style": { "height": "36px" } }).form; //创建窗体
  5528. _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); } }
  5529. break;
  5530. case "program":
  5531. _formdiv = new U.UF.UI.form(
  5532. "编程平台",
  5533. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5534. "id": "program",
  5535. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5536. "onresize": function () { }
  5537. }, {
  5538. closecallback: function () { }
  5539. }, { "style": { "height": "36px" } }).form; //创建窗体
  5540. _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); } }
  5541. break;
  5542. case "class":
  5543. _formdiv = new U.UF.UI.form(
  5544. "班级管理",
  5545. $$("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 }), {
  5546. "id": "class",
  5547. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5548. "onresize": function () { }
  5549. }, {
  5550. closecallback: function () { }
  5551. }, { "style": { "height": "36px" } }).form; //创建窗体
  5552. _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); } }
  5553. break;
  5554. case "Grade":
  5555. _formdiv = new U.UF.UI.form(
  5556. "年级管理",
  5557. $$("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 }), {
  5558. "id": "Grade",
  5559. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5560. "onresize": function () { }
  5561. }, {
  5562. closecallback: function () { }
  5563. }, { "style": { "height": "36px" } }).form; //创建窗体
  5564. _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); } }
  5565. break;
  5566. case "teacherOffice":
  5567. _formdiv = new U.UF.UI.form(
  5568. "教研室",
  5569. $$("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 }), {
  5570. "id": "teacherOffice",
  5571. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5572. "onresize": function () { }
  5573. }, {
  5574. closecallback: function () { }
  5575. }, { "style": { "height": "36px" } }).form; //创建窗体
  5576. _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); } }
  5577. break;
  5578. case "my":
  5579. _formdiv = new U.UF.UI.form(
  5580. "我的资料",
  5581. $$("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 }), {
  5582. "id": "my",
  5583. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5584. "onresize": function () { }
  5585. }, {
  5586. closecallback: function () { }
  5587. }, { "style": { "height": "36px" } }).form; //创建窗体
  5588. _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); } }
  5589. break;
  5590. case "notice":
  5591. _formdiv = new U.UF.UI.form(
  5592. "通知公告",
  5593. $$("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 }), {
  5594. "id": "notice",
  5595. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5596. "onresize": function () { }
  5597. }, {
  5598. closecallback: function () { }
  5599. }, { "style": { "height": "36px" } }).form; //创建窗体
  5600. _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); } }
  5601. break;
  5602. case "library":
  5603. _formdiv = new U.UF.UI.form(
  5604. "素材库",
  5605. $$("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 }), {
  5606. "id": "library",
  5607. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5608. "onresize": function () { }
  5609. }, {
  5610. closecallback: function () { }
  5611. }, { "style": { "height": "36px" } }).form; //创建窗体
  5612. _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); } }
  5613. break;
  5614. case "whiteboard":
  5615. _formdiv = new U.UF.UI.form(
  5616. "电子白板",
  5617. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5618. "id": "whiteboard",
  5619. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5620. "onresize": function () { }
  5621. }, {
  5622. closecallback: function () { }
  5623. }, { "style": { "height": "36px" } }).form; //创建窗体
  5624. _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); } }
  5625. break;
  5626. case "investigation":
  5627. _formdiv = new U.UF.UI.form(
  5628. "问卷调查",
  5629. $$("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 }), {
  5630. "id": "investigation",
  5631. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5632. "onresize": function () { }
  5633. }, {
  5634. closecallback: function () { }
  5635. }, { "style": { "height": "36px" } }).form; //创建窗体
  5636. _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); } }
  5637. break;
  5638. case "note":
  5639. _formdiv = new U.UF.UI.form(
  5640. "便签分类",
  5641. $$("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 }), {
  5642. "id": "note",
  5643. "style": { "width": "20%", "height": "90%", "overflow": 'hidden' },
  5644. "onresize": function () { }
  5645. }, {
  5646. closecallback: function () { }
  5647. }, { "style": { "height": "36px" } }).form; //创建窗体
  5648. _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); } }
  5649. break;
  5650. // case "score":
  5651. // _formdiv = new U.UF.UI.form(
  5652. // "量规评分",
  5653. // $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "" }), {
  5654. // "id": "score",
  5655. // "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5656. // "onresize": function() {}
  5657. // }, {
  5658. // closecallback: function() {}
  5659. // }, { "style": { "height": "36px" } }).form; //创建窗体
  5660. // _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); } }
  5661. // break;
  5662. case "mind":
  5663. _formdiv = new U.UF.UI.form(
  5664. "思维导图",
  5665. $$("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"
  5666. "id": "mind",
  5667. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5668. "onresize": function () { }
  5669. }, {
  5670. closecallback: function () { }
  5671. }, { "style": { "height": "36px" } }).form; //创建窗体
  5672. _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); } }
  5673. break;
  5674. case "doc":
  5675. // U.MD.D.I.isRoom();
  5676. _formdiv = new U.UF.UI.form(
  5677. "协同文档",
  5678. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5679. "id": "doc",
  5680. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5681. "onresize": function () { }
  5682. }, {
  5683. closecallback: function () { }
  5684. }, { "style": { "height": "36px" } }).form; //创建窗体
  5685. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5686. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5687. })
  5688. _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); } }
  5689. break;
  5690. case "study":
  5691. _formdiv = new U.UF.UI.form(
  5692. "课程中心",
  5693. $$("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
  5694. "id": "study",
  5695. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  5696. "onresize": function () { }
  5697. }, {
  5698. closecallback: function () { }
  5699. }, { "style": { "height": "36px" } }).form; //创建窗体
  5700. _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); } }
  5701. break;
  5702. case "mindNetwork": //好友打开
  5703. _formdiv = new U.UF.UI.form(
  5704. "思维网格",
  5705. $$("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 }), {
  5706. "id": "mindNetwork",
  5707. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5708. "onresize": function () { }
  5709. }, {
  5710. closecallback: function () { }
  5711. }, { "style": { "height": "36px" } }).form; //创建窗体
  5712. _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); } }
  5713. break;
  5714. case "train": //好友打开
  5715. _formdiv = new U.UF.UI.form(
  5716. "训练平台",
  5717. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5718. "id": "mindNetwork",
  5719. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5720. "onresize": function () { }
  5721. }, {
  5722. closecallback: function () { }
  5723. }, { "style": { "height": "36px" } }).form; //创建窗体
  5724. _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); } }
  5725. break;
  5726. case "teacherClassRoom": //好友打开
  5727. _formdiv = new U.UF.UI.form(
  5728. "实时课堂",
  5729. $$("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 }), {
  5730. "id": "teacherClassRoom",
  5731. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5732. "onresize": function () { }
  5733. }, {
  5734. closecallback: function () { }
  5735. }, { "style": { "height": "36px" } }).form; //创建窗体
  5736. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classRoom.png)" }, "name": "实时课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5737. setTimeout(() => {
  5738. U.UF.F.windowZooming(_formdiv)
  5739. }, 0);
  5740. break;
  5741. }
  5742. } else if ((_type == 1 || _type == 4) && _oid == "91305d49-01ba-11ed-8c78-005056b86db5") {
  5743. switch (str) {
  5744. case "project": //好友打开
  5745. _formdiv = new U.UF.UI.form(
  5746. "课程管理",
  5747. $$("iframe", { "allow": "camera *; microphone *;display-capture;midi;encrypted-media;clipboard-write;clipboard-read", "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/course?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  5748. "id": "project",
  5749. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5750. "onresize": function () { }
  5751. }, {
  5752. closecallback: function () { }
  5753. }, { "style": { "height": "36px" } }).form; //创建窗体
  5754. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/project.png)" }, "name": "课程管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5755. break;
  5756. case "evaluate":
  5757. _formdiv = new U.UF.UI.form(
  5758. "学生评价",
  5759. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/works?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  5760. "id": "evaluate",
  5761. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5762. "onresize": function () { }
  5763. }, {
  5764. closecallback: function () { }
  5765. }, { "style": { "height": "36px" } }).form; //创建窗体
  5766. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/evaluation.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5767. break;
  5768. case "notice":
  5769. _formdiv = new U.UF.UI.form(
  5770. "通知公告",
  5771. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/notice?userid=" + _userid + "&org=" + _org }), {
  5772. "id": "notice",
  5773. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5774. "onresize": function () { }
  5775. }, {
  5776. closecallback: function () { }
  5777. }, { "style": { "height": "36px" } }).form; //创建窗体
  5778. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/news.png)" }, "name": "通知公告", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5779. break;
  5780. case "stuLibrary":
  5781. _formdiv = new U.UF.UI.form(
  5782. "学习资料",
  5783. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/studyLibrary?userid=" + _userid + "&org=" + _org }), {
  5784. "id": "stuLibrary",
  5785. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5786. "onresize": function () { }
  5787. }, {
  5788. closecallback: function () { }
  5789. }, { "style": { "height": "36px" } }).form; //创建窗体
  5790. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/stuLibrary.png)" }, "name": "学习资料", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5791. break;
  5792. case "program":
  5793. _formdiv = new U.UF.UI.form(
  5794. "编程平台",
  5795. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://x.cocorobo.cn" }), {
  5796. "id": "program",
  5797. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5798. "onresize": function () { }
  5799. }, {
  5800. closecallback: function () { }
  5801. }, { "style": { "height": "36px" } }).form; //创建窗体
  5802. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/myMessage.png)" }, "name": "编程平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5803. break;
  5804. case "whiteboard":
  5805. _formdiv = new U.UF.UI.form(
  5806. "电子白板",
  5807. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://beta.iwb.cocorobo.cn/" }), {
  5808. "id": "whiteboard",
  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/whiteBoard.png)" }, "name": "电子白板", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5815. break;
  5816. case "investigation":
  5817. _formdiv = new U.UF.UI.form(
  5818. "问卷调查",
  5819. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/ask?userid=" + _userid + "&org=" + _org }), {
  5820. "id": "investigation",
  5821. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5822. "onresize": function () { }
  5823. }, {
  5824. closecallback: function () { }
  5825. }, { "style": { "height": "36px" } }).form; //创建窗体
  5826. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/ask.png)" }, "name": "问卷调查", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5827. break;
  5828. case "mind":
  5829. _formdiv = new U.UF.UI.form(
  5830. "思维导图",
  5831. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/kityminder-editor/dist/index.html" }), { //"/jsmind/example/demo.html"
  5832. "id": "mind",
  5833. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5834. "onresize": function () { }
  5835. }, {
  5836. closecallback: function () { }
  5837. }, { "style": { "height": "36px" } }).form; //创建窗体
  5838. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mindMapping.png)" }, "name": "思维导图", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5839. break;
  5840. case "doc":
  5841. // U.MD.D.I.isRoom();
  5842. _formdiv = new U.UF.UI.form(
  5843. "协同文档",
  5844. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/Office/Word/WordEditArea.htm" }), {
  5845. "id": "doc",
  5846. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  5847. "onresize": function () { }
  5848. }, {
  5849. closecallback: function () { }
  5850. }, { "style": { "height": "36px" } }).form; //创建窗体
  5851. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  5852. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load();
  5853. })
  5854. _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); } }
  5855. break;
  5856. case "study":
  5857. _formdiv = new U.UF.UI.form(
  5858. "课程中心",
  5859. $$("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
  5860. "id": "study",
  5861. "style": { "width": "100%", "height": "100%", "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/study.png)" }, "name": "课程中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5867. break;
  5868. case "mindNetwork": //好友打开
  5869. _formdiv = new U.UF.UI.form(
  5870. "思维网格",
  5871. $$("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 }), {
  5872. "id": "mindNetwork",
  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/mindNetwork.png)" }, "name": "思维网格", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5879. break;
  5880. case "train": //好友打开
  5881. _formdiv = new U.UF.UI.form(
  5882. "训练平台",
  5883. $$("iframe", { "webkitallowfullscreen": "", "mozallowfullscreen": "", "allowfullscreen": "", "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": "https://xunlian.cocorobo.cn/" }), {
  5884. "id": "train",
  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/trainPlatform.png)" }, "name": "训练平台", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5891. break;
  5892. case "sys":
  5893. _formdiv = new U.UF.UI.form(
  5894. "目标管理",
  5895. $$("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 }), {
  5896. "id": "sys",
  5897. "style": { "width": "100%", "height": "100%", "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/evalua.png)" }, "name": "目标管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5903. break;
  5904. case "courseDesign":
  5905. _formdiv = new U.UF.UI.form(
  5906. "项目设计",
  5907. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "/course-design-vue" }), {
  5908. "id": "courseDesign",
  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/courseDesign.png)" }, "name": "项目设计", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  5915. break;
  5916. }
  5917. } else if (!_type) {
  5918. switch (str) {
  5919. case "my":
  5920. _formdiv = new U.UF.UI.form(
  5921. "我的资料",
  5922. $$("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 }), {
  5923. "id": "my",
  5924. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  5925. "onresize": function () { }
  5926. }, {
  5927. closecallback: function () { }
  5928. }, { "style": { "height": "36px" } }).form; //创建窗体
  5929. _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); } }
  5930. break;
  5931. }
  5932. }
  5933. switch (str) {
  5934. // AIprogram2 AI体验 aihub.cocorobo.cn
  5935. // Pythonprogram Python编程 python-blockly.cocorobo.cn
  5936. // AIprogram AI编程 ai-blockly.cocorobo.cn
  5937. case "formulaEdi": //公式编辑
  5938. _formdiv = new U.UF.UI.form(
  5939. "公式编辑",
  5940. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.latexlive.com/" }), {
  5941. "id": "formulaEdi",
  5942. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5943. "onresize": function () { }
  5944. }, {
  5945. closecallback: function () { }
  5946. }, { "style": { "height": "36px" } }).form; //创建窗体
  5947. _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); } }
  5948. break;
  5949. case "molStr": //分子结构
  5950. _formdiv = new U.UF.UI.form(
  5951. "分子结构",
  5952. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://molview.org/" }), {
  5953. "id": "molStr",
  5954. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5955. "onresize": function () { }
  5956. }, {
  5957. closecallback: function () { }
  5958. }, { "style": { "height": "36px" } }).form; //创建窗体
  5959. _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); } }
  5960. break;
  5961. case "timeAxis": //时间轴
  5962. _formdiv = new U.UF.UI.form(
  5963. "时间轴",
  5964. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://time.graphics/editor" }), {
  5965. "id": "timeAxis",
  5966. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5967. "onresize": function () { }
  5968. }, {
  5969. closecallback: function () { }
  5970. }, { "style": { "height": "36px" } }).form; //创建窗体
  5971. _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); } }
  5972. break;
  5973. case "AIprogram2": //AI体验
  5974. _formdiv = new U.UF.UI.form(
  5975. "AI体验",
  5976. $$("iframe", { "frameborder": "no", "allow": "camera", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://aihub.cocorobo.cn/" }), {
  5977. "id": "AIprogram2",
  5978. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5979. "onresize": function () { }
  5980. }, {
  5981. closecallback: function () { }
  5982. }, { "style": { "height": "36px" } }).form; //创建窗体
  5983. _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); } }
  5984. break;
  5985. case "Pythonprogram": //python编程
  5986. _formdiv = new U.UF.UI.form(
  5987. "Python编程",
  5988. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://python-blockly.cocorobo.cn/" }), {
  5989. "id": "Pythonprogram",
  5990. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  5991. "onresize": function () { }
  5992. }, {
  5993. closecallback: function () { }
  5994. }, { "style": { "height": "36px" } }).form; //创建窗体
  5995. _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); } }
  5996. break;
  5997. case "AIprogram": //ai编程
  5998. _formdiv = new U.UF.UI.form(
  5999. "AI编程平台",
  6000. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://ai-blockly.cocorobo.cn/?lang=zh-hans" }), {
  6001. "id": "AIprogram",
  6002. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6003. "onresize": function () { }
  6004. }, {
  6005. closecallback: function () { }
  6006. }, { "style": { "height": "36px" } }).form; //创建窗体
  6007. _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); } }
  6008. break;
  6009. case "CocoPi": //CocoPi
  6010. _formdiv = new U.UF.UI.form(
  6011. "CocoPi",
  6012. $$("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" }), {
  6013. "id": "CocoPi",
  6014. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6015. "onresize": function () { }
  6016. }, {
  6017. closecallback: function () { }
  6018. }, { "style": { "height": "36px" } }).form; //创建窗体
  6019. _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); } }
  6020. break;
  6021. case "Wood": //Wood
  6022. _formdiv = new U.UF.UI.form(
  6023. "海龟编程",
  6024. $$("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/" }), {
  6025. "id": "Wood",
  6026. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6027. "onresize": function () { }
  6028. }, {
  6029. closecallback: function () { }
  6030. }, { "style": { "height": "36px" } }).form; //创建窗体
  6031. _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); } }
  6032. break;
  6033. case "car": //模拟驾驶
  6034. _formdiv = new U.UF.UI.form(
  6035. "模拟驾驶",
  6036. $$("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/" }), {
  6037. "id": "car",
  6038. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6039. "onresize": function () { }
  6040. }, {
  6041. closecallback: function () { }
  6042. }, { "style": { "height": "36px" } }).form; //创建窗体
  6043. _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); } }
  6044. break;
  6045. case "lineSearch": //路径搜索
  6046. _formdiv = new U.UF.UI.form(
  6047. "路径搜索",
  6048. $$("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/" }), {
  6049. "id": "lineSearch",
  6050. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6051. "onresize": function () { }
  6052. }, {
  6053. closecallback: function () { }
  6054. }, { "style": { "height": "36px" } }).form; //创建窗体
  6055. _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); } }
  6056. break;
  6057. case "deepLearning": //深度学习
  6058. _formdiv = new U.UF.UI.form(
  6059. "深度学习",
  6060. $$("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/#" }), {
  6061. "id": "deepLearning",
  6062. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6063. "onresize": function () { }
  6064. }, {
  6065. closecallback: function () { }
  6066. }, { "style": { "height": "36px" } }).form; //创建窗体
  6067. _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); } }
  6068. break;
  6069. case "allHistory": //深度学习
  6070. _formdiv = new U.UF.UI.form(
  6071. "全历史",
  6072. $$("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/" }), {
  6073. "id": "allHistory",
  6074. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6075. "onresize": function () { }
  6076. }, {
  6077. closecallback: function () { }
  6078. }, { "style": { "height": "36px" } }).form; //创建窗体
  6079. _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); } }
  6080. break;
  6081. case "chatPDF": //ai编程
  6082. _formdiv = new U.UF.UI.form(
  6083. "chatPDF",
  6084. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://www.chatpdf.com" }), {
  6085. "id": "chatPDF",
  6086. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6087. "onresize": function () { }
  6088. }, {
  6089. closecallback: function () { }
  6090. }, { "style": { "height": "36px" } }).form; //创建窗体
  6091. _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); } }
  6092. break;
  6093. case "resources": //国家教育
  6094. _formdiv = new U.UF.UI.form(
  6095. "国家教育",
  6096. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://so.eduyun.cn/synResource" }), {
  6097. "id": "resources",
  6098. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6099. "onresize": function () { }
  6100. }, {
  6101. closecallback: function () { }
  6102. }, { "style": { "height": "36px" } }).form; //创建窗体
  6103. _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); } }
  6104. break;
  6105. case "codeEdit": //源码编辑
  6106. _formdiv = new U.UF.UI.form(
  6107. "源码编辑",
  6108. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://kitten.codemao.cn/" }), {
  6109. "id": "codeEdit",
  6110. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6111. "onresize": function () { }
  6112. }, {
  6113. closecallback: function () { }
  6114. }, { "style": { "height": "36px" } }).form; //创建窗体
  6115. _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); } }
  6116. break; //
  6117. case "MindMap": //MindMap
  6118. _formdiv = new U.UF.UI.form(
  6119. "MindMap",
  6120. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//cloud.cocorobo.cn/mind/" }), {
  6121. "id": "MindMap",
  6122. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6123. "onresize": function () { }
  6124. }, {
  6125. closecallback: function () { }
  6126. }, { "style": { "height": "36px" } }).form; //创建窗体
  6127. _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); } }
  6128. break;
  6129. case "netWorkPanel": //netWorkPanel
  6130. _formdiv = new U.UF.UI.form(
  6131. "netWorkPanel",
  6132. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//www.netpad.net.cn/svg.html" }), {
  6133. "id": "netWorkPanel",
  6134. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6135. "onresize": function () { }
  6136. }, {
  6137. closecallback: function () { }
  6138. }, { "style": { "height": "36px" } }).form; //创建窗体
  6139. _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); } }
  6140. break;
  6141. case "GeoGebra": //GeoGebra
  6142. _formdiv = new U.UF.UI.form(
  6143. "GeoGebra",
  6144. $$("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" }), {
  6145. "id": "GeoGebra",
  6146. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6147. "onresize": function () { }
  6148. }, {
  6149. closecallback: function () { }
  6150. }, { "style": { "height": "36px" } }).form; //创建窗体
  6151. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/GeoGebra.png)" }, "name": "GeoGebra", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6152. break;
  6153. case "translation": //翻译
  6154. _formdiv = new U.UF.UI.form(
  6155. "翻译",
  6156. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//dict.youdao.com/" }), {
  6157. "id": "translation",
  6158. "style": { "width": "80%", "height": "90%", "overflow": 'hidden' },
  6159. "onresize": function () { }
  6160. }, {
  6161. closecallback: function () { }
  6162. }, { "style": { "height": "36px" } }).form; //创建窗体
  6163. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/translation.png)" }, "name": "翻译", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6164. break;
  6165. case "mohe": //魔盒
  6166. _formdiv = new U.UF.UI.form(
  6167. "魔盒识字",
  6168. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//games.cocorobo.cn/view/index.html#/" }), {
  6169. "id": "mohe",
  6170. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6171. "onresize": function () { }
  6172. }, {
  6173. closecallback: function () { }
  6174. }, { "style": { "height": "36px" } }).form; //创建窗体
  6175. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/mohe.png)" }, "name": "魔盒识字", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6176. break;
  6177. case "24game": //24点
  6178. _formdiv = new U.UF.UI.form(
  6179. "24点",
  6180. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//24.cocorobo.cn/#/index" }), {
  6181. "id": "24game",
  6182. "style": { "width": "375px", "height": "667px", "overflow": 'hidden' },
  6183. "onresize": function () { }
  6184. }, {
  6185. closecallback: function () { }
  6186. }, { "style": { "height": "36px" } }).form; //创建窗体
  6187. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/24game.png)" }, "name": "24点", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6188. break;
  6189. case "case":
  6190. _formdiv = new U.UF.UI.form(
  6191. "课程进展",
  6192. $$("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 }), {
  6193. "id": "case",
  6194. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6195. "onresize": function () { }
  6196. }, {
  6197. closecallback: function () { }
  6198. }, { "style": { "height": "36px" } }).form; //创建窗体
  6199. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/case.png)" }, "name": "课程进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6200. break;
  6201. case "snf":
  6202. _formdiv = new U.UF.UI.form(
  6203. "赛诺梵",
  6204. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "//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" }), {
  6205. "id": "snf",
  6206. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6207. "onresize": function () { }
  6208. }, {
  6209. closecallback: function () { }
  6210. }, { "style": { "height": "36px" } }).form; //创建窗体
  6211. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/snf.png)" }, "name": "赛诺梵", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6212. break;
  6213. case "hanFamily":
  6214. _formdiv = new U.UF.UI.form(
  6215. "汉字家族",
  6216. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/hzjz" }), {
  6217. "id": "hanFamily",
  6218. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6219. "onresize": function () { }
  6220. }, {
  6221. closecallback: function () { }
  6222. }, { "style": { "height": "36px" } }).form; //创建窗体
  6223. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanFamily.png)" }, "name": "汉字家族", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6224. break;
  6225. case "hanClassics":
  6226. _formdiv = new U.UF.UI.form(
  6227. "国学经典",
  6228. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/gxjd" }), {
  6229. "id": "hanClassics",
  6230. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6231. "onresize": function () { }
  6232. }, {
  6233. closecallback: function () { }
  6234. }, { "style": { "height": "36px" } }).form; //创建窗体
  6235. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClassics.png)" }, "name": "国学经典", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6236. break;
  6237. case "hanTraining":
  6238. _formdiv = new U.UF.UI.form(
  6239. "笔画训练",
  6240. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/bhxl" }), {
  6241. "id": "hanTraining",
  6242. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6243. "onresize": function () { }
  6244. }, {
  6245. closecallback: function () { }
  6246. }, { "style": { "height": "36px" } }).form; //创建窗体
  6247. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanTraining.png)" }, "name": "笔画训练", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6248. break;
  6249. case "hanClass":
  6250. _formdiv = new U.UF.UI.form(
  6251. "书法课堂",
  6252. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/sfkt" }), {
  6253. "id": "hanClass",
  6254. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6255. "onresize": function () { }
  6256. }, {
  6257. closecallback: function () { }
  6258. }, { "style": { "height": "36px" } }).form; //创建窗体
  6259. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/hanClass.png)" }, "name": "书法课堂", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6260. break;
  6261. case "han":
  6262. _formdiv = new U.UF.UI.form(
  6263. "汉字宫",
  6264. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://school.hanzigon.cn/?appid=734714090237947#/home" }), {
  6265. "id": "han",
  6266. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6267. "onresize": function () { }
  6268. }, {
  6269. closecallback: function () { }
  6270. }, { "style": { "height": "36px" } }).form; //创建窗体
  6271. _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); } }
  6272. break;
  6273. case "projectGM": //课程管理
  6274. _formdiv = new U.UF.UI.form(
  6275. "课程管理",
  6276. $$("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 }), {
  6277. "id": "projectGM",
  6278. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6279. "onresize": function () { }
  6280. }, {
  6281. closecallback: function () { }
  6282. }, { "style": { "height": "36px" } }).form; //创建窗体
  6283. _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); } }
  6284. break;
  6285. case "studyGM": //课程中心
  6286. _formdiv = new U.UF.UI.form(
  6287. "课程中心",
  6288. $$("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
  6289. "id": "study",
  6290. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6291. "onresize": function () { }
  6292. }, {
  6293. closecallback: function () { }
  6294. }, { "style": { "height": "36px" } }).form; //创建窗体
  6295. _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); } }
  6296. break;
  6297. // studentGM
  6298. case "studentGM": //学生管理
  6299. _formdiv = new U.UF.UI.form(
  6300. "学生管理",
  6301. $$("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 }), {
  6302. "id": "studentGM",
  6303. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6304. "onresize": function () { }
  6305. }, {
  6306. closecallback: function () { }
  6307. }, { "style": { "height": "36px" } }).form; //创建窗体
  6308. _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); } }
  6309. break;
  6310. case "evaluateGM": //学生评价
  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/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6314. "id": "evaluateGM",
  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/gm/evaluate.png)" }, "name": "学生评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6321. break;
  6322. // classGM
  6323. case "classGM": //班级管理
  6324. _formdiv = new U.UF.UI.form(
  6325. "班级管理",
  6326. $$("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 }), {
  6327. "id": "classGM",
  6328. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6329. "onresize": function () { }
  6330. }, {
  6331. closecallback: function () { }
  6332. }, { "style": { "height": "36px" } }).form; //创建窗体
  6333. _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); } }
  6334. break;
  6335. // dataGM
  6336. case "dataGM":
  6337. _formdiv = new U.UF.UI.form(
  6338. "我的资料",
  6339. $$("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 }), {
  6340. "id": "dataGM",
  6341. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6342. "onresize": function () { }
  6343. }, {
  6344. closecallback: function () { }
  6345. }, { "style": { "height": "36px" } }).form; //创建窗体
  6346. _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); } }
  6347. break;
  6348. // caseGM
  6349. case "caseGM": //课程进展
  6350. _formdiv = new U.UF.UI.form(
  6351. "课程进展",
  6352. $$("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 }), {
  6353. "id": "caseGM",
  6354. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6355. "onresize": function () { }
  6356. }, {
  6357. closecallback: function () { }
  6358. }, { "style": { "height": "36px" } }).form; //创建窗体
  6359. _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); } }
  6360. break;
  6361. // meterialGM
  6362. case "meterialGM": //素材库
  6363. _formdiv = new U.UF.UI.form(
  6364. "素材库",
  6365. $$("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 }), {
  6366. "id": "meterialGM",
  6367. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6368. "onresize": function () { }
  6369. }, {
  6370. closecallback: function () { }
  6371. }, { "style": { "height": "36px" } }).form; //创建窗体
  6372. _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); } }
  6373. break;
  6374. // evaluateSGM
  6375. case "evaluateSGM": //我的评价
  6376. _formdiv = new U.UF.UI.form(
  6377. "我的评价",
  6378. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-student-table/dist/#/worksGM?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6379. "id": "evaluateSGM",
  6380. "style": { "width": "70%", "height": "90%", "overflow": 'hidden' },
  6381. "onresize": function () { }
  6382. }, {
  6383. closecallback: function () { }
  6384. }, { "style": { "height": "36px" } }).form; //创建窗体
  6385. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gm/evaluate.png)" }, "name": "我的评价", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6386. break;
  6387. case "jupyter": //jupyter
  6388. _formdiv = new U.UF.UI.form(
  6389. "jupyter",
  6390. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://jupyter.cocorobo.cn/" }), {
  6391. "id": "jupyter",
  6392. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6393. "onresize": function () { }
  6394. }, {
  6395. closecallback: function () { }
  6396. }, { "style": { "height": "36px" } }).form; //创建窗体
  6397. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/jupyter.png)" }, "name": "jupyter", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6398. break;
  6399. case "number": //数字实验室
  6400. _formdiv = new U.UF.UI.form(
  6401. "数字实验室",
  6402. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cocorobo.cn/cloud/iot/events" }), {
  6403. "id": "number",
  6404. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6405. "onresize": function () { }
  6406. }, {
  6407. closecallback: function () { }
  6408. }, { "style": { "height": "36px" } }).form; //创建窗体
  6409. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/number.png)" }, "name": "数字实验室", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6410. break;
  6411. case "studentCourse": //项目管理 学生
  6412. _formdiv = new U.UF.UI.form(
  6413. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6414. $$("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 }), {
  6415. "id": "studentCourse",
  6416. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6417. "onresize": function () { }
  6418. }, {
  6419. closecallback: function () { }
  6420. }, { "style": { "height": "36px" } }).form; //创建窗体
  6421. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6422. break;
  6423. case "studentCourseS": //项目管理 老师
  6424. _formdiv = new U.UF.UI.form(
  6425. (_org == "150e3120-9195-11ed-b13d-005056b86db5") ? "师生项目" : "项目管理",
  6426. $$("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 }), {
  6427. "id": "studentCourseS",
  6428. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6429. "onresize": function () { }
  6430. }, {
  6431. closecallback: function () { }
  6432. }, { "style": { "height": "36px" } }).form; //创建窗体
  6433. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentCourse.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6434. break;
  6435. case "studentIndex": //项目中心
  6436. _formdiv = new U.UF.UI.form(
  6437. "项目中心",
  6438. $$("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 }), {
  6439. "id": "studentIndex",
  6440. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6441. "onresize": function () { }
  6442. }, {
  6443. closecallback: function () { }
  6444. }, { "style": { "height": "36px" } }).form; //创建窗体
  6445. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/studentIndex.png)" }, "name": "项目管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6446. break;
  6447. case "CaseDesignS":
  6448. _formdiv = new U.UF.UI.form(
  6449. "项目进展",
  6450. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/CaseDesignS?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6451. "id": "case",
  6452. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6453. "onresize": function () { }
  6454. }, {
  6455. closecallback: function () { }
  6456. }, { "style": { "height": "36px" } }).form; //创建窗体
  6457. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/CaseDesignS.png)" }, "name": "项目进展", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6458. break;
  6459. case "tcStudent": //腾讯学生管理
  6460. _formdiv = new U.UF.UI.form(
  6461. "学生管理",
  6462. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcStudent?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6463. "id": "tcStudent",
  6464. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6465. "onresize": function () { }
  6466. }, {
  6467. closecallback: function () { }
  6468. }, { "style": { "height": "36px" } }).form; //创建窗体
  6469. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/student.png)" }, "name": "学生管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6470. break;
  6471. case "tcSchool": //腾讯学校管理
  6472. _formdiv = new U.UF.UI.form(
  6473. "学校管理",
  6474. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0; width:100%; height:100%;" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/tcSchool?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6475. "id": "tcSchool",
  6476. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6477. "onresize": function () { }
  6478. }, {
  6479. closecallback: function () { }
  6480. }, { "style": { "height": "36px" } }).form; //创建窗体
  6481. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/school.png)" }, "name": "学校管理", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6482. break;
  6483. case "tcTeacher": //腾讯学校管理
  6484. _formdiv = new U.UF.UI.form(
  6485. "教师管理",
  6486. $$("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 }), {
  6487. "id": "tcTeacher",
  6488. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6489. "onresize": function () { }
  6490. }, {
  6491. closecallback: function () { }
  6492. }, { "style": { "height": "36px" } }).form; //创建窗体
  6493. _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); } }
  6494. break;
  6495. case "teacher":
  6496. _formdiv = new U.UF.UI.form(
  6497. "教师管理",
  6498. $$("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 }), {
  6499. "id": "teacher",
  6500. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6501. "onresize": function () { }
  6502. }, {
  6503. closecallback: function () { }
  6504. }, { "style": { "height": "36px" } }).form; //创建窗体
  6505. _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); } }
  6506. break;
  6507. case "tcData": //腾讯我的资料
  6508. _formdiv = new U.UF.UI.form(
  6509. "我的资料",
  6510. $$("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 }), {
  6511. "id": "tcData",
  6512. "style": { "width": "42%", "height": "90%", "overflow": 'hidden' },
  6513. "onresize": function () { }
  6514. }, {
  6515. closecallback: function () { }
  6516. }, { "style": { "height": "36px" } }).form; //创建窗体
  6517. _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); } }
  6518. break;
  6519. case "tcNotice": //腾讯消息通知
  6520. _formdiv = new U.UF.UI.form(
  6521. "消息通知",
  6522. $$("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 }), {
  6523. "id": "tcNotice",
  6524. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6525. "onresize": function () { }
  6526. }, {
  6527. closecallback: function () { }
  6528. }, { "style": { "height": "36px" } }).form; //创建窗体
  6529. _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); } }
  6530. break;
  6531. case "myReport": //好友打开
  6532. _formdiv = new U.UF.UI.form(
  6533. "我的评价",
  6534. $$("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 }), {
  6535. "id": "myReport",
  6536. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6537. "onresize": function () { }
  6538. }, {
  6539. closecallback: function () { }
  6540. }, { "style": { "height": "36px" } }).form; //创建窗体
  6541. _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); } }
  6542. break;
  6543. case "learnAna": //好友打开
  6544. _formdiv = new U.UF.UI.form(
  6545. "学习分析",
  6546. $$("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 }), {
  6547. "id": "learnAna",
  6548. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6549. "onresize": function () { }
  6550. }, {
  6551. closecallback: function () { }
  6552. }, { "style": { "height": "36px" } }).form; //创建窗体
  6553. _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); } }
  6554. break;
  6555. case "AIChat": //AI共创
  6556. _formdiv = new U.UF.UI.form(
  6557. "AI共创",
  6558. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/aichat/" }), {
  6559. "id": "AIChat",
  6560. "style": { "width": "550px", "height": "550px", "bottom": "30px", "right": "30px", "overflow": 'hidden' },
  6561. "onresize": function () { }
  6562. }, {
  6563. istop: true,
  6564. closecallback: function () { $("#aichat_icon").remove(); },
  6565. narrowcallback: function () {
  6566. if (!$("#aichat_icon")[0]) {
  6567. $$("div", { "id": "aichat_icon", "className": "U_MD_D_KO_AI", "onclick": function () { U.UF.F.topWindow(_formdiv); } }, $("#U_MD_D")[0])
  6568. }
  6569. },
  6570. }, { "style": { "height": "36px" } }).form; //创建窗体
  6571. _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); } }
  6572. break;
  6573. case "ainew": //AI共创
  6574. _formdiv = new U.UF.UI.form(
  6575. "AI协同",
  6576. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ainew/" }), {
  6577. "id": "ainew",
  6578. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6579. "onresize": function () { }
  6580. }, {
  6581. closecallback: function () { }
  6582. }, { "style": { "height": "36px" } }).form; //创建窗体
  6583. _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); } }
  6584. break;
  6585. case "gpt4": //gpt4
  6586. _formdiv = new U.UF.UI.form(
  6587. "AI助手",
  6588. $$("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 }), {
  6589. "id": "gpt4",
  6590. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6591. "onresize": function () { }
  6592. }, {
  6593. closecallback: function () { }
  6594. }, { "style": { "height": "36px" } }).form; //创建窗体
  6595. _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); } }
  6596. break;
  6597. case "aigpt": //gpt4
  6598. _formdiv = new U.UF.UI.form(
  6599. "AI助手+",
  6600. $$("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 }), {
  6601. "id": "aigpt",
  6602. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6603. "onresize": function () { }
  6604. }, {
  6605. closecallback: function () {
  6606. $("iframe", _formdiv)[0].contentWindow.app.log_out();
  6607. }
  6608. }, { "style": { "height": "36px" } }).form; //创建窗体
  6609. _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); } }
  6610. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  6611. $("iframe", _formdiv)[0].contentWindow.app.log_in();
  6612. })
  6613. break;
  6614. case "aiKnowledge": //aiKnowledge
  6615. _formdiv = new U.UF.UI.form(
  6616. "知识建构",
  6617. $$("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 }), {
  6618. "id": "aiKnowledge",
  6619. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6620. "onresize": function () { }
  6621. }, {
  6622. closecallback: function () { }
  6623. }, { "style": { "height": "36px" } }).form; //创建窗体
  6624. _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); } }
  6625. break;
  6626. case "futureClass": //AI共创
  6627. _formdiv = new U.UF.UI.form(
  6628. "协同建构",
  6629. $$("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
  6630. "id": "synergyCourse",
  6631. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6632. "onresize": function () { }
  6633. }, {
  6634. closecallback: function () {
  6635. $("iframe", _formdiv)[0].contentWindow.loginout();
  6636. }
  6637. }, { "style": { "height": "36px" } }).form; //创建窗体
  6638. _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); } }
  6639. break;
  6640. case "aiagent": //ai agent
  6641. _formdiv = new U.UF.UI.form(
  6642. "AI Agent",
  6643. $$("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" }), {
  6644. "id": "AIAgent",
  6645. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6646. "onresize": function () { }
  6647. }, {
  6648. closecallback: function () { }
  6649. }, { "style": { "height": "36px" } }).form; //创建窗体
  6650. _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); } }
  6651. break;
  6652. case "dataBoard": //数据看板
  6653. _formdiv = new U.UF.UI.form(
  6654. "数据看板",
  6655. $$("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 }), {
  6656. "id": "dataBoard",
  6657. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6658. "onresize": function () { }
  6659. }, {
  6660. closecallback: function () { }
  6661. }, { "style": { "height": "36px" } }).form; //创建窗体
  6662. _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); } }
  6663. break;
  6664. case "dataBoardSies": //数据融合
  6665. _formdiv = new U.UF.UI.form(
  6666. "数据融合",
  6667. $$("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 }), {
  6668. "id": "dataBoardSies",
  6669. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6670. "onresize": function () { }
  6671. }, {
  6672. closecallback: function () { }
  6673. }, { "style": { "height": "36px" } }).form; //创建窗体
  6674. _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); } }
  6675. break;
  6676. case "dataBoardNew": //数据看板
  6677. _formdiv = new U.UF.UI.form(
  6678. "综合看板",
  6679. $$("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 }), {
  6680. "id": "dataBoardNew",
  6681. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6682. "onresize": function () { }
  6683. }, {
  6684. closecallback: function () { }
  6685. }, { "style": { "height": "36px" } }).form; //创建窗体
  6686. _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); } }
  6687. break;
  6688. case "dataBoardTest": //数据看板
  6689. _formdiv = new U.UF.UI.form(
  6690. "评测看板",
  6691. $$("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 }), {
  6692. "id": "dataBoardTest",
  6693. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6694. "onresize": function () { }
  6695. }, {
  6696. closecallback: function () { }
  6697. }, { "style": { "height": "36px" } }).form; //创建窗体
  6698. _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); } }
  6699. break;
  6700. case "AIAnalyse": //AI共创
  6701. _formdiv = new U.UF.UI.form(
  6702. "AI分析",
  6703. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": "https://cloud.cocorobo.cn/ai/" }), {
  6704. "id": "AIAnalyse",
  6705. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6706. "onresize": function () { }
  6707. }, {
  6708. closecallback: function () { }
  6709. }, { "style": { "height": "36px" } }).form; //创建窗体
  6710. _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); } }
  6711. break;
  6712. case "studioCourse": //AI共创
  6713. _formdiv = new U.UF.UI.form(
  6714. "工作管理",
  6715. $$("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 }), {
  6716. "id": "studioCourse",
  6717. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6718. "onresize": function () { }
  6719. }, {
  6720. closecallback: function () { }
  6721. }, { "style": { "height": "36px" } }).form; //创建窗体
  6722. _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); } }
  6723. break;
  6724. case "studioIndex": //AI共创
  6725. _formdiv = new U.UF.UI.form(
  6726. "工作中心",
  6727. $$("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 }), {
  6728. "id": "studioIndex",
  6729. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6730. "onresize": function () { }
  6731. }, {
  6732. closecallback: function () { }
  6733. }, { "style": { "height": "36px" } }).form; //创建窗体
  6734. _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); } }
  6735. break;
  6736. case "source":
  6737. _formdiv = new U.UF.UI.form(
  6738. "教学资源",
  6739. $$("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 }), {
  6740. "id": "source",
  6741. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6742. "onresize": function () { }
  6743. }, {
  6744. closecallback: function () { }
  6745. }, { "style": { "height": "36px" } }).form; //创建窗体
  6746. _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); } }
  6747. break;
  6748. case "testTeacher":
  6749. _formdiv = new U.UF.UI.form(
  6750. "教师管理",
  6751. $$("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 }), {
  6752. "id": "testTeacher",
  6753. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6754. "onresize": function () { }
  6755. }, {
  6756. closecallback: function () { }
  6757. }, { "style": { "height": "36px" } }).form; //创建窗体
  6758. _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); } }
  6759. break;
  6760. case "testStudent":
  6761. _formdiv = new U.UF.UI.form(
  6762. "教师中心",
  6763. $$("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 }), {
  6764. "id": "testStudent",
  6765. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6766. "onresize": function () { }
  6767. }, {
  6768. closecallback: function () { }
  6769. }, { "style": { "height": "36px" } }).form; //创建窗体
  6770. _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); } }
  6771. break;
  6772. case "testTeacherSies":
  6773. _formdiv = new U.UF.UI.form(
  6774. "教师管理",
  6775. $$("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 }), {
  6776. "id": "testTeacherSies",
  6777. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6778. "onresize": function () { }
  6779. }, {
  6780. closecallback: function () { }
  6781. }, { "style": { "height": "36px" } }).form; //创建窗体
  6782. _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); } }
  6783. break;
  6784. case "testStudentSies":
  6785. _formdiv = new U.UF.UI.form(
  6786. "教师中心",
  6787. $$("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 }), {
  6788. "id": "testStudentSies",
  6789. "style": { "width": "80%", "height": "80%", "overflow": 'hidden' },
  6790. "onresize": function () { }
  6791. }, {
  6792. closecallback: function () { }
  6793. }, { "style": { "height": "36px" } }).form; //创建窗体
  6794. _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); } }
  6795. break;
  6796. case "ytpbl": //消息通知
  6797. _formdiv = new U.UF.UI.form(
  6798. "案例征集",
  6799. $$("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 }), {
  6800. "id": "ytpbl",
  6801. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6802. "onresize": function () { }
  6803. }, {
  6804. closecallback: function () { }
  6805. }, { "style": { "height": "36px" } }).form; //创建窗体
  6806. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/gpbl2.png)" }, "name": "案例征集", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6807. // 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");
  6808. break;
  6809. case "aiCourseResource": //人工智能窗体
  6810. _formdiv = new U.UF.UI.form(
  6811. false,
  6812. $$("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 }), {
  6813. "id": "aiCourseResource",
  6814. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6815. "onresize": function () { },
  6816. "isdrag": false,
  6817. }, {
  6818. closecallback: function () { }
  6819. }, { "style": { "height": "36px" } }).form; //创建窗体
  6820. _taskbar = ''
  6821. break;
  6822. case "szdjgCocooroboX": //图形化编程
  6823. _formdiv = new U.UF.UI.form(
  6824. "图形化编程",
  6825. $$("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" }), {
  6826. "id": "szdjgCocooroboX",
  6827. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6828. "onresize": function () { }
  6829. }, {
  6830. closecallback: function () { }
  6831. }, { "style": { "height": "36px" } }).form; //创建窗体
  6832. _taskbar = ''
  6833. break;
  6834. case "szdjgPython": //python编程
  6835. _formdiv = new U.UF.UI.form(
  6836. "Python编程",
  6837. $$("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" }), {
  6838. "id": "szdjgPython",
  6839. "style": { "width": "100%", "height": "100%", "overflow": 'hidden' },
  6840. "onresize": function () { }
  6841. }, {
  6842. closecallback: function () { }
  6843. }, { "style": { "height": "36px" } }).form; //创建窗体
  6844. _taskbar = ''
  6845. break;
  6846. case "Record":
  6847. _formdiv = new U.UF.UI.form(
  6848. "观察记录",
  6849. $$("iframe", { "frameborder": "no", "border": "0", "scrolling ": "no", "style": { "cssText": "border:0;width:100%;height:100%" }, "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/record?userid=" + _userid + "&oid=" + _oid + "&org=" + _org }), {
  6850. "id": "Record",
  6851. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6852. "onresize": function () { }
  6853. }, {
  6854. closecallback: function () { }
  6855. }, { "style": { "height": "36px" } }).form; //创建窗体
  6856. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/Record.png)" }, "name": "观察记录", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6857. break;
  6858. case "aigptCourse":
  6859. _formdiv = new U.UF.UI.form(
  6860. "AI智能体",
  6861. $$("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' }), {
  6862. "id": "aigptCourse",
  6863. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6864. "onresize": function () { }
  6865. }, {
  6866. closecallback: function () { }
  6867. }, { "style": { "height": "36px" } }).form; //创建窗体
  6868. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/aigptCourse.png)" }, "name": "AI智能体", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6869. break;
  6870. case "classroomObservation":
  6871. _formdiv = new U.UF.UI.form(
  6872. "课堂观察",
  6873. $$("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 }), {
  6874. "id": "classroomObservation",
  6875. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6876. "onresize": function () { }
  6877. }, {
  6878. closecallback: function () { }
  6879. }, { "style": { "height": "36px" } }).form; //创建窗体
  6880. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/classroomObservation.png)" }, "name": "课堂观察", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6881. $("iframe", _formdiv)[0].contentWindow.location.reload()
  6882. break;
  6883. case "pblCourse":
  6884. _formdiv = new U.UF.UI.form(
  6885. "学生PBL",
  6886. $$("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 }), {
  6887. "id": "pblCourse",
  6888. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6889. "onresize": function () { }
  6890. }, {
  6891. closecallback: function () { }
  6892. }, { "style": { "height": "36px" } }).form; //创建窗体
  6893. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/pblCourse.png)" }, "name": "学生PBL", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6894. break;
  6895. case "appStore":
  6896. _formdiv = new U.UF.UI.form(
  6897. "应用中心",
  6898. $$("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/#/appStore?userid=" + _userid + "&oid=" + _oid + "&org=" + _org + "&role=" + _role }), {
  6899. "id": "pblCourse",
  6900. "style": { "width": "90%", "height": "90%", "overflow": 'hidden' },
  6901. "onresize": function () { }
  6902. }, {
  6903. closecallback: function () { }
  6904. }, { "style": { "height": "36px" } }).form; //创建窗体
  6905. _taskbar = { "id": str + _formdiv.id, "style": { "backgroundImage": "url(/img/icon/appStore.png)" }, "name": "应用中心", "forms": _formdiv, "click": function () { U.MD.D.I.openApplication(str, obj, info); } }
  6906. break;
  6907. }
  6908. //U.MD.D.I.openClick(str);
  6909. //如果有任务栏信息
  6910. if (_taskbar) {
  6911. U.MD.D.T.taskbar(_taskbar); //创建任务处理
  6912. }
  6913. }
  6914. // U.MD.D.I.openClick = function(str){
  6915. // var click = '';
  6916. // switch(str){
  6917. // case 'friend':
  6918. // click = '我的好友';
  6919. // break;
  6920. // case 'domain':
  6921. // click = '域名管理';
  6922. // break;
  6923. // case 'disk':
  6924. // click = '我的云盘';
  6925. // break;
  6926. // case 'word':
  6927. // click = 'Word';
  6928. // break;
  6929. // case 'excel':
  6930. // click = 'Execl';
  6931. // break;
  6932. // case 'txt':
  6933. // click = '文本文件';
  6934. // break;
  6935. // case 'lookupFriend':
  6936. // click = '查找好友';
  6937. // break;
  6938. // case 'ftp':
  6939. // click = 'FTP';
  6940. // break;
  6941. // case 'group':
  6942. // click = '群组';
  6943. // break;
  6944. // case 'set':
  6945. // click = '我的设置';
  6946. // break;
  6947. // case 'systemSet':
  6948. // click = '系统设置';
  6949. // break;
  6950. // case 'boomYun':
  6951. // click = '互联办公';
  6952. // break;
  6953. // case 'xz':
  6954. // click = '云端下载';
  6955. // break;
  6956. // case 'client':
  6957. // click = '有思浏览器';
  6958. // break;
  6959. // case 'backEndProgramming':
  6960. // click = '在线后台编程';
  6961. // break;
  6962. // case 'frontEndProgramming':
  6963. // click = '在线前端编程';
  6964. // break;
  6965. // default: break;
  6966. // }
  6967. // if(U.MD.D.I.Ip && click){
  6968. // var clickUrl = ':12588/useClick.php?name=' + click + '&ip=' + U.MD.D.I.Ip;
  6969. // U.MD.D.I.Mysqlrequest(clickUrl,function(data){
  6970. // })
  6971. // }
  6972. // }
  6973. /**
  6974. *函数作用:ajax简易函数,使用post格式
  6975. *@param url {data} 后台地址
  6976. *@param data {data} 参数json
  6977. *@param fn {data} 回调函数
  6978. *
  6979. */
  6980. // U.MD.D.I.Mysqlrequest = function(url,fn){
  6981. // var xhr = new XMLHttpRequest();
  6982. // xhr.open("GET",url,true);
  6983. // xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  6984. // xhr.onreadystatechange = function(){
  6985. // if(xhr.readyState == 4 && (xhr.status == 200 || xhr.status == 304)){
  6986. // fn.call(this,xhr.responseText);
  6987. // }
  6988. // };
  6989. // xhr.send();
  6990. // }
  6991. /*判断是否是内网IP*/
  6992. // U.MD.D.I.isInnerIPFn = function(str){
  6993. // var curPageUrl = str;
  6994. // var reg1 = /(http|ftp|https|www):\/\//g;//去掉前缀
  6995. // curPageUrl =curPageUrl.replace(reg1,'');
  6996. // // console.log('curPageUrl-1 '+curPageUrl);
  6997. // var reg2 = /\:+/g;//替换冒号为一点
  6998. // curPageUrl =curPageUrl.replace(reg2,'.');
  6999. // // console.log('curPageUrl-2 '+curPageUrl);
  7000. // curPageUrl = curPageUrl.split('.');//通过一点来划分数组
  7001. // var ipAddress = curPageUrl[0]+'.'+curPageUrl[1]+'.'+curPageUrl[2]+'.'+curPageUrl[3];
  7002. // if(curPageUrl[2] != '16'){
  7003. // return ipAddress;
  7004. // }else{
  7005. // return false;
  7006. // }
  7007. // }
  7008. // U.MD.D.I.getUserIP = function(onNewIP) { // onNewIp - your listener function for new IPs
  7009. // //compatibility for firefox and chrome
  7010. // var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
  7011. // var pc = new myPeerConnection({
  7012. // iceServers: []
  7013. // }),
  7014. // noop = function() {},
  7015. // localIPs = {},
  7016. // ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
  7017. // key;
  7018. // function iterateIP(ip) {
  7019. // if (!localIPs[ip]) onNewIP(ip);
  7020. // localIPs[ip] = true;
  7021. // }
  7022. // //create a bogus data channel
  7023. // pc.createDataChannel("");
  7024. // // create offer and set local description
  7025. // pc.createOffer().then(function(sdp) {
  7026. // sdp.sdp.split('\n').forEach(function(line) {
  7027. // if (line.indexOf('candidate') < 0) return;
  7028. // line.match(ipRegex).forEach(iterateIP);
  7029. // });
  7030. // pc.setLocalDescription(sdp, noop, noop);
  7031. // }).catch(function(reason) {
  7032. // // An error occurred, so handle the failure to connect
  7033. // });
  7034. // //sten for candidate events
  7035. // pc.onicecandidate = function(ice) {
  7036. // if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
  7037. // ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
  7038. // };
  7039. // }
  7040. // U.MD.D.I.getUserIpBool = function(callback){
  7041. // U.MD.D.I.getUserIP(function(ip){
  7042. // alert("Got IP! :" + ip);
  7043. // });
  7044. //}
  7045. //#endregion
  7046. U.MD.D.I.openApplicationJie = function (str, cid, stage, task, tool) {
  7047. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7048. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7049. _userinfo = US.userInfo, //登录用户信息
  7050. _userid = US.userInfo.userid //登录用户id
  7051. let _iframe;
  7052. let _cid = cid,
  7053. _stage = stage,
  7054. _task = task,
  7055. _tool = tool;
  7056. var _jie = $$("div", {
  7057. "style": {
  7058. "position": "absolute",
  7059. "bottom": "50px",
  7060. "right": "50px",
  7061. "zIndex": "9999",
  7062. "backgroundColor": "#2268bc",
  7063. "color": "#fff",
  7064. "padding": "12px 20px",
  7065. "cursor": "pointer",
  7066. "borderRadius": "4px",
  7067. },
  7068. "innerHTML": "提交作业"
  7069. })
  7070. let aTool = ''
  7071. let _loading = document.createElement('div')
  7072. _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;"
  7073. // _loading.id = "";
  7074. let _lchild = document.createElement('div')
  7075. let _limg = document.createElement('img')
  7076. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7077. _limg.style = "width: 26px;margin-right: 10px;"
  7078. _lchild.appendChild(_limg)
  7079. let _lspan = document.createElement('span')
  7080. _lspan.innerHTML = "上传中..."
  7081. _lchild.appendChild(_lspan)
  7082. _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%);"
  7083. _loading.appendChild(_lchild)
  7084. var _box = $$('div', {
  7085. "style": {
  7086. "position": "relative",
  7087. "width": "100%",
  7088. "height": "100%",
  7089. },
  7090. })
  7091. _box.appendChild(_loading)
  7092. _box.id = str + '_loadLi_Jie' + cid + stage + task + tool + _userid
  7093. switch (str) {
  7094. case "whiteboard":
  7095. aTool = 1;
  7096. _iframe = $$("iframe", {
  7097. "frameborder": "no",
  7098. "border": "0",
  7099. "scrolling ": "no",
  7100. "style": {
  7101. "cssText": "border:0;width:100%;height:100%"
  7102. },
  7103. "src": "https://beta.iwb.cocorobo.cn/"
  7104. })
  7105. _box.appendChild(_iframe);
  7106. _box.appendChild(_jie);
  7107. _formdiv = new U.UF.UI.form(
  7108. "电子白板",
  7109. _box, {
  7110. "id": "whiteboard" + cid + stage + task + tool,
  7111. "style": {
  7112. "width": "90%",
  7113. "height": "90%",
  7114. "overflow": 'hidden'
  7115. },
  7116. "onresize": function () { }
  7117. }, {
  7118. closecallback: function () { }
  7119. }, {
  7120. "style": {
  7121. "height": "36px"
  7122. }
  7123. }).form; //创建窗体
  7124. _taskbar = {
  7125. "id": str + _formdiv.id,
  7126. "style": {
  7127. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7128. },
  7129. "name": "电子白板",
  7130. "forms": _formdiv,
  7131. "click": function () {
  7132. U.MD.D.I.openApplication(str, obj, info);
  7133. }
  7134. }
  7135. break;
  7136. case "mind":
  7137. aTool = 3;
  7138. _iframe = $$("iframe", {
  7139. "frameborder": "no",
  7140. "border": "0",
  7141. "scrolling ": "no",
  7142. "style": {
  7143. "cssText": "border:0;width:100%;height:100%"
  7144. },
  7145. "src": "/kityminder-editor/dist/index.html"
  7146. })
  7147. _box.appendChild(_iframe);
  7148. _box.appendChild(_jie);
  7149. _formdiv = new U.UF.UI.form(
  7150. "思维导图",
  7151. _box, { //"/jsmind/example/demo.html"
  7152. "id": "mind" + cid + stage + task + tool,
  7153. "style": {
  7154. "width": "90%",
  7155. "height": "90%",
  7156. "overflow": 'hidden'
  7157. },
  7158. "onresize": function () { }
  7159. }, {
  7160. closecallback: function () { }
  7161. }, {
  7162. "style": {
  7163. "height": "36px"
  7164. }
  7165. }).form; //创建窗体
  7166. _taskbar = {
  7167. "id": str + _formdiv.id,
  7168. "style": {
  7169. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7170. },
  7171. "name": "思维导图",
  7172. "forms": _formdiv,
  7173. "click": function () {
  7174. U.MD.D.I.openApplication(str, obj, info);
  7175. }
  7176. }
  7177. break;
  7178. case "MindMap":
  7179. aTool = 3;
  7180. _iframe = $$("iframe", {
  7181. "frameborder": "no",
  7182. "border": "0",
  7183. "scrolling ": "no",
  7184. "style": {
  7185. "cssText": "border:0;width:100%;height:100%"
  7186. },
  7187. "src": "//cloud.cocorobo.cn/mind/"
  7188. })
  7189. _box.appendChild(_iframe);
  7190. _box.appendChild(_jie);
  7191. _formdiv = new U.UF.UI.form(
  7192. "思维导图",
  7193. _box, { //"/jsmind/example/demo.html"
  7194. "id": "mind" + cid + stage + task + tool,
  7195. "style": {
  7196. "width": "90%",
  7197. "height": "90%",
  7198. "overflow": 'hidden'
  7199. },
  7200. "onresize": function () { }
  7201. }, {
  7202. closecallback: function () { }
  7203. }, {
  7204. "style": {
  7205. "height": "36px"
  7206. }
  7207. }).form; //创建窗体
  7208. _taskbar = {
  7209. "id": str + _formdiv.id,
  7210. "style": {
  7211. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7212. },
  7213. "name": "思维导图",
  7214. "forms": _formdiv,
  7215. "click": function () {
  7216. U.MD.D.I.openApplication(str, obj, info);
  7217. }
  7218. }
  7219. break;
  7220. case "doc":
  7221. aTool = 6;
  7222. _iframe = $$("iframe", {
  7223. "frameborder": "no",
  7224. "border": "0",
  7225. "scrolling ": "no",
  7226. "style": {
  7227. "cssText": "border:0;width:100%;height:100%"
  7228. },
  7229. "src": "/Office/Word/WordEditArea.htm"
  7230. })
  7231. _box.appendChild(_iframe);
  7232. _box.appendChild(_jie);
  7233. _formdiv = new U.UF.UI.form(
  7234. "协同文档",
  7235. _box, {
  7236. "id": "doc" + 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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7251. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7252. })
  7253. _taskbar = {
  7254. "id": str + _formdiv.id,
  7255. "style": {
  7256. "backgroundImage": "url(/img/icon/doc.png)"
  7257. },
  7258. "name": "协同文档",
  7259. "forms": _formdiv,
  7260. "click": function () {
  7261. U.MD.D.I.openApplication(str, obj, info);
  7262. }
  7263. }
  7264. break;
  7265. case "mindNetwork": //好友打开
  7266. aTool = 7;
  7267. _iframe = $$("iframe", {
  7268. "webkitallowfullscreen": "",
  7269. "mozallowfullscreen": "",
  7270. "allowfullscreen": "",
  7271. "frameborder": "no",
  7272. "border": "0",
  7273. "scrolling ": "no",
  7274. "style": {
  7275. "cssText": "border:0; width:100%; height:100%;"
  7276. },
  7277. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7278. })
  7279. _box.appendChild(_iframe);
  7280. _box.appendChild(_jie);
  7281. _formdiv = new U.UF.UI.form(
  7282. "思维网格",
  7283. _box, {
  7284. "id": "mindNetwork" + cid + stage + task + tool,
  7285. "style": {
  7286. "width": "90%",
  7287. "height": "90%",
  7288. "overflow": 'hidden'
  7289. },
  7290. "onresize": function () { }
  7291. }, {
  7292. closecallback: function () { }
  7293. }, {
  7294. "style": {
  7295. "height": "36px"
  7296. }
  7297. }).form; //创建窗体
  7298. _taskbar = {
  7299. "id": str + _formdiv.id,
  7300. "style": {
  7301. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7302. },
  7303. "name": "思维网格",
  7304. "forms": _formdiv,
  7305. "click": function () {
  7306. U.MD.D.I.openApplication(str, obj, info);
  7307. }
  7308. }
  7309. break;
  7310. case "courseDesign":
  7311. _iframe = $$("iframe", {
  7312. "webkitallowfullscreen": "",
  7313. "mozallowfullscreen": "",
  7314. "allowfullscreen": "",
  7315. "frameborder": "no",
  7316. "border": "0",
  7317. "scrolling ": "no",
  7318. "style": {
  7319. "cssText": "border:0; width:100%; height:100%;"
  7320. },
  7321. "src": "/course-design-vue"
  7322. })
  7323. _box.appendChild(_iframe);
  7324. _box.appendChild(_jie);
  7325. _formdiv = new U.UF.UI.form(
  7326. "项目设计",
  7327. _box, {
  7328. "id": "courseDesign" + cid + stage + task + tool,
  7329. "style": {
  7330. "width": "90%",
  7331. "height": "90%",
  7332. "overflow": 'hidden'
  7333. },
  7334. "onresize": function () { }
  7335. }, {
  7336. closecallback: function () { }
  7337. }, {
  7338. "style": {
  7339. "height": "36px"
  7340. }
  7341. }).form; //创建窗体
  7342. _taskbar = {
  7343. "id": str + _formdiv.id,
  7344. "style": {
  7345. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7346. },
  7347. "name": "项目设计",
  7348. "forms": _formdiv,
  7349. "click": function () {
  7350. U.MD.D.I.openApplication(str, obj, info);
  7351. }
  7352. }
  7353. break;
  7354. }
  7355. const script1 = document.createElement("script");
  7356. script1.type = "text/javascript";
  7357. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7358. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7359. const script2 = document.createElement("script");
  7360. script2.type = "text/javascript";
  7361. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7362. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7363. const script3 = document.createElement("script");
  7364. script3.type = "text/javascript";
  7365. script3.charset = "UTF-8";
  7366. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7367. const script4 = document.createElement("script");
  7368. script4.type = "text/javascript";
  7369. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7370. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  7371. if (_iframe) {
  7372. if (str == 'doc') {
  7373. _iframe = _formdiv.querySelector('iframe')
  7374. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7375. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7376. _iframe.contentWindow.document.body.appendChild(script1);
  7377. _iframe.contentWindow.document.body.appendChild(script2);
  7378. // _iframe.contentWindow.document.body.appendChild(script3);
  7379. _iframe.contentWindow.document.body.appendChild(script4);
  7380. })
  7381. if (onloadListener) {
  7382. _iframe.contentDocument.location.reload()
  7383. } else {
  7384. _iframe.contentDocument.location.reload()
  7385. }
  7386. } else if (str == 'courseDesign') {
  7387. U.UF.DL.iframeLoad(_iframe, function () {
  7388. // _iframe.contentWindow.U.MD.O.W.load();
  7389. // _iframe.contentWindow.document.body.appendChild(script1);
  7390. _iframe.contentWindow.document.body.appendChild(script2);
  7391. _iframe.contentWindow.document.body.appendChild(script4);
  7392. })
  7393. } else if (str == 'mind') {
  7394. _iframe = _formdiv.querySelector('iframe')
  7395. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7396. //
  7397. _iframe.contentWindow.document.body.appendChild(script1);
  7398. _iframe.contentWindow.document.body.appendChild(script2);
  7399. _iframe.contentWindow.document.body.appendChild(script4);
  7400. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7401. })
  7402. if (onloadListener) {
  7403. _iframe.contentDocument.location.reload()
  7404. } else {
  7405. _iframe.contentDocument.location.reload()
  7406. }
  7407. } else if (str == 'whiteboard') {
  7408. _iframe = _formdiv.querySelector('iframe')
  7409. let onloadListener = _iframe.onload = () => {
  7410. _iframe.contentWindow.document.body.appendChild(script1);
  7411. _iframe.contentWindow.document.body.appendChild(script2);
  7412. _iframe.contentWindow.document.body.appendChild(script4);
  7413. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7414. };
  7415. // if (onloadListener) {
  7416. // try {
  7417. // _iframe.src += "?cocorobo="+new Date().getTime()
  7418. // _iframe.contentWindow.document.location.reload()
  7419. // } catch (error) {
  7420. // }
  7421. // } else {
  7422. // _iframe.contentDocument.location.reload()
  7423. // }
  7424. } else {
  7425. _iframe.onload = () => {
  7426. _iframe.contentWindow.document.body.appendChild(script1);
  7427. _iframe.contentWindow.document.body.appendChild(script2);
  7428. // _iframe.contentWindow.document.body.appendChild(script3);
  7429. _iframe.contentWindow.document.body.appendChild(script4);
  7430. };
  7431. }
  7432. _jie.onclick = async () => {
  7433. let text = ''
  7434. if (aTool == 1) {
  7435. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7436. } else if (aTool == 6) {
  7437. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7438. } else if (aTool == 3) {
  7439. text = await U.MD.D.I.getEditorContent(_iframe);
  7440. }
  7441. _loading.style.display = 'flex'
  7442. console.log(_loading);
  7443. var _ajs = _iframe.contentWindow.document.createElement("script");
  7444. _ajs.type = "text/javascript";
  7445. _ajs.innerHTML =
  7446. // 'console.log(' + _loading + ');\n' +
  7447. 'var _js = document.createElement("script");\n' +
  7448. '_js.type="text/javascript";\n' +
  7449. '_js.charset="UTF-8";\n' +
  7450. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7451. "_js.onload = function(){\n" +
  7452. ' var a = document.getElementsByTagName("img")\n' +
  7453. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7454. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7455. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7456. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7457. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7458. "beforeUpload_shishi(file," +
  7459. "'" +
  7460. _userid +
  7461. "'" +
  7462. ", " +
  7463. "'" +
  7464. _cid +
  7465. "'" +
  7466. ", " +
  7467. "'" +
  7468. _stage +
  7469. "'" +
  7470. ", " +
  7471. "'" +
  7472. _task +
  7473. "'" +
  7474. ", " +
  7475. "'" +
  7476. _tool +
  7477. "'" +
  7478. ", " +
  7479. "'" +
  7480. (str + '_loadLi_Jie' + cid + stage + task + tool + _userid) +
  7481. "'" +
  7482. ", " +
  7483. "'" +
  7484. aTool +
  7485. "'" +
  7486. ", " +
  7487. "`" +
  7488. text +
  7489. "`" +
  7490. ")\n" +
  7491. " });\n" +
  7492. "}\n" +
  7493. "document.head.appendChild(_js);\n";
  7494. _iframe.contentWindow.document.head.appendChild(_ajs);
  7495. }
  7496. }
  7497. //U.MD.D.I.openClick(str);
  7498. //如果有任务栏信息
  7499. // if (_taskbar) {
  7500. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7501. // }
  7502. }
  7503. U.MD.D.I.openApplicationJieE = function (str, cid, stage, task, tool) {
  7504. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7505. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7506. _userinfo = US.userInfo, //登录用户信息
  7507. _userid = US.userInfo.userid //登录用户id
  7508. let _iframe;
  7509. let _cid = cid,
  7510. _stage = stage,
  7511. _task = task,
  7512. _tool = tool;
  7513. var _jie = $$("div", {
  7514. "style": {
  7515. "position": "absolute",
  7516. "bottom": "50px",
  7517. "right": "50px",
  7518. "zIndex": "9999",
  7519. "backgroundColor": "#2268bc",
  7520. "color": "#fff",
  7521. "padding": "12px 20px",
  7522. "cursor": "pointer",
  7523. "borderRadius": "4px",
  7524. },
  7525. "innerHTML": "提交作业"
  7526. })
  7527. let aTool = ''
  7528. let _loading = document.createElement('div')
  7529. _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;"
  7530. // _loading.id = "";
  7531. let _lchild = document.createElement('div')
  7532. let _limg = document.createElement('img')
  7533. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7534. _limg.style = "width: 26px;margin-right: 10px;"
  7535. _lchild.appendChild(_limg)
  7536. let _lspan = document.createElement('span')
  7537. _lspan.innerHTML = "上传中..."
  7538. _lchild.appendChild(_lspan)
  7539. _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%);"
  7540. _loading.appendChild(_lchild)
  7541. let _box = $$('div', {
  7542. "style": {
  7543. "position": "relative",
  7544. "width": "100%",
  7545. "height": "100%",
  7546. },
  7547. })
  7548. _box.appendChild(_loading)
  7549. _box.id = str + '_loadLi_JieE' + cid + stage + task + tool + _userid
  7550. switch (str) {
  7551. case "whiteboard":
  7552. aTool = 1;
  7553. _iframe = $$("iframe", {
  7554. "frameborder": "no",
  7555. "border": "0",
  7556. "scrolling ": "no",
  7557. "style": {
  7558. "cssText": "border:0;width:100%;height:100%"
  7559. },
  7560. "src": "https://beta.iwb.cocorobo.cn/"
  7561. })
  7562. _box.appendChild(_iframe);
  7563. _box.appendChild(_jie);
  7564. _formdiv = new U.UF.UI.form(
  7565. "电子白板",
  7566. _box, {
  7567. "id": "whiteboard" + cid + stage + task + tool,
  7568. "style": {
  7569. "width": "90%",
  7570. "height": "90%",
  7571. "overflow": 'hidden'
  7572. },
  7573. "onresize": function () { }
  7574. }, {
  7575. closecallback: function () { }
  7576. }, {
  7577. "style": {
  7578. "height": "36px"
  7579. }
  7580. }).form; //创建窗体
  7581. _taskbar = {
  7582. "id": str + _formdiv.id,
  7583. "style": {
  7584. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  7585. },
  7586. "name": "电子白板",
  7587. "forms": _formdiv,
  7588. "click": function () {
  7589. U.MD.D.I.openApplication(str, obj, info);
  7590. }
  7591. }
  7592. break;
  7593. case "mind":
  7594. aTool = 3;
  7595. _iframe = $$("iframe", {
  7596. "frameborder": "no",
  7597. "border": "0",
  7598. "scrolling ": "no",
  7599. "style": {
  7600. "cssText": "border:0;width:100%;height:100%"
  7601. },
  7602. "src": "/kityminder-editor/dist/index.html"
  7603. })
  7604. _box.appendChild(_iframe);
  7605. _box.appendChild(_jie);
  7606. _formdiv = new U.UF.UI.form(
  7607. "思维导图",
  7608. _box, { //"/jsmind/example/demo.html"
  7609. "id": "mind" + cid + stage + task + tool,
  7610. "style": {
  7611. "width": "90%",
  7612. "height": "90%",
  7613. "overflow": 'hidden'
  7614. },
  7615. "onresize": function () { }
  7616. }, {
  7617. closecallback: function () { }
  7618. }, {
  7619. "style": {
  7620. "height": "36px"
  7621. }
  7622. }).form; //创建窗体
  7623. _taskbar = {
  7624. "id": str + _formdiv.id,
  7625. "style": {
  7626. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7627. },
  7628. "name": "思维导图",
  7629. "forms": _formdiv,
  7630. "click": function () {
  7631. U.MD.D.I.openApplication(str, obj, info);
  7632. }
  7633. }
  7634. break;
  7635. case "MindMap":
  7636. aTool = 3;
  7637. _iframe = $$("iframe", {
  7638. "frameborder": "no",
  7639. "border": "0",
  7640. "scrolling ": "no",
  7641. "style": {
  7642. "cssText": "border:0;width:100%;height:100%"
  7643. },
  7644. "src": "//cloud.cocorobo.cn/mind/"
  7645. })
  7646. _box.appendChild(_iframe);
  7647. _box.appendChild(_jie);
  7648. _formdiv = new U.UF.UI.form(
  7649. "思维导图",
  7650. _box, { //"/jsmind/example/demo.html"
  7651. "id": "mind" + cid + stage + task + tool,
  7652. "style": {
  7653. "width": "90%",
  7654. "height": "90%",
  7655. "overflow": 'hidden'
  7656. },
  7657. "onresize": function () { }
  7658. }, {
  7659. closecallback: function () { }
  7660. }, {
  7661. "style": {
  7662. "height": "36px"
  7663. }
  7664. }).form; //创建窗体
  7665. _taskbar = {
  7666. "id": str + _formdiv.id,
  7667. "style": {
  7668. "backgroundImage": "url(/img/icon/mindMapping.png)"
  7669. },
  7670. "name": "思维导图",
  7671. "forms": _formdiv,
  7672. "click": function () {
  7673. U.MD.D.I.openApplication(str, obj, info);
  7674. }
  7675. }
  7676. break;
  7677. case "doc":
  7678. aTool = 6;
  7679. _iframe = $$("iframe", {
  7680. "frameborder": "no",
  7681. "border": "0",
  7682. "scrolling ": "no",
  7683. "style": {
  7684. "cssText": "border:0;width:100%;height:100%"
  7685. },
  7686. "src": "/Office/Word/WordEditArea.htm"
  7687. })
  7688. _box.appendChild(_iframe);
  7689. _box.appendChild(_jie);
  7690. _formdiv = new U.UF.UI.form(
  7691. "协同文档",
  7692. _box, {
  7693. "id": "doc" + cid + stage + task + tool,
  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. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  7708. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7709. })
  7710. _taskbar = {
  7711. "id": str + _formdiv.id,
  7712. "style": {
  7713. "backgroundImage": "url(/img/icon/doc.png)"
  7714. },
  7715. "name": "协同文档",
  7716. "forms": _formdiv,
  7717. "click": function () {
  7718. U.MD.D.I.openApplication(str, obj, info);
  7719. }
  7720. }
  7721. break;
  7722. case "mindNetwork": //好友打开
  7723. aTool = 7;
  7724. _iframe = $$("iframe", {
  7725. "webkitallowfullscreen": "",
  7726. "mozallowfullscreen": "",
  7727. "allowfullscreen": "",
  7728. "frameborder": "no",
  7729. "border": "0",
  7730. "scrolling ": "no",
  7731. "style": {
  7732. "cssText": "border:0; width:100%; height:100%;"
  7733. },
  7734. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  7735. })
  7736. _box.appendChild(_iframe);
  7737. _box.appendChild(_jie);
  7738. _formdiv = new U.UF.UI.form(
  7739. "思维网格",
  7740. _box, {
  7741. "id": "mindNetwork" + cid + stage + task + tool,
  7742. "style": {
  7743. "width": "90%",
  7744. "height": "90%",
  7745. "overflow": 'hidden'
  7746. },
  7747. "onresize": function () { }
  7748. }, {
  7749. closecallback: function () { }
  7750. }, {
  7751. "style": {
  7752. "height": "36px"
  7753. }
  7754. }).form; //创建窗体
  7755. _taskbar = {
  7756. "id": str + _formdiv.id,
  7757. "style": {
  7758. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  7759. },
  7760. "name": "思维网格",
  7761. "forms": _formdiv,
  7762. "click": function () {
  7763. U.MD.D.I.openApplication(str, obj, info);
  7764. }
  7765. }
  7766. break;
  7767. case "courseDesign":
  7768. _iframe = $$("iframe", {
  7769. "webkitallowfullscreen": "",
  7770. "mozallowfullscreen": "",
  7771. "allowfullscreen": "",
  7772. "frameborder": "no",
  7773. "border": "0",
  7774. "scrolling ": "no",
  7775. "style": {
  7776. "cssText": "border:0; width:100%; height:100%;"
  7777. },
  7778. "src": "/course-design-vue"
  7779. })
  7780. _box.appendChild(_iframe);
  7781. _box.appendChild(_jie);
  7782. _formdiv = new U.UF.UI.form(
  7783. "项目设计",
  7784. _box, {
  7785. "id": "courseDesign" + cid + stage + task + tool,
  7786. "style": {
  7787. "width": "90%",
  7788. "height": "90%",
  7789. "overflow": 'hidden'
  7790. },
  7791. "onresize": function () { }
  7792. }, {
  7793. closecallback: function () { }
  7794. }, {
  7795. "style": {
  7796. "height": "36px"
  7797. }
  7798. }).form; //创建窗体
  7799. _taskbar = {
  7800. "id": str + _formdiv.id,
  7801. "style": {
  7802. "backgroundImage": "url(/img/icon/courseDesign.png)"
  7803. },
  7804. "name": "项目设计",
  7805. "forms": _formdiv,
  7806. "click": function () {
  7807. U.MD.D.I.openApplication(str, obj, info);
  7808. }
  7809. }
  7810. break;
  7811. }
  7812. const script1 = document.createElement("script");
  7813. script1.type = "text/javascript";
  7814. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  7815. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  7816. const script2 = document.createElement("script");
  7817. script2.type = "text/javascript";
  7818. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  7819. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  7820. const script3 = document.createElement("script");
  7821. script3.type = "text/javascript";
  7822. script3.charset = "UTF-8";
  7823. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  7824. const script4 = document.createElement("script");
  7825. script4.type = "text/javascript";
  7826. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  7827. script4.src = window.origin + "/js/Common/jietu2E.js";
  7828. if (_iframe) {
  7829. if (str == 'doc') {
  7830. _iframe = _formdiv.querySelector('iframe')
  7831. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7832. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  7833. _iframe.contentWindow.document.body.appendChild(script1);
  7834. _iframe.contentWindow.document.body.appendChild(script2);
  7835. // _iframe.contentWindow.document.body.appendChild(script3);
  7836. _iframe.contentWindow.document.body.appendChild(script4);
  7837. })
  7838. if (onloadListener) {
  7839. _iframe.contentDocument.location.reload()
  7840. } else {
  7841. _iframe.contentDocument.location.reload()
  7842. }
  7843. } else if (str == 'courseDesign') {
  7844. U.UF.DL.iframeLoad(_iframe, function () {
  7845. // _iframe.contentWindow.U.MD.O.W.load();
  7846. // _iframe.contentWindow.document.body.appendChild(script1);
  7847. _iframe.contentWindow.document.body.appendChild(script2);
  7848. _iframe.contentWindow.document.body.appendChild(script4);
  7849. })
  7850. } else if (str == 'mind') {
  7851. _iframe = _formdiv.querySelector('iframe')
  7852. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  7853. //
  7854. _iframe.contentWindow.document.body.appendChild(script1);
  7855. _iframe.contentWindow.document.body.appendChild(script2);
  7856. _iframe.contentWindow.document.body.appendChild(script4);
  7857. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  7858. })
  7859. if (onloadListener) {
  7860. _iframe.contentDocument.location.reload()
  7861. } else {
  7862. _iframe.contentDocument.location.reload()
  7863. }
  7864. } else if (str == 'whiteboard') {
  7865. _iframe = _formdiv.querySelector('iframe')
  7866. let onloadListener = _iframe.onload = () => {
  7867. _iframe.contentWindow.document.body.appendChild(script1);
  7868. _iframe.contentWindow.document.body.appendChild(script2);
  7869. _iframe.contentWindow.document.body.appendChild(script4);
  7870. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  7871. };
  7872. // if (onloadListener) {
  7873. // try {
  7874. // _iframe.src += "?cocorobo="+new Date().getTime()
  7875. // _iframe.contentWindow.document.location.reload()
  7876. // } catch (error) {
  7877. // }
  7878. // } else {
  7879. // _iframe.contentDocument.location.reload()
  7880. // }
  7881. } else {
  7882. _iframe.onload = () => {
  7883. _iframe.contentWindow.document.body.appendChild(script1);
  7884. _iframe.contentWindow.document.body.appendChild(script2);
  7885. // _iframe.contentWindow.document.body.appendChild(script3);
  7886. _iframe.contentWindow.document.body.appendChild(script4);
  7887. };
  7888. }
  7889. _jie.onclick = async () => {
  7890. let text = ''
  7891. if (aTool == 1) {
  7892. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  7893. } else if (aTool == 6) {
  7894. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  7895. } else if (aTool == 3) {
  7896. text = await U.MD.D.I.getEditorContent(_iframe);
  7897. }
  7898. _loading.style.display = 'flex'
  7899. console.log(_loading);
  7900. var _ajs = _iframe.contentWindow.document.createElement("script");
  7901. _ajs.type = "text/javascript";
  7902. _ajs.innerHTML =
  7903. // 'console.log(' + _loading + ');\n' +
  7904. 'var _js = document.createElement("script");\n' +
  7905. '_js.type="text/javascript";\n' +
  7906. '_js.charset="UTF-8";\n' +
  7907. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  7908. "_js.onload = function(){\n" +
  7909. ' var a = document.getElementsByTagName("img")\n' +
  7910. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  7911. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  7912. '  var base64Url = canvas.toDataURL("image/png");\n' +
  7913. 'var base64 = "<img src=" + base64Url + " />"\n' +
  7914. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  7915. "beforeUpload_shishi(file," +
  7916. "'" +
  7917. _userid +
  7918. "'" +
  7919. ", " +
  7920. "'" +
  7921. _cid +
  7922. "'" +
  7923. ", " +
  7924. "'" +
  7925. _stage +
  7926. "'" +
  7927. ", " +
  7928. "'" +
  7929. _task +
  7930. "'" +
  7931. ", " +
  7932. "'" +
  7933. _tool +
  7934. "'" +
  7935. ", " +
  7936. "'" +
  7937. (str + '_loadLi_JieE' + cid + stage + task + tool + _userid) +
  7938. "'" +
  7939. ", " +
  7940. "'" +
  7941. aTool +
  7942. "'" +
  7943. ", " +
  7944. "`" +
  7945. text +
  7946. "`" +
  7947. ")\n" +
  7948. " });\n" +
  7949. "}\n" +
  7950. "document.head.appendChild(_js);\n";
  7951. _iframe.contentWindow.document.head.appendChild(_ajs);
  7952. }
  7953. }
  7954. //U.MD.D.I.openClick(str);
  7955. //如果有任务栏信息
  7956. // if (_taskbar) {
  7957. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  7958. // }
  7959. }
  7960. U.MD.D.I.openApplicationJieTeacher = function (str, cid, stage, task, tool, student) {
  7961. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  7962. _formdiv, //创建任务栏时同时弹出的窗体元素。
  7963. _userid = student.userid, //登录用户id
  7964. _username = student.student //用户名字
  7965. let _iframe;
  7966. let _cid = cid,
  7967. _stage = stage,
  7968. _task = task,
  7969. _tool = tool;
  7970. var _jie = $$("div", {
  7971. "style": {
  7972. "position": "absolute",
  7973. "bottom": "50px",
  7974. "right": "50px",
  7975. "zIndex": "9999",
  7976. "backgroundColor": "#2268bc",
  7977. "color": "#fff",
  7978. "padding": "12px 20px",
  7979. "cursor": "pointer",
  7980. "borderRadius": "4px",
  7981. },
  7982. "innerHTML": "提交作业"
  7983. })
  7984. let aTool = ''
  7985. let _loading = document.createElement('div')
  7986. _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;"
  7987. // _loading.id = "";
  7988. let _lchild = document.createElement('div')
  7989. let _limg = document.createElement('img')
  7990. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  7991. _limg.style = "width: 26px;margin-right: 10px;"
  7992. _lchild.appendChild(_limg)
  7993. let _lspan = document.createElement('span')
  7994. _lspan.innerHTML = "上传中..."
  7995. _lchild.appendChild(_lspan)
  7996. _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%);"
  7997. _loading.appendChild(_lchild)
  7998. var _box = $$('div', {
  7999. "style": {
  8000. "position": "relative",
  8001. "width": "100%",
  8002. "height": "100%",
  8003. },
  8004. })
  8005. _box.appendChild(_loading)
  8006. _box.id = str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid
  8007. switch (str) {
  8008. case "whiteboard":
  8009. aTool = 1;
  8010. _iframe = $$("iframe", {
  8011. "frameborder": "no",
  8012. "border": "0",
  8013. "scrolling ": "no",
  8014. "style": {
  8015. "cssText": "border:0;width:100%;height:100%"
  8016. },
  8017. "src": "https://beta.iwb.cocorobo.cn/"
  8018. })
  8019. _box.appendChild(_iframe);
  8020. _box.appendChild(_jie);
  8021. _formdiv = new U.UF.UI.form(
  8022. "电子白板-" + _username,
  8023. _box, {
  8024. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8025. "style": {
  8026. "width": "90%",
  8027. "height": "90%",
  8028. "overflow": 'hidden'
  8029. },
  8030. "onresize": function () { }
  8031. }, {
  8032. closecallback: function () { }
  8033. }, {
  8034. "style": {
  8035. "height": "36px"
  8036. }
  8037. }).form; //创建窗体
  8038. _taskbar = {
  8039. "id": str + _formdiv.id,
  8040. "style": {
  8041. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8042. },
  8043. "name": "电子白板",
  8044. "forms": _formdiv,
  8045. "click": function () {
  8046. U.MD.D.I.openApplication(str, obj, info);
  8047. }
  8048. }
  8049. break;
  8050. case "mind":
  8051. aTool = 3;
  8052. _iframe = $$("iframe", {
  8053. "frameborder": "no",
  8054. "border": "0",
  8055. "scrolling ": "no",
  8056. "style": {
  8057. "cssText": "border:0;width:100%;height:100%"
  8058. },
  8059. "src": "/kityminder-editor/dist/index.html"
  8060. })
  8061. _box.appendChild(_iframe);
  8062. _box.appendChild(_jie);
  8063. _formdiv = new U.UF.UI.form(
  8064. "思维导图-" + _username,
  8065. _box, { //"/jsmind/example/demo.html"
  8066. "id": "mind" + cid + stage + task + tool + _userid,
  8067. "style": {
  8068. "width": "90%",
  8069. "height": "90%",
  8070. "overflow": 'hidden'
  8071. },
  8072. "onresize": function () { }
  8073. }, {
  8074. closecallback: function () { }
  8075. }, {
  8076. "style": {
  8077. "height": "36px"
  8078. }
  8079. }).form; //创建窗体
  8080. _taskbar = {
  8081. "id": str + _formdiv.id,
  8082. "style": {
  8083. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8084. },
  8085. "name": "思维导图",
  8086. "forms": _formdiv,
  8087. "click": function () {
  8088. U.MD.D.I.openApplication(str, obj, info);
  8089. }
  8090. }
  8091. break;
  8092. case "MindMap":
  8093. aTool = 3;
  8094. _iframe = $$("iframe", {
  8095. "frameborder": "no",
  8096. "border": "0",
  8097. "scrolling ": "no",
  8098. "style": {
  8099. "cssText": "border:0;width:100%;height:100%"
  8100. },
  8101. "src": "//cloud.cocorobo.cn/mind/"
  8102. })
  8103. _box.appendChild(_iframe);
  8104. _box.appendChild(_jie);
  8105. _formdiv = new U.UF.UI.form(
  8106. "思维导图-" + _username,
  8107. _box, { //"/jsmind/example/demo.html"
  8108. "id": "mind" + cid + stage + task + tool + _userid,
  8109. "style": {
  8110. "width": "90%",
  8111. "height": "90%",
  8112. "overflow": 'hidden'
  8113. },
  8114. "onresize": function () { }
  8115. }, {
  8116. closecallback: function () { }
  8117. }, {
  8118. "style": {
  8119. "height": "36px"
  8120. }
  8121. }).form; //创建窗体
  8122. _taskbar = {
  8123. "id": str + _formdiv.id,
  8124. "style": {
  8125. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8126. },
  8127. "name": "思维导图",
  8128. "forms": _formdiv,
  8129. "click": function () {
  8130. U.MD.D.I.openApplication(str, obj, info);
  8131. }
  8132. }
  8133. break;
  8134. case "doc":
  8135. aTool = 6;
  8136. _iframe = $$("iframe", {
  8137. "frameborder": "no",
  8138. "border": "0",
  8139. "scrolling ": "no",
  8140. "style": {
  8141. "cssText": "border:0;width:100%;height:100%"
  8142. },
  8143. "src": "/Office/Word/WordEditArea.htm"
  8144. })
  8145. _box.appendChild(_iframe);
  8146. _box.appendChild(_jie);
  8147. _formdiv = new U.UF.UI.form(
  8148. "协同文档-" + _username,
  8149. _box, {
  8150. "id": "doc" + cid + stage + task + tool + _userid,
  8151. "style": {
  8152. "width": "90%",
  8153. "height": "90%",
  8154. "overflow": 'hidden'
  8155. },
  8156. "onresize": function () { }
  8157. }, {
  8158. closecallback: function () { }
  8159. }, {
  8160. "style": {
  8161. "height": "36px"
  8162. }
  8163. }).form; //创建窗体
  8164. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8165. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8166. })
  8167. _taskbar = {
  8168. "id": str + _formdiv.id,
  8169. "style": {
  8170. "backgroundImage": "url(/img/icon/doc.png)"
  8171. },
  8172. "name": "协同文档",
  8173. "forms": _formdiv,
  8174. "click": function () {
  8175. U.MD.D.I.openApplication(str, obj, info);
  8176. }
  8177. }
  8178. break;
  8179. case "mindNetwork": //好友打开
  8180. aTool = 7;
  8181. _iframe = $$("iframe", {
  8182. "webkitallowfullscreen": "",
  8183. "mozallowfullscreen": "",
  8184. "allowfullscreen": "",
  8185. "frameborder": "no",
  8186. "border": "0",
  8187. "scrolling ": "no",
  8188. "style": {
  8189. "cssText": "border:0; width:100%; height:100%;"
  8190. },
  8191. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8192. })
  8193. _box.appendChild(_iframe);
  8194. _box.appendChild(_jie);
  8195. _formdiv = new U.UF.UI.form(
  8196. "思维网格-" + _username,
  8197. _box, {
  8198. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8199. "style": {
  8200. "width": "90%",
  8201. "height": "90%",
  8202. "overflow": 'hidden'
  8203. },
  8204. "onresize": function () { }
  8205. }, {
  8206. closecallback: function () { }
  8207. }, {
  8208. "style": {
  8209. "height": "36px"
  8210. }
  8211. }).form; //创建窗体
  8212. _taskbar = {
  8213. "id": str + _formdiv.id,
  8214. "style": {
  8215. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8216. },
  8217. "name": "思维网格",
  8218. "forms": _formdiv,
  8219. "click": function () {
  8220. U.MD.D.I.openApplication(str, obj, info);
  8221. }
  8222. }
  8223. break;
  8224. case "courseDesign":
  8225. _iframe = $$("iframe", {
  8226. "webkitallowfullscreen": "",
  8227. "mozallowfullscreen": "",
  8228. "allowfullscreen": "",
  8229. "frameborder": "no",
  8230. "border": "0",
  8231. "scrolling ": "no",
  8232. "style": {
  8233. "cssText": "border:0; width:100%; height:100%;"
  8234. },
  8235. "src": "/course-design-vue"
  8236. })
  8237. _box.appendChild(_iframe);
  8238. _box.appendChild(_jie);
  8239. _formdiv = new U.UF.UI.form(
  8240. "项目设计-" + _username,
  8241. _box, {
  8242. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8243. "style": {
  8244. "width": "90%",
  8245. "height": "90%",
  8246. "overflow": 'hidden'
  8247. },
  8248. "onresize": function () { }
  8249. }, {
  8250. closecallback: function () { }
  8251. }, {
  8252. "style": {
  8253. "height": "36px"
  8254. }
  8255. }).form; //创建窗体
  8256. _taskbar = {
  8257. "id": str + _formdiv.id,
  8258. "style": {
  8259. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8260. },
  8261. "name": "项目设计",
  8262. "forms": _formdiv,
  8263. "click": function () {
  8264. U.MD.D.I.openApplication(str, obj, info);
  8265. }
  8266. }
  8267. break;
  8268. }
  8269. const script1 = document.createElement("script");
  8270. script1.type = "text/javascript";
  8271. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8272. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8273. const script2 = document.createElement("script");
  8274. script2.type = "text/javascript";
  8275. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8276. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8277. const script3 = document.createElement("script");
  8278. script3.type = "text/javascript";
  8279. script3.charset = "UTF-8";
  8280. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8281. const script4 = document.createElement("script");
  8282. script4.type = "text/javascript";
  8283. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8284. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu2.js";
  8285. if (_iframe) {
  8286. if (str == 'doc') {
  8287. _iframe = _formdiv.querySelector('iframe')
  8288. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8289. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8290. _iframe.contentWindow.document.body.appendChild(script1);
  8291. _iframe.contentWindow.document.body.appendChild(script2);
  8292. // _iframe.contentWindow.document.body.appendChild(script3);
  8293. _iframe.contentWindow.document.body.appendChild(script4);
  8294. })
  8295. if (onloadListener) {
  8296. _iframe.contentDocument.location.reload()
  8297. } else {
  8298. _iframe.contentDocument.location.reload()
  8299. }
  8300. } else if (str == 'courseDesign') {
  8301. U.UF.DL.iframeLoad(_iframe, function () {
  8302. // _iframe.contentWindow.U.MD.O.W.load();
  8303. // _iframe.contentWindow.document.body.appendChild(script1);
  8304. _iframe.contentWindow.document.body.appendChild(script2);
  8305. _iframe.contentWindow.document.body.appendChild(script4);
  8306. })
  8307. } else if (str == 'mind') {
  8308. _iframe = _formdiv.querySelector('iframe')
  8309. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8310. //
  8311. _iframe.contentWindow.document.body.appendChild(script1);
  8312. _iframe.contentWindow.document.body.appendChild(script2);
  8313. _iframe.contentWindow.document.body.appendChild(script4);
  8314. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8315. })
  8316. if (onloadListener) {
  8317. _iframe.contentDocument.location.reload()
  8318. } else {
  8319. _iframe.contentDocument.location.reload()
  8320. }
  8321. } else if (str == 'whiteboard') {
  8322. _iframe = _formdiv.querySelector('iframe')
  8323. let onloadListener = _iframe.onload = () => {
  8324. _iframe.contentWindow.document.body.appendChild(script1);
  8325. _iframe.contentWindow.document.body.appendChild(script2);
  8326. _iframe.contentWindow.document.body.appendChild(script4);
  8327. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8328. };
  8329. // if (onloadListener) {
  8330. // try {
  8331. // _iframe.src += "?cocorobo="+new Date().getTime()
  8332. // _iframe.contentWindow.document.location.reload()
  8333. // } catch (error) {
  8334. // }
  8335. // } else {
  8336. // _iframe.contentDocument.location.reload()
  8337. // }
  8338. } else {
  8339. _iframe.onload = () => {
  8340. _iframe.contentWindow.document.body.appendChild(script1);
  8341. _iframe.contentWindow.document.body.appendChild(script2);
  8342. // _iframe.contentWindow.document.body.appendChild(script3);
  8343. _iframe.contentWindow.document.body.appendChild(script4);
  8344. };
  8345. }
  8346. _jie.onclick = async () => {
  8347. let text = ''
  8348. if (aTool == 1) {
  8349. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8350. } else if (aTool == 6) {
  8351. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8352. } else if (aTool == 3) {
  8353. text = await U.MD.D.I.getEditorContent(_iframe);
  8354. }
  8355. _loading.style.display = 'flex'
  8356. console.log(_loading);
  8357. var _ajs = _iframe.contentWindow.document.createElement("script");
  8358. _ajs.type = "text/javascript";
  8359. _ajs.innerHTML =
  8360. // 'console.log(' + _loading + ');\n' +
  8361. 'var _js = document.createElement("script");\n' +
  8362. '_js.type="text/javascript";\n' +
  8363. '_js.charset="UTF-8";\n' +
  8364. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8365. "_js.onload = function(){\n" +
  8366. ' var a = document.getElementsByTagName("img")\n' +
  8367. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8368. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8369. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8370. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8371. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8372. "beforeUpload_shishi(file," +
  8373. "'" +
  8374. _userid +
  8375. "'" +
  8376. ", " +
  8377. "'" +
  8378. _cid +
  8379. "'" +
  8380. ", " +
  8381. "'" +
  8382. _stage +
  8383. "'" +
  8384. ", " +
  8385. "'" +
  8386. _task +
  8387. "'" +
  8388. ", " +
  8389. "'" +
  8390. _tool +
  8391. "'" +
  8392. ", " +
  8393. "'" +
  8394. (str + '_loadLi_JieTeacher' + cid + stage + task + tool + _userid) +
  8395. "'" +
  8396. ", " +
  8397. "'" +
  8398. aTool +
  8399. "'" +
  8400. ", " +
  8401. "`" +
  8402. text +
  8403. "`" +
  8404. ")\n" +
  8405. " });\n" +
  8406. "}\n" +
  8407. "document.head.appendChild(_js);\n";
  8408. _iframe.contentWindow.document.head.appendChild(_ajs);
  8409. }
  8410. }
  8411. }
  8412. U.MD.D.I.openApplicationJieTeacherE = function (str, cid, stage, task, tool, student) {
  8413. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8414. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8415. _userid = student.userid, //登录用户id
  8416. _username = student.student //用户名字
  8417. let _iframe;
  8418. let _cid = cid,
  8419. _stage = stage,
  8420. _task = task,
  8421. _tool = tool;
  8422. var _jie = $$("div", {
  8423. "style": {
  8424. "position": "absolute",
  8425. "bottom": "50px",
  8426. "right": "50px",
  8427. "zIndex": "9999",
  8428. "backgroundColor": "#2268bc",
  8429. "color": "#fff",
  8430. "padding": "12px 20px",
  8431. "cursor": "pointer",
  8432. "borderRadius": "4px",
  8433. },
  8434. "innerHTML": "提交作业"
  8435. })
  8436. let aTool = ''
  8437. let _loading = document.createElement('div')
  8438. _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;"
  8439. // _loading.id = "";
  8440. let _lchild = document.createElement('div')
  8441. let _limg = document.createElement('img')
  8442. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8443. _limg.style = "width: 26px;margin-right: 10px;"
  8444. _lchild.appendChild(_limg)
  8445. let _lspan = document.createElement('span')
  8446. _lspan.innerHTML = "上传中..."
  8447. _lchild.appendChild(_lspan)
  8448. _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%);"
  8449. _loading.appendChild(_lchild)
  8450. var _box = $$('div', {
  8451. "style": {
  8452. "position": "relative",
  8453. "width": "100%",
  8454. "height": "100%",
  8455. },
  8456. })
  8457. _box.appendChild(_loading)
  8458. _box.id = str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid
  8459. switch (str) {
  8460. case "whiteboard":
  8461. aTool = 1;
  8462. _iframe = $$("iframe", {
  8463. "frameborder": "no",
  8464. "border": "0",
  8465. "scrolling ": "no",
  8466. "style": {
  8467. "cssText": "border:0;width:100%;height:100%"
  8468. },
  8469. "src": "https://beta.iwb.cocorobo.cn/"
  8470. })
  8471. _box.appendChild(_iframe);
  8472. _box.appendChild(_jie);
  8473. _formdiv = new U.UF.UI.form(
  8474. "电子白板-" + _username,
  8475. _box, {
  8476. "id": "whiteboard" + cid + stage + task + tool + _userid,
  8477. "style": {
  8478. "width": "90%",
  8479. "height": "90%",
  8480. "overflow": 'hidden'
  8481. },
  8482. "onresize": function () { }
  8483. }, {
  8484. closecallback: function () { }
  8485. }, {
  8486. "style": {
  8487. "height": "36px"
  8488. }
  8489. }).form; //创建窗体
  8490. _taskbar = {
  8491. "id": str + _formdiv.id,
  8492. "style": {
  8493. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8494. },
  8495. "name": "电子白板",
  8496. "forms": _formdiv,
  8497. "click": function () {
  8498. U.MD.D.I.openApplication(str, obj, info);
  8499. }
  8500. }
  8501. break;
  8502. case "mind":
  8503. aTool = 3;
  8504. _iframe = $$("iframe", {
  8505. "frameborder": "no",
  8506. "border": "0",
  8507. "scrolling ": "no",
  8508. "style": {
  8509. "cssText": "border:0;width:100%;height:100%"
  8510. },
  8511. "src": "/kityminder-editor/dist/index.html"
  8512. })
  8513. _box.appendChild(_iframe);
  8514. _box.appendChild(_jie);
  8515. _formdiv = new U.UF.UI.form(
  8516. "思维导图-" + _username,
  8517. _box, { //"/jsmind/example/demo.html"
  8518. "id": "mind" + cid + stage + task + tool + _userid,
  8519. "style": {
  8520. "width": "90%",
  8521. "height": "90%",
  8522. "overflow": 'hidden'
  8523. },
  8524. "onresize": function () { }
  8525. }, {
  8526. closecallback: function () { }
  8527. }, {
  8528. "style": {
  8529. "height": "36px"
  8530. }
  8531. }).form; //创建窗体
  8532. _taskbar = {
  8533. "id": str + _formdiv.id,
  8534. "style": {
  8535. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8536. },
  8537. "name": "思维导图",
  8538. "forms": _formdiv,
  8539. "click": function () {
  8540. U.MD.D.I.openApplication(str, obj, info);
  8541. }
  8542. }
  8543. break;
  8544. case "MindMap":
  8545. aTool = 3;
  8546. _iframe = $$("iframe", {
  8547. "frameborder": "no",
  8548. "border": "0",
  8549. "scrolling ": "no",
  8550. "style": {
  8551. "cssText": "border:0;width:100%;height:100%"
  8552. },
  8553. "src": "//cloud.cocorobo.cn/mind/"
  8554. })
  8555. _box.appendChild(_iframe);
  8556. _box.appendChild(_jie);
  8557. _formdiv = new U.UF.UI.form(
  8558. "思维导图-" + _username,
  8559. _box, { //"/jsmind/example/demo.html"
  8560. "id": "mind" + cid + stage + task + tool + _userid,
  8561. "style": {
  8562. "width": "90%",
  8563. "height": "90%",
  8564. "overflow": 'hidden'
  8565. },
  8566. "onresize": function () { }
  8567. }, {
  8568. closecallback: function () { }
  8569. }, {
  8570. "style": {
  8571. "height": "36px"
  8572. }
  8573. }).form; //创建窗体
  8574. _taskbar = {
  8575. "id": str + _formdiv.id,
  8576. "style": {
  8577. "backgroundImage": "url(/img/icon/mindMapping.png)"
  8578. },
  8579. "name": "思维导图",
  8580. "forms": _formdiv,
  8581. "click": function () {
  8582. U.MD.D.I.openApplication(str, obj, info);
  8583. }
  8584. }
  8585. break;
  8586. case "doc":
  8587. aTool = 6;
  8588. _iframe = $$("iframe", {
  8589. "frameborder": "no",
  8590. "border": "0",
  8591. "scrolling ": "no",
  8592. "style": {
  8593. "cssText": "border:0;width:100%;height:100%"
  8594. },
  8595. "src": "/Office/Word/WordEditArea.htm"
  8596. })
  8597. _box.appendChild(_iframe);
  8598. _box.appendChild(_jie);
  8599. _formdiv = new U.UF.UI.form(
  8600. "协同文档-" + _username,
  8601. _box, {
  8602. "id": "doc" + cid + stage + task + tool + _userid,
  8603. "style": {
  8604. "width": "90%",
  8605. "height": "90%",
  8606. "overflow": 'hidden'
  8607. },
  8608. "onresize": function () { }
  8609. }, {
  8610. closecallback: function () { }
  8611. }, {
  8612. "style": {
  8613. "height": "36px"
  8614. }
  8615. }).form; //创建窗体
  8616. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  8617. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8618. })
  8619. _taskbar = {
  8620. "id": str + _formdiv.id,
  8621. "style": {
  8622. "backgroundImage": "url(/img/icon/doc.png)"
  8623. },
  8624. "name": "协同文档",
  8625. "forms": _formdiv,
  8626. "click": function () {
  8627. U.MD.D.I.openApplication(str, obj, info);
  8628. }
  8629. }
  8630. break;
  8631. case "mindNetwork": //好友打开
  8632. aTool = 7;
  8633. _iframe = $$("iframe", {
  8634. "webkitallowfullscreen": "",
  8635. "mozallowfullscreen": "",
  8636. "allowfullscreen": "",
  8637. "frameborder": "no",
  8638. "border": "0",
  8639. "scrolling ": "no",
  8640. "style": {
  8641. "cssText": "border:0; width:100%; height:100%;"
  8642. },
  8643. "src": US.Config.bpbl + "/pbl-teacher-table/dist/#/Grid?userid=" + _userid
  8644. })
  8645. _box.appendChild(_iframe);
  8646. _box.appendChild(_jie);
  8647. _formdiv = new U.UF.UI.form(
  8648. "思维网格-" + _username,
  8649. _box, {
  8650. "id": "mindNetwork" + cid + stage + task + tool + _userid,
  8651. "style": {
  8652. "width": "90%",
  8653. "height": "90%",
  8654. "overflow": 'hidden'
  8655. },
  8656. "onresize": function () { }
  8657. }, {
  8658. closecallback: function () { }
  8659. }, {
  8660. "style": {
  8661. "height": "36px"
  8662. }
  8663. }).form; //创建窗体
  8664. _taskbar = {
  8665. "id": str + _formdiv.id,
  8666. "style": {
  8667. "backgroundImage": "url(/img/icon/mindNetwork.png)"
  8668. },
  8669. "name": "思维网格",
  8670. "forms": _formdiv,
  8671. "click": function () {
  8672. U.MD.D.I.openApplication(str, obj, info);
  8673. }
  8674. }
  8675. break;
  8676. case "courseDesign":
  8677. _iframe = $$("iframe", {
  8678. "webkitallowfullscreen": "",
  8679. "mozallowfullscreen": "",
  8680. "allowfullscreen": "",
  8681. "frameborder": "no",
  8682. "border": "0",
  8683. "scrolling ": "no",
  8684. "style": {
  8685. "cssText": "border:0; width:100%; height:100%;"
  8686. },
  8687. "src": "/course-design-vue"
  8688. })
  8689. _box.appendChild(_iframe);
  8690. _box.appendChild(_jie);
  8691. _formdiv = new U.UF.UI.form(
  8692. "项目设计-" + _username,
  8693. _box, {
  8694. "id": "courseDesign" + cid + stage + task + tool + _userid,
  8695. "style": {
  8696. "width": "90%",
  8697. "height": "90%",
  8698. "overflow": 'hidden'
  8699. },
  8700. "onresize": function () { }
  8701. }, {
  8702. closecallback: function () { }
  8703. }, {
  8704. "style": {
  8705. "height": "36px"
  8706. }
  8707. }).form; //创建窗体
  8708. _taskbar = {
  8709. "id": str + _formdiv.id,
  8710. "style": {
  8711. "backgroundImage": "url(/img/icon/courseDesign.png)"
  8712. },
  8713. "name": "项目设计",
  8714. "forms": _formdiv,
  8715. "click": function () {
  8716. U.MD.D.I.openApplication(str, obj, info);
  8717. }
  8718. }
  8719. break;
  8720. }
  8721. const script1 = document.createElement("script");
  8722. script1.type = "text/javascript";
  8723. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  8724. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  8725. const script2 = document.createElement("script");
  8726. script2.type = "text/javascript";
  8727. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  8728. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  8729. const script3 = document.createElement("script");
  8730. script3.type = "text/javascript";
  8731. script3.charset = "UTF-8";
  8732. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  8733. const script4 = document.createElement("script");
  8734. script4.type = "text/javascript";
  8735. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu2.js";
  8736. script4.src = window.origin + "/js/Common/jietu2E.js";
  8737. if (_iframe) {
  8738. if (str == 'doc') {
  8739. _iframe = _formdiv.querySelector('iframe')
  8740. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8741. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool);
  8742. _iframe.contentWindow.document.body.appendChild(script1);
  8743. _iframe.contentWindow.document.body.appendChild(script2);
  8744. // _iframe.contentWindow.document.body.appendChild(script3);
  8745. _iframe.contentWindow.document.body.appendChild(script4);
  8746. })
  8747. if (onloadListener) {
  8748. _iframe.contentDocument.location.reload()
  8749. } else {
  8750. _iframe.contentDocument.location.reload()
  8751. }
  8752. } else if (str == 'courseDesign') {
  8753. U.UF.DL.iframeLoad(_iframe, function () {
  8754. // _iframe.contentWindow.U.MD.O.W.load();
  8755. // _iframe.contentWindow.document.body.appendChild(script1);
  8756. _iframe.contentWindow.document.body.appendChild(script2);
  8757. _iframe.contentWindow.document.body.appendChild(script4);
  8758. })
  8759. } else if (str == 'mind') {
  8760. _iframe = _formdiv.querySelector('iframe')
  8761. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  8762. //
  8763. _iframe.contentWindow.document.body.appendChild(script1);
  8764. _iframe.contentWindow.document.body.appendChild(script2);
  8765. _iframe.contentWindow.document.body.appendChild(script4);
  8766. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '2', _iframe)
  8767. })
  8768. if (onloadListener) {
  8769. _iframe.contentDocument.location.reload()
  8770. } else {
  8771. _iframe.contentDocument.location.reload()
  8772. }
  8773. } else if (str == 'whiteboard') {
  8774. _iframe = _formdiv.querySelector('iframe')
  8775. let onloadListener = _iframe.onload = () => {
  8776. _iframe.contentWindow.document.body.appendChild(script1);
  8777. _iframe.contentWindow.document.body.appendChild(script2);
  8778. _iframe.contentWindow.document.body.appendChild(script4);
  8779. U.MD.D.I.getContent(cid, stage, task, tool, _userid, '3', _iframe)
  8780. };
  8781. // if (onloadListener) {
  8782. // try {
  8783. // _iframe.src += "?cocorobo="+new Date().getTime()
  8784. // _iframe.contentWindow.document.location.reload()
  8785. // } catch (error) {
  8786. // }
  8787. // } else {
  8788. // _iframe.contentDocument.location.reload()
  8789. // }
  8790. } else {
  8791. _iframe.onload = () => {
  8792. _iframe.contentWindow.document.body.appendChild(script1);
  8793. _iframe.contentWindow.document.body.appendChild(script2);
  8794. // _iframe.contentWindow.document.body.appendChild(script3);
  8795. _iframe.contentWindow.document.body.appendChild(script4);
  8796. };
  8797. }
  8798. _jie.onclick = async () => {
  8799. let text = ''
  8800. if (aTool == 1) {
  8801. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  8802. } else if (aTool == 6) {
  8803. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  8804. } else if (aTool == 3) {
  8805. text = await U.MD.D.I.getEditorContent(_iframe);
  8806. }
  8807. _loading.style.display = 'flex'
  8808. console.log(_loading);
  8809. var _ajs = _iframe.contentWindow.document.createElement("script");
  8810. _ajs.type = "text/javascript";
  8811. _ajs.innerHTML =
  8812. // 'console.log(' + _loading + ');\n' +
  8813. 'var _js = document.createElement("script");\n' +
  8814. '_js.type="text/javascript";\n' +
  8815. '_js.charset="UTF-8";\n' +
  8816. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  8817. "_js.onload = function(){\n" +
  8818. ' var a = document.getElementsByTagName("img")\n' +
  8819. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  8820. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  8821. '  var base64Url = canvas.toDataURL("image/png");\n' +
  8822. 'var base64 = "<img src=" + base64Url + " />"\n' +
  8823. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  8824. "beforeUpload_shishi(file," +
  8825. "'" +
  8826. _userid +
  8827. "'" +
  8828. ", " +
  8829. "'" +
  8830. _cid +
  8831. "'" +
  8832. ", " +
  8833. "'" +
  8834. _stage +
  8835. "'" +
  8836. ", " +
  8837. "'" +
  8838. _task +
  8839. "'" +
  8840. ", " +
  8841. "'" +
  8842. _tool +
  8843. "'" +
  8844. ", " +
  8845. "'" +
  8846. (str + '_loadLi_JieTeacherE' + cid + stage + task + tool + _userid) +
  8847. "'" +
  8848. ", " +
  8849. "'" +
  8850. aTool +
  8851. "'" +
  8852. ", " +
  8853. "`" +
  8854. text +
  8855. "`" +
  8856. ")\n" +
  8857. " });\n" +
  8858. "}\n" +
  8859. "document.head.appendChild(_js);\n";
  8860. _iframe.contentWindow.document.head.appendChild(_ajs);
  8861. }
  8862. }
  8863. }
  8864. U.MD.D.I.getEditorContent = function (iframe) {
  8865. return new Promise((resolve, reject) => {
  8866. iframe.contentWindow.editor.minder.exportData('json').then(function (content) {
  8867. console.log(content);
  8868. resolve(content)
  8869. });
  8870. });
  8871. }
  8872. U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
  8873. // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
  8874. // if (res.value[0].length > 0) {
  8875. // // resolve(res.value[0][0].text);
  8876. // iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
  8877. // $(fileInput).val('');
  8878. // });
  8879. // }
  8880. // }, [], { "type": "GET", "withCredentials": true });
  8881. var xmlhttp;
  8882. var Mac, Sn, DeviceId
  8883. if (window.XMLHttpRequest) {
  8884. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  8885. xmlhttp = new XMLHttpRequest();
  8886. } else {
  8887. // IE6, IE5 浏览器执行代码
  8888. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8889. }
  8890. xmlhttp.onreadystatechange = function () {
  8891. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  8892. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  8893. // resolve(res.value[0][0].text);
  8894. if (type == '2') {
  8895. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  8896. } else if (type == '3') {
  8897. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  8898. }
  8899. } else {
  8900. U.MD.D.I.getContents2(cid, s, task, t, uid, type, iframe)
  8901. }
  8902. }
  8903. }
  8904. xmlhttp.open("GET", US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  8905. xmlhttp.send();
  8906. }
  8907. U.MD.D.I.openApplicationJieS = function (str, cid, stage, task, tool) {
  8908. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  8909. _formdiv, //创建任务栏时同时弹出的窗体元素。
  8910. _userinfo = US.userInfo, //登录用户信息
  8911. _userid = US.userInfo.userid //登录用户id
  8912. let _iframe;
  8913. let _cid = cid,
  8914. _stage = stage,
  8915. _task = task,
  8916. _tool = tool;
  8917. var _jie = $$("div", {
  8918. "style": {
  8919. "position": "absolute",
  8920. "bottom": "50px",
  8921. "right": "50px",
  8922. "zIndex": "9999",
  8923. "backgroundColor": "#2268bc",
  8924. "color": "#fff",
  8925. "padding": "12px 20px",
  8926. "cursor": "pointer",
  8927. "borderRadius": "4px",
  8928. },
  8929. "innerHTML": "确认并提交"
  8930. })
  8931. let aTool = ''
  8932. let _loading = document.createElement('div')
  8933. _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;"
  8934. // _loading.id = "";
  8935. let _lchild = document.createElement('div')
  8936. let _limg = document.createElement('img')
  8937. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  8938. _limg.style = "width: 26px;margin-right: 10px;"
  8939. _lchild.appendChild(_limg)
  8940. let _lspan = document.createElement('span')
  8941. _lspan.innerHTML = "上传中..."
  8942. _lchild.appendChild(_lspan)
  8943. _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%);"
  8944. _loading.appendChild(_lchild)
  8945. var _box = $$('div', {
  8946. "style": {
  8947. "position": "relative",
  8948. "width": "100%",
  8949. "height": "100%",
  8950. },
  8951. })
  8952. _box.appendChild(_loading)
  8953. _box.id = str + '_loadLi_JieS' + cid + stage + task + tool + _userid
  8954. switch (str) {
  8955. case "whiteboard":
  8956. aTool = 1;
  8957. _iframe = $$("iframe", {
  8958. "frameborder": "no",
  8959. "border": "0",
  8960. "scrolling ": "no",
  8961. "style": {
  8962. "cssText": "border:0;width:100%;height:100%"
  8963. },
  8964. "src": "https://beta.iwb.cocorobo.cn/"
  8965. })
  8966. _box.appendChild(_iframe);
  8967. _box.appendChild(_jie);
  8968. _formdiv = new U.UF.UI.form(
  8969. "电子白板",
  8970. _box, {
  8971. "id": "whiteboards" + cid + stage + task + tool,
  8972. "style": {
  8973. "width": "90%",
  8974. "height": "90%",
  8975. "overflow": 'hidden'
  8976. },
  8977. "onresize": function () { }
  8978. }, {
  8979. closecallback: function () { }
  8980. }, {
  8981. "style": {
  8982. "height": "36px"
  8983. }
  8984. }).form; //创建窗体
  8985. _taskbar = {
  8986. "id": str + _formdiv.id,
  8987. "style": {
  8988. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  8989. },
  8990. "name": "电子白板",
  8991. "forms": _formdiv,
  8992. "click": function () {
  8993. U.MD.D.I.openApplication(str, obj, info);
  8994. }
  8995. }
  8996. break;
  8997. case "mind":
  8998. aTool = 3;
  8999. _iframe = $$("iframe", {
  9000. "frameborder": "no",
  9001. "border": "0",
  9002. "scrolling ": "no",
  9003. "style": {
  9004. "cssText": "border:0;width:100%;height:100%"
  9005. },
  9006. "src": "/kityminder-editor/dist/index.html"
  9007. });
  9008. _box.appendChild(_iframe);
  9009. _box.appendChild(_jie);
  9010. _formdiv = new U.UF.UI.form(
  9011. "思维导图",
  9012. _box, { //"/jsmind/example/demo.html"
  9013. "id": "minds" + cid + stage + task + tool,
  9014. "style": {
  9015. "width": "90%",
  9016. "height": "90%",
  9017. "overflow": 'hidden'
  9018. },
  9019. "onresize": function () { }
  9020. }, {
  9021. closecallback: function () { }
  9022. }, {
  9023. "style": {
  9024. "height": "36px"
  9025. }
  9026. }).form; //创建窗体
  9027. _taskbar = {
  9028. "id": str + _formdiv.id,
  9029. "style": {
  9030. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9031. },
  9032. "name": "思维导图",
  9033. "forms": _formdiv,
  9034. "click": function () {
  9035. U.MD.D.I.openApplication(str, obj, info);
  9036. }
  9037. }
  9038. break;
  9039. case "doc":
  9040. aTool = 6;
  9041. _iframe = $$("iframe", {
  9042. "frameborder": "no",
  9043. "border": "0",
  9044. "scrolling ": "no",
  9045. "style": {
  9046. "cssText": "border:0;width:100%;height:100%"
  9047. },
  9048. "src": "/Office/Word/WordEditArea.htm"
  9049. })
  9050. _box.appendChild(_iframe);
  9051. _box.appendChild(_jie);
  9052. _formdiv = new U.UF.UI.form(
  9053. "协同文档",
  9054. _box, {
  9055. "id": "docs" + cid + stage + task + tool,
  9056. "style": {
  9057. "width": "90%",
  9058. "height": "90%",
  9059. "overflow": 'hidden'
  9060. },
  9061. "onresize": function () { }
  9062. }, {
  9063. closecallback: function () { }
  9064. }, {
  9065. "style": {
  9066. "height": "36px"
  9067. }
  9068. }).form; //创建窗体
  9069. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9070. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9071. })
  9072. _taskbar = {
  9073. "id": str + _formdiv.id,
  9074. "style": {
  9075. "backgroundImage": "url(/img/icon/doc.png)"
  9076. },
  9077. "name": "协同文档",
  9078. "forms": _formdiv,
  9079. "click": function () {
  9080. U.MD.D.I.openApplication(str, obj, info);
  9081. }
  9082. }
  9083. break;
  9084. }
  9085. const script1 = document.createElement("script");
  9086. script1.type = "text/javascript";
  9087. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9088. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9089. const script2 = document.createElement("script");
  9090. script2.type = "text/javascript";
  9091. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9092. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9093. const script3 = document.createElement("script");
  9094. script3.type = "text/javascript";
  9095. script3.charset = "UTF-8";
  9096. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9097. const script4 = document.createElement("script");
  9098. script4.type = "text/javascript";
  9099. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9100. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu4.js";
  9101. if (_iframe) {
  9102. if (str == 'doc') {
  9103. _iframe = _formdiv.querySelector('iframe')
  9104. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9105. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9106. _iframe.contentWindow.document.body.appendChild(script1);
  9107. _iframe.contentWindow.document.body.appendChild(script2);
  9108. // _iframe.contentWindow.document.body.appendChild(script3);
  9109. _iframe.contentWindow.document.body.appendChild(script4);
  9110. })
  9111. if (onloadListener) {
  9112. _iframe.contentDocument.location.reload()
  9113. } else {
  9114. _iframe.contentDocument.location.reload()
  9115. }
  9116. } else if (str == 'mind') {
  9117. _iframe = _formdiv.querySelector('iframe')
  9118. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9119. _iframe.contentWindow.document.body.appendChild(script1);
  9120. _iframe.contentWindow.document.body.appendChild(script2);
  9121. _iframe.contentWindow.document.body.appendChild(script4);
  9122. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9123. })
  9124. if (onloadListener) {
  9125. _iframe.contentDocument.location.reload()
  9126. } else {
  9127. _iframe.contentDocument.location.reload()
  9128. }
  9129. } else {
  9130. _iframe.onload = () => {
  9131. _iframe.contentWindow.document.body.appendChild(script1);
  9132. _iframe.contentWindow.document.body.appendChild(script2);
  9133. // _iframe.contentWindow.document.body.appendChild(script3);
  9134. _iframe.contentWindow.document.body.appendChild(script4);
  9135. };
  9136. }
  9137. _jie.onclick = async () => {
  9138. let text = ''
  9139. if (aTool == 6) {
  9140. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9141. } else if (aTool == 3) {
  9142. text = await U.MD.D.I.getEditorContent(_iframe);
  9143. }
  9144. _loading.style.display = 'flex'
  9145. console.log(_loading);
  9146. var _ajs = _iframe.contentWindow.document.createElement("script");
  9147. _ajs.type = "text/javascript";
  9148. _ajs.innerHTML =
  9149. // 'console.log(' + _loading + ');\n' +
  9150. 'var _js = document.createElement("script");\n' +
  9151. '_js.type="text/javascript";\n' +
  9152. '_js.charset="UTF-8";\n' +
  9153. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9154. "_js.onload = function(){\n" +
  9155. ' var a = document.getElementsByTagName("img")\n' +
  9156. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9157. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9158. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9159. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9160. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9161. "beforeUpload_shishi(file," +
  9162. "'" +
  9163. _userid +
  9164. "'" +
  9165. ", " +
  9166. "'" +
  9167. _cid +
  9168. "'" +
  9169. ", " +
  9170. "'" +
  9171. _stage +
  9172. "'" +
  9173. ", " +
  9174. "'" +
  9175. _task +
  9176. "'" +
  9177. ", " +
  9178. "'" +
  9179. _tool +
  9180. "'" +
  9181. ", " +
  9182. "'" +
  9183. (str + '_loadLi_JieS' + cid + stage + task + tool + _userid) +
  9184. "'" +
  9185. ", " +
  9186. "'" +
  9187. aTool +
  9188. "'" +
  9189. ", " +
  9190. "`" +
  9191. text +
  9192. "`" +
  9193. ")\n" +
  9194. " });\n" +
  9195. "}\n" +
  9196. "document.head.appendChild(_js);\n";
  9197. _iframe.contentWindow.document.head.appendChild(_ajs);
  9198. }
  9199. }
  9200. //U.MD.D.I.openClick(str);
  9201. //如果有任务栏信息
  9202. // if (_taskbar) {
  9203. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9204. // }
  9205. }
  9206. U.MD.D.I.openApplicationJieStudio = function (str, cid, stage, task, tool) {
  9207. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9208. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9209. _userinfo = US.userInfo, //登录用户信息
  9210. _userid = US.userInfo.userid //登录用户id
  9211. let _iframe;
  9212. let _cid = cid,
  9213. _stage = stage,
  9214. _task = task,
  9215. _tool = tool;
  9216. var _jie = $$("div", {
  9217. "style": {
  9218. "position": "absolute",
  9219. "bottom": "50px",
  9220. "right": "50px",
  9221. "zIndex": "9999",
  9222. "backgroundColor": "#2268bc",
  9223. "color": "#fff",
  9224. "padding": "12px 20px",
  9225. "cursor": "pointer",
  9226. "borderRadius": "4px",
  9227. },
  9228. "innerHTML": "确认并提交"
  9229. })
  9230. let aTool = ''
  9231. let _loading = document.createElement('div')
  9232. _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;"
  9233. // _loading.id = "";
  9234. let _lchild = document.createElement('div')
  9235. let _limg = document.createElement('img')
  9236. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9237. _limg.style = "width: 26px;margin-right: 10px;"
  9238. _lchild.appendChild(_limg)
  9239. let _lspan = document.createElement('span')
  9240. _lspan.innerHTML = "上传中..."
  9241. _lchild.appendChild(_lspan)
  9242. _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%);"
  9243. _loading.appendChild(_lchild)
  9244. var _box = $$('div', {
  9245. "style": {
  9246. "position": "relative",
  9247. "width": "100%",
  9248. "height": "100%",
  9249. },
  9250. })
  9251. _box.appendChild(_loading)
  9252. _box.id = str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid
  9253. switch (str) {
  9254. case "whiteboard":
  9255. aTool = 1;
  9256. _iframe = $$("iframe", {
  9257. "frameborder": "no",
  9258. "border": "0",
  9259. "scrolling ": "no",
  9260. "style": {
  9261. "cssText": "border:0;width:100%;height:100%"
  9262. },
  9263. "src": "https://beta.iwb.cocorobo.cn/"
  9264. })
  9265. _box.appendChild(_iframe);
  9266. _box.appendChild(_jie);
  9267. _formdiv = new U.UF.UI.form(
  9268. "电子白板",
  9269. _box, {
  9270. "id": "whiteboards" + cid + stage + task + tool,
  9271. "style": {
  9272. "width": "90%",
  9273. "height": "90%",
  9274. "overflow": 'hidden'
  9275. },
  9276. "onresize": function () { }
  9277. }, {
  9278. closecallback: function () { }
  9279. }, {
  9280. "style": {
  9281. "height": "36px"
  9282. }
  9283. }).form; //创建窗体
  9284. _taskbar = {
  9285. "id": str + _formdiv.id,
  9286. "style": {
  9287. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9288. },
  9289. "name": "电子白板",
  9290. "forms": _formdiv,
  9291. "click": function () {
  9292. U.MD.D.I.openApplication(str, obj, info);
  9293. }
  9294. }
  9295. break;
  9296. case "mind":
  9297. aTool = 3;
  9298. _iframe = $$("iframe", {
  9299. "frameborder": "no",
  9300. "border": "0",
  9301. "scrolling ": "no",
  9302. "style": {
  9303. "cssText": "border:0;width:100%;height:100%"
  9304. },
  9305. "src": "/kityminder-editor/dist/index.html"
  9306. });
  9307. _box.appendChild(_iframe);
  9308. _box.appendChild(_jie);
  9309. _formdiv = new U.UF.UI.form(
  9310. "思维导图",
  9311. _box, { //"/jsmind/example/demo.html"
  9312. "id": "minds" + cid + stage + task + tool,
  9313. "style": {
  9314. "width": "90%",
  9315. "height": "90%",
  9316. "overflow": 'hidden'
  9317. },
  9318. "onresize": function () { }
  9319. }, {
  9320. closecallback: function () { }
  9321. }, {
  9322. "style": {
  9323. "height": "36px"
  9324. }
  9325. }).form; //创建窗体
  9326. _taskbar = {
  9327. "id": str + _formdiv.id,
  9328. "style": {
  9329. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9330. },
  9331. "name": "思维导图",
  9332. "forms": _formdiv,
  9333. "click": function () {
  9334. U.MD.D.I.openApplication(str, obj, info);
  9335. }
  9336. }
  9337. break;
  9338. case "doc":
  9339. aTool = 6;
  9340. _iframe = $$("iframe", {
  9341. "frameborder": "no",
  9342. "border": "0",
  9343. "scrolling ": "no",
  9344. "style": {
  9345. "cssText": "border:0;width:100%;height:100%"
  9346. },
  9347. "src": "/Office/Word/WordEditArea.htm"
  9348. })
  9349. _box.appendChild(_iframe);
  9350. _box.appendChild(_jie);
  9351. _formdiv = new U.UF.UI.form(
  9352. "协同文档",
  9353. _box, {
  9354. "id": "docs" + cid + stage + task + tool,
  9355. "style": {
  9356. "width": "90%",
  9357. "height": "90%",
  9358. "overflow": 'hidden'
  9359. },
  9360. "onresize": function () { }
  9361. }, {
  9362. closecallback: function () { }
  9363. }, {
  9364. "style": {
  9365. "height": "36px"
  9366. }
  9367. }).form; //创建窗体
  9368. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9369. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9370. })
  9371. _taskbar = {
  9372. "id": str + _formdiv.id,
  9373. "style": {
  9374. "backgroundImage": "url(/img/icon/doc.png)"
  9375. },
  9376. "name": "协同文档",
  9377. "forms": _formdiv,
  9378. "click": function () {
  9379. U.MD.D.I.openApplication(str, obj, info);
  9380. }
  9381. }
  9382. break;
  9383. }
  9384. const script1 = document.createElement("script");
  9385. script1.type = "text/javascript";
  9386. // script1.src = US.Config.bpbl + "/pbl-student-table/dist/js/jquery-3.6.0.min.js";
  9387. script1.src = "https://cloud.cocorobo.cn/js/Common/jquery-3.6.0.min.js";
  9388. const script2 = document.createElement("script");
  9389. script2.type = "text/javascript";
  9390. // script2.src = US.Config.bpbl + "/pbl-student-table/dist/js/aws-sdk-2.235.1.min.js";
  9391. script2.src = "https://cloud.cocorobo.cn/js/Common/aws-sdk-2.235.1.min.js";
  9392. const script3 = document.createElement("script");
  9393. script3.type = "text/javascript";
  9394. script3.charset = "UTF-8";
  9395. script3.src = "https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";
  9396. const script4 = document.createElement("script");
  9397. script4.type = "text/javascript";
  9398. // script4.src = US.Config.bpbl + "/pbl-student-table/dist/js/jietu4.js";
  9399. script4.src = "https://cloud.cocorobo.cn/js/Common/jietu5.js";
  9400. if (_iframe) {
  9401. if (str == 'doc') {
  9402. _iframe = _formdiv.querySelector('iframe')
  9403. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9404. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9405. _iframe.contentWindow.document.body.appendChild(script1);
  9406. _iframe.contentWindow.document.body.appendChild(script2);
  9407. // _iframe.contentWindow.document.body.appendChild(script3);
  9408. _iframe.contentWindow.document.body.appendChild(script4);
  9409. })
  9410. if (onloadListener) {
  9411. _iframe.contentDocument.location.reload()
  9412. } else {
  9413. _iframe.contentDocument.location.reload()
  9414. }
  9415. } else if (str == 'mind') {
  9416. _iframe = _formdiv.querySelector('iframe')
  9417. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9418. _iframe.contentWindow.document.body.appendChild(script1);
  9419. _iframe.contentWindow.document.body.appendChild(script2);
  9420. _iframe.contentWindow.document.body.appendChild(script4);
  9421. U.MD.D.I.getContents(cid, stage, task, tool, _userid, '2', _iframe)
  9422. })
  9423. if (onloadListener) {
  9424. _iframe.contentDocument.location.reload()
  9425. } else {
  9426. _iframe.contentDocument.location.reload()
  9427. }
  9428. } else {
  9429. _iframe.onload = () => {
  9430. _iframe.contentWindow.document.body.appendChild(script1);
  9431. _iframe.contentWindow.document.body.appendChild(script2);
  9432. // _iframe.contentWindow.document.body.appendChild(script3);
  9433. _iframe.contentWindow.document.body.appendChild(script4);
  9434. };
  9435. }
  9436. _jie.onclick = async () => {
  9437. let text = ''
  9438. if (aTool == 6) {
  9439. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9440. } else if (aTool == 3) {
  9441. text = await U.MD.D.I.getEditorContent(_iframe);
  9442. }
  9443. _loading.style.display = 'flex'
  9444. console.log(_loading);
  9445. var _ajs = _iframe.contentWindow.document.createElement("script");
  9446. _ajs.type = "text/javascript";
  9447. _ajs.innerHTML =
  9448. // 'console.log(' + _loading + ');\n' +
  9449. 'var _js = document.createElement("script");\n' +
  9450. '_js.type="text/javascript";\n' +
  9451. '_js.charset="UTF-8";\n' +
  9452. '_js.src="https://cloud.cocorobo.cn/js/Common/html2canvas.min.js";\n' +
  9453. "_js.onload = function(){\n" +
  9454. ' var a = document.getElementsByTagName("img")\n' +
  9455. ' for(var i = 0;i<a.length;i++){a[i].crossOrigin="anonymous"}\n' +
  9456. " html2canvas(document.body,{allowTaint: true,useCORS: true,height: document.body.scrollHeight,windowHeight: document.body.scrollHeight}).then(canvas => {\n" +
  9457. '  var base64Url = canvas.toDataURL("image/png");\n' +
  9458. 'var base64 = "<img src=" + base64Url + " />"\n' +
  9459. 'var file = dataURLtoFile_shishi(base64Url, "截图")\n' +
  9460. "beforeUpload_shishi(file," +
  9461. "'" +
  9462. _userid +
  9463. "'" +
  9464. ", " +
  9465. "'" +
  9466. _cid +
  9467. "'" +
  9468. ", " +
  9469. "'" +
  9470. _stage +
  9471. "'" +
  9472. ", " +
  9473. "'" +
  9474. _task +
  9475. "'" +
  9476. ", " +
  9477. "'" +
  9478. _tool +
  9479. "'" +
  9480. ", " +
  9481. "'" +
  9482. (str + '_loadLi_JieStudio' + cid + stage + task + tool + _userid) +
  9483. "'" +
  9484. ", " +
  9485. "'" +
  9486. aTool +
  9487. "'" +
  9488. ", " +
  9489. "`" +
  9490. text +
  9491. "`" +
  9492. ")\n" +
  9493. " });\n" +
  9494. "}\n" +
  9495. "document.head.appendChild(_js);\n";
  9496. _iframe.contentWindow.document.head.appendChild(_ajs);
  9497. }
  9498. }
  9499. //U.MD.D.I.openClick(str);
  9500. //如果有任务栏信息
  9501. // if (_taskbar) {
  9502. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9503. // }
  9504. }
  9505. U.MD.D.I.openApplicationYu = function (str, cid, stage, task, tool) {
  9506. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9507. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9508. _userinfo = US.userInfo, //登录用户信息
  9509. _userid = US.userInfo.userid //登录用户id
  9510. let _iframe;
  9511. let _cid = cid,
  9512. _stage = stage,
  9513. _task = task,
  9514. _tool = tool;
  9515. var _jie = $$("div", {
  9516. "style": {
  9517. "position": "absolute",
  9518. "bottom": "50px",
  9519. "right": "50px",
  9520. "zIndex": "9999",
  9521. "backgroundColor": "#2268bc",
  9522. "color": "#fff",
  9523. "padding": "12px 20px",
  9524. "cursor": "pointer",
  9525. "borderRadius": "4px",
  9526. },
  9527. "innerHTML": "上传模板"
  9528. })
  9529. let aTool = ''
  9530. let _loading = document.createElement('div')
  9531. _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;"
  9532. // _loading.id = "";
  9533. let _lchild = document.createElement('div')
  9534. let _limg = document.createElement('img')
  9535. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9536. _limg.style = "width: 26px;margin-right: 10px;"
  9537. _lchild.appendChild(_limg)
  9538. let _lspan = document.createElement('span')
  9539. _lspan.innerHTML = "上传中..."
  9540. _lchild.appendChild(_lspan)
  9541. _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%);"
  9542. _loading.appendChild(_lchild)
  9543. var _box = $$('div', {
  9544. "style": {
  9545. "position": "relative",
  9546. "width": "100%",
  9547. "height": "100%",
  9548. },
  9549. })
  9550. _box.appendChild(_loading)
  9551. _box.id = str + '_loadLi_Yu' + cid + stage + task + tool + _userid
  9552. switch (str) {
  9553. case "whiteboard":
  9554. aTool = 1;
  9555. _iframe = $$("iframe", {
  9556. "frameborder": "no",
  9557. "border": "0",
  9558. "scrolling ": "no",
  9559. "style": {
  9560. "cssText": "border:0;width:100%;height:100%"
  9561. },
  9562. "src": "https://beta.iwb.cocorobo.cn/"
  9563. })
  9564. _box.appendChild(_iframe);
  9565. _box.appendChild(_jie);
  9566. _formdiv = new U.UF.UI.form(
  9567. "电子白板",
  9568. _box, {
  9569. "id": "whiteboards_Yu" + cid + stage + task + tool,
  9570. "style": {
  9571. "width": "90%",
  9572. "height": "90%",
  9573. "overflow": 'hidden'
  9574. },
  9575. "onresize": function () { }
  9576. }, {
  9577. closecallback: function () { }
  9578. }, {
  9579. "style": {
  9580. "height": "36px"
  9581. }
  9582. }).form; //创建窗体
  9583. _taskbar = {
  9584. "id": str + _formdiv.id,
  9585. "style": {
  9586. "backgroundImage": "url(/img/icon/whiteBoard.png)"
  9587. },
  9588. "name": "电子白板",
  9589. "forms": _formdiv,
  9590. "click": function () {
  9591. U.MD.D.I.openApplication(str, obj, info);
  9592. }
  9593. }
  9594. break;
  9595. case "mind":
  9596. aTool = 3;
  9597. _iframe = $$("iframe", {
  9598. "frameborder": "no",
  9599. "border": "0",
  9600. "scrolling ": "no",
  9601. "style": {
  9602. "cssText": "border:0;width:100%;height:100%"
  9603. },
  9604. "src": "/kityminder-editor/dist/index.html"
  9605. });
  9606. _box.appendChild(_iframe);
  9607. _box.appendChild(_jie);
  9608. _formdiv = new U.UF.UI.form(
  9609. "思维导图",
  9610. _box, { //"/jsmind/example/demo.html"
  9611. "id": "minds_Yu" + cid + stage + task + tool,
  9612. "style": {
  9613. "width": "90%",
  9614. "height": "90%",
  9615. "overflow": 'hidden'
  9616. },
  9617. "onresize": function () { }
  9618. }, {
  9619. closecallback: function () { }
  9620. }, {
  9621. "style": {
  9622. "height": "36px"
  9623. }
  9624. }).form; //创建窗体
  9625. _taskbar = {
  9626. "id": str + _formdiv.id,
  9627. "style": {
  9628. "backgroundImage": "url(/img/icon/mindMapping.png)"
  9629. },
  9630. "name": "思维导图",
  9631. "forms": _formdiv,
  9632. "click": function () {
  9633. U.MD.D.I.openApplication(str, obj, info);
  9634. }
  9635. }
  9636. break;
  9637. case "doc":
  9638. aTool = 6;
  9639. _iframe = $$("iframe", {
  9640. "frameborder": "no",
  9641. "border": "0",
  9642. "scrolling ": "no",
  9643. "style": {
  9644. "cssText": "border:0;width:100%;height:100%"
  9645. },
  9646. "src": "/Office/Word/WordEditArea.htm"
  9647. })
  9648. _box.appendChild(_iframe);
  9649. _box.appendChild(_jie);
  9650. _formdiv = new U.UF.UI.form(
  9651. "协同文档",
  9652. _box, {
  9653. "id": "docs_Yu" + cid + stage + task + tool,
  9654. "style": {
  9655. "width": "90%",
  9656. "height": "90%",
  9657. "overflow": 'hidden'
  9658. },
  9659. "onresize": function () { }
  9660. }, {
  9661. closecallback: function () { }
  9662. }, {
  9663. "style": {
  9664. "height": "36px"
  9665. }
  9666. }).form; //创建窗体
  9667. U.UF.DL.iframeLoad($("iframe", _formdiv)[0], function () {
  9668. $("iframe", _formdiv)[0].contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9669. })
  9670. _taskbar = {
  9671. "id": str + _formdiv.id,
  9672. "style": {
  9673. "backgroundImage": "url(/img/icon/doc.png)"
  9674. },
  9675. "name": "协同文档",
  9676. "forms": _formdiv,
  9677. "click": function () {
  9678. U.MD.D.I.openApplication(str, obj, info);
  9679. }
  9680. }
  9681. break;
  9682. case "CocoPi":
  9683. aTool = 57;
  9684. _iframe = $$("iframe", {
  9685. "allowpaymentrequest": "allowpaymentrequest",
  9686. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9687. "webkitallowfullscreen": "",
  9688. "mozallowfullscreen": "",
  9689. "frameborder": "no",
  9690. "border": "0",
  9691. "scrolling ": "no",
  9692. "style": {
  9693. "cssText": "border:0;width:100%;height:100%"
  9694. },
  9695. "src": "https://pi.cocorobo.cn/"
  9696. })
  9697. _box.appendChild(_iframe);
  9698. _box.appendChild(_jie);
  9699. _formdiv = new U.UF.UI.form(
  9700. "CocoPi",
  9701. _box, {
  9702. "id": "CocoPi_Yu" + cid + stage + task + tool,
  9703. "style": {
  9704. "width": "90%",
  9705. "height": "90%",
  9706. "overflow": 'hidden'
  9707. },
  9708. "onresize": function () { }
  9709. }, {
  9710. closecallback: function () { }
  9711. }, {
  9712. "style": {
  9713. "height": "36px"
  9714. }
  9715. }).form; //创建窗体
  9716. _taskbar = {
  9717. "id": str + _formdiv.id,
  9718. "style": {
  9719. "backgroundImage": "url(/img/icon/cocopi.png)"
  9720. },
  9721. "name": "CocoPi",
  9722. "forms": _formdiv,
  9723. "click": function () {
  9724. U.MD.D.I.openApplication(str, obj, info);
  9725. }
  9726. }
  9727. break;
  9728. }
  9729. if (_iframe) {
  9730. if (str == 'doc') {
  9731. _iframe = _formdiv.querySelector('iframe')
  9732. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9733. _iframe.contentWindow.U.MD.O.W.load(cid, stage, task, tool, '2');
  9734. })
  9735. if (onloadListener) {
  9736. _iframe.contentDocument.location.reload()
  9737. } else {
  9738. _iframe.contentDocument.location.reload()
  9739. }
  9740. } else if (str == 'mind') {
  9741. _iframe = _formdiv.querySelector('iframe')
  9742. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9743. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '2', _iframe)
  9744. })
  9745. if (onloadListener) {
  9746. _iframe.contentDocument.location.reload()
  9747. } else {
  9748. _iframe.contentDocument.location.reload()
  9749. }
  9750. } else if (str == 'whiteboard') {
  9751. _iframe = _formdiv.querySelector('iframe')
  9752. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9753. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '3', _iframe)
  9754. })
  9755. // if (onloadListener) {
  9756. // try {
  9757. // _iframe.src += "?cocorobo="+new Date().getTime()
  9758. // _iframe.contentWindow.document.location.reload()
  9759. // } catch (error) {
  9760. // }
  9761. // } else {
  9762. // _iframe.contentDocument.location.reload()
  9763. // }
  9764. } else if (str == 'CocoPi') {
  9765. _iframe = _formdiv.querySelector('iframe')
  9766. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9767. U.MD.D.I.getContents2(cid, stage, task, tool, _userid, '4', _iframe)
  9768. })
  9769. if (onloadListener) {
  9770. _iframe.contentDocument.location.reload()
  9771. } else {
  9772. _iframe.contentDocument.location.reload()
  9773. }
  9774. } else {
  9775. _iframe.onload = () => { };
  9776. }
  9777. _jie.onclick = async () => {
  9778. let text = ''
  9779. let type = '2'
  9780. if (aTool == 1) {
  9781. text = JSON.stringify(_iframe.contentWindow.h.app.scene.elements)
  9782. type = '3'
  9783. } else if (aTool == 6) {
  9784. text = _iframe.contentWindow.$("#U_MD_O_H_wordEditor")[0].innerHTML.escapeQuotes()
  9785. type = '1'
  9786. } else if (aTool == 3) {
  9787. text = await U.MD.D.I.getEditorContent(_iframe);
  9788. type = '2'
  9789. } else if (aTool == 57) {
  9790. text = encodeURIComponent(_iframe.contentWindow.getLoadXmlStr())
  9791. type = '4'
  9792. }
  9793. _loading.style.display = 'flex'
  9794. U.MD.D.I.setContents(_cid, _stage, _task, _tool, _userid, type, text, _loading, _lspan)
  9795. }
  9796. }
  9797. //U.MD.D.I.openClick(str);
  9798. //如果有任务栏信息
  9799. // if (_taskbar) {
  9800. // U.MD.D.T.taskbar(_taskbar); //创建任务处理
  9801. // }
  9802. }
  9803. U.MD.D.I.getContents = function (cid, s, task, t, uid, type, iframe) {
  9804. var xmlhttp;
  9805. var Mac, Sn, DeviceId
  9806. if (window.XMLHttpRequest) {
  9807. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9808. xmlhttp = new XMLHttpRequest();
  9809. } else {
  9810. // IE6, IE5 浏览器执行代码
  9811. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9812. }
  9813. xmlhttp.onreadystatechange = function () {
  9814. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9815. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9816. // resolve(res.value[0][0].text);
  9817. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9818. }
  9819. }
  9820. }
  9821. xmlhttp.open("GET", US.Config.pbl + "selectWords?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9822. xmlhttp.send();
  9823. }
  9824. U.MD.D.I.getContents2 = function (cid, s, task, t, uid, type, iframe) {
  9825. var xmlhttp;
  9826. var Mac, Sn, DeviceId
  9827. if (window.XMLHttpRequest) {
  9828. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9829. xmlhttp = new XMLHttpRequest();
  9830. } else {
  9831. // IE6, IE5 浏览器执行代码
  9832. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9833. }
  9834. xmlhttp.onreadystatechange = function () {
  9835. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9836. if (xmlhttp.response && JSON.parse(xmlhttp.response)[0].length > 0) {
  9837. // resolve(res.value[0][0].text);
  9838. if (type == '2') {
  9839. iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text)
  9840. } else if (type == '3') {
  9841. iframe.contentWindow.h.app.updateScene({ elements: JSON.parse(JSON.parse(xmlhttp.response)[0][0].text) })
  9842. } else if (type == '4') {
  9843. iframe.contentWindow.loadingXml(JSON.parse(xmlhttp.response)[0][0].text)
  9844. }
  9845. } else {
  9846. if (type == '2') {
  9847. iframe.contentWindow.editor.minder.importData('json', '')
  9848. } else if (type == '3') {
  9849. iframe.contentWindow.h.app.updateScene({ elements: [] })
  9850. } else if (type == '4') {
  9851. iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  9852. }
  9853. }
  9854. }
  9855. }
  9856. xmlhttp.open("GET", US.Config.pbl + "selectWordsY?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, true);
  9857. xmlhttp.send();
  9858. }
  9859. U.MD.D.I.setContents = function (cid, s, task, t, uid, type, text, loading, span) {
  9860. var xmlhttp;
  9861. var Mac, Sn, DeviceId
  9862. if (window.XMLHttpRequest) {
  9863. // IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
  9864. xmlhttp = new XMLHttpRequest();
  9865. } else {
  9866. // IE6, IE5 浏览器执行代码
  9867. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  9868. }
  9869. xmlhttp.onreadystatechange = function () {
  9870. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  9871. if (xmlhttp.response) {
  9872. // resolve(res.value[0][0].text);
  9873. // iframe.contentWindow.editor.minder.importData('json', JSON.parse(xmlhttp.response)[0][0].text).then(function (data) {
  9874. // $(fileInput).val('');
  9875. // });
  9876. span.innerHTML = '上传成功'
  9877. setTimeout(() => {
  9878. loading.style.display = 'none'
  9879. }, 1000);
  9880. }
  9881. }
  9882. }
  9883. // xmlhttp.open("GET", US.Config.pbl + "insertWord2y?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t+ "&text=" + text + "&type=" + type, true);
  9884. xmlhttp.open("POST", US.Config.pbl + "insertWord2y", true);
  9885. // xmlhttp.open("POST", "http://localhost:7003/api/pbl/" + "insertWord2y", true);
  9886. xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
  9887. // 设置请求头,表示请求体的编码格式
  9888. xmlhttp.send("uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&text=" + text.replaceAll(/%/g, "%25") + "&type=" + type);
  9889. // 设置请求体,使用url-encoded格式的数据
  9890. }
  9891. U.MD.D.I.openApplicationUpload = function (str, cid, stage, task, tool) {
  9892. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  9893. _formdiv, //创建任务栏时同时弹出的窗体元素。
  9894. _userinfo = US.userInfo, //登录用户信息
  9895. _userid = US.userInfo.userid //登录用户id
  9896. let _iframe;
  9897. let _cid = cid,
  9898. _stage = stage,
  9899. _task = task,
  9900. _tool = tool;
  9901. var _jie = $$("div", {
  9902. "style": {
  9903. "position": "absolute",
  9904. "bottom": "50px",
  9905. "right": "50px",
  9906. "zIndex": "9999",
  9907. "backgroundColor": "#2268bc",
  9908. "color": "#fff",
  9909. "padding": "12px 20px",
  9910. "cursor": "pointer",
  9911. "borderRadius": "4px",
  9912. },
  9913. "innerHTML": "提交作业"
  9914. })
  9915. let aTool = ''
  9916. let _loading = document.createElement('div')
  9917. _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;"
  9918. // _loading.id = "";
  9919. let _lchild = document.createElement('div')
  9920. let _limg = document.createElement('img')
  9921. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  9922. _limg.style = "width: 26px;margin-right: 10px;"
  9923. _lchild.appendChild(_limg)
  9924. let _lspan = document.createElement('span')
  9925. _lspan.innerHTML = "上传中..."
  9926. _lchild.appendChild(_lspan)
  9927. _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%);"
  9928. _loading.appendChild(_lchild)
  9929. var _box = $$('div', {
  9930. "style": {
  9931. "position": "relative",
  9932. "width": "100%",
  9933. "height": "100%",
  9934. },
  9935. })
  9936. _box.appendChild(_loading)
  9937. _box.id = str + '_loadLi_Upload' + cid + stage + task + tool + _userid
  9938. switch (str) {
  9939. case "CocoPi":
  9940. aTool = 57;
  9941. _iframe = $$("iframe", {
  9942. "allowpaymentrequest": "allowpaymentrequest",
  9943. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  9944. "webkitallowfullscreen": "",
  9945. "mozallowfullscreen": "",
  9946. "frameborder": "no",
  9947. "border": "0",
  9948. "scrolling ": "no",
  9949. "style": {
  9950. "cssText": "border:0;width:100%;height:100%"
  9951. },
  9952. "src": "https://pi.cocorobo.cn/"
  9953. })
  9954. _box.appendChild(_iframe);
  9955. _box.appendChild(_jie);
  9956. _formdiv = new U.UF.UI.form(
  9957. "CocoPi",
  9958. _box, {
  9959. "id": "CocoPi_Upload" + cid + stage + task + tool,
  9960. "style": {
  9961. "width": "90%",
  9962. "height": "90%",
  9963. "overflow": 'hidden'
  9964. },
  9965. "onresize": function () { }
  9966. }, {
  9967. closecallback: function () { }
  9968. }, {
  9969. "style": {
  9970. "height": "36px"
  9971. }
  9972. }).form; //创建窗体
  9973. _taskbar = {
  9974. "id": str + _formdiv.id,
  9975. "style": {
  9976. "backgroundImage": "url(/img/icon/cocopi.png)"
  9977. },
  9978. "name": "CocoPi",
  9979. "forms": _formdiv,
  9980. "click": function () {
  9981. U.MD.D.I.openApplication(str, obj, info);
  9982. }
  9983. }
  9984. break;
  9985. }
  9986. if (_iframe) {
  9987. if (str == 'CocoPi') {
  9988. _iframe = _formdiv.querySelector('iframe')
  9989. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  9990. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  9991. })
  9992. if (onloadListener) {
  9993. _iframe.contentDocument.location.reload()
  9994. } else {
  9995. _iframe.contentDocument.location.reload()
  9996. }
  9997. }
  9998. _jie.onclick = async () => {
  9999. let text = ''
  10000. if (aTool == 57) {
  10001. text = _iframe.contentWindow.getLoadXmlStr()
  10002. }
  10003. _loading.style.display = 'flex'
  10004. console.log(_loading);
  10005. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10006. _loading.style.display = 'none'
  10007. let _div = document.createElement('div')
  10008. _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;"
  10009. let _inner = document.createElement('div')
  10010. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10011. _inner.innerHTML = "上传成功"
  10012. _div.appendChild(_inner)
  10013. _iframe.contentWindow.window.document.body.appendChild(_div)
  10014. _div.onclick = () => {
  10015. _iframe.contentWindow.window.document.body.removeChild(_div)
  10016. }
  10017. setTimeout(() => {
  10018. _iframe.contentWindow.window.document.body.removeChild(_div)
  10019. }, 1000);
  10020. }, [], { "type": "POST", "withCredentials": true });
  10021. }
  10022. }
  10023. }
  10024. U.MD.D.I.openApplicationTeacherUpload = function (str, cid, stage, task, tool, student) {
  10025. var _taskbar, //_taskbar 作为任务栏显示的元素,包含图标和名字
  10026. _formdiv, //创建任务栏时同时弹出的窗体元素。
  10027. _userid = student.userid, //登录用户id
  10028. _username = student.student //用户名字
  10029. let _iframe;
  10030. let _cid = cid,
  10031. _stage = stage,
  10032. _task = task,
  10033. _tool = tool;
  10034. var _jie = $$("div", {
  10035. "style": {
  10036. "position": "absolute",
  10037. "bottom": "50px",
  10038. "right": "50px",
  10039. "zIndex": "9999",
  10040. "backgroundColor": "#2268bc",
  10041. "color": "#fff",
  10042. "padding": "12px 20px",
  10043. "cursor": "pointer",
  10044. "borderRadius": "4px",
  10045. },
  10046. "innerHTML": "提交作业"
  10047. })
  10048. let aTool = ''
  10049. let _loading = document.createElement('div')
  10050. _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;"
  10051. // _loading.id = "";
  10052. let _lchild = document.createElement('div')
  10053. let _limg = document.createElement('img')
  10054. _limg.src = US.Config.bpbl + '/pbl-student-table/dist/js/loading.gif'
  10055. _limg.style = "width: 26px;margin-right: 10px;"
  10056. _lchild.appendChild(_limg)
  10057. let _lspan = document.createElement('span')
  10058. _lspan.innerHTML = "上传中..."
  10059. _lchild.appendChild(_lspan)
  10060. _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%);"
  10061. _loading.appendChild(_lchild)
  10062. var _box = $$('div', {
  10063. "style": {
  10064. "position": "relative",
  10065. "width": "100%",
  10066. "height": "100%",
  10067. },
  10068. })
  10069. _box.appendChild(_loading)
  10070. _box.id = str + '_loadLi_TeacherUpload' + cid + stage + task + tool + _userid
  10071. switch (str) {
  10072. case "CocoPi":
  10073. aTool = 57;
  10074. _iframe = $$("iframe", {
  10075. "allowpaymentrequest": "allowpaymentrequest",
  10076. "allow": "camera *; microphone *;display-capture;midi;encrypted-media;usb",
  10077. "webkitallowfullscreen": "",
  10078. "mozallowfullscreen": "",
  10079. "frameborder": "no",
  10080. "border": "0",
  10081. "scrolling ": "no",
  10082. "style": {
  10083. "cssText": "border:0;width:100%;height:100%"
  10084. },
  10085. "src": "https://pi.cocorobo.cn/"
  10086. })
  10087. _box.appendChild(_iframe);
  10088. _box.appendChild(_jie);
  10089. _formdiv = new U.UF.UI.form(
  10090. "CocoPi-" + _username,
  10091. _box, {
  10092. "id": "CocoPi_TeacherUpload" + cid + stage + task + tool + _userid,
  10093. "style": {
  10094. "width": "90%",
  10095. "height": "90%",
  10096. "overflow": 'hidden'
  10097. },
  10098. "onresize": function () { }
  10099. }, {
  10100. closecallback: function () { }
  10101. }, {
  10102. "style": {
  10103. "height": "36px"
  10104. }
  10105. }).form; //创建窗体
  10106. _taskbar = {
  10107. "id": str + _formdiv.id,
  10108. "style": {
  10109. "backgroundImage": "url(/img/icon/cocopi.png)"
  10110. },
  10111. "name": "CocoPi",
  10112. "forms": _formdiv,
  10113. "click": function () {
  10114. U.MD.D.I.openApplication(str, obj, info);
  10115. }
  10116. }
  10117. break;
  10118. }
  10119. if (_iframe) {
  10120. if (str == 'CocoPi') {
  10121. _iframe = _formdiv.querySelector('iframe')
  10122. let onloadListener = U.UF.DL.iframeLoad(_iframe, function () {
  10123. U.MD.D.I.getUploadContent(cid, stage, task, tool, _userid, aTool, '15', _iframe)
  10124. })
  10125. if (onloadListener) {
  10126. _iframe.contentDocument.location.reload()
  10127. } else {
  10128. _iframe.contentDocument.location.reload()
  10129. }
  10130. }
  10131. _jie.onclick = async () => {
  10132. let text = ''
  10133. if (aTool == 57) {
  10134. text = _iframe.contentWindow.getLoadXmlStr()
  10135. }
  10136. _loading.style.display = 'flex'
  10137. console.log(_loading);
  10138. U.A.Request(US.Config.pbl + "addCourseWorks4-u", [_userid, _cid, _stage, _task, _tool, text.replaceAll(/%/g, "%25"), 15, aTool, text], function (res) {
  10139. _loading.style.display = 'none'
  10140. let _div = document.createElement('div')
  10141. _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;"
  10142. let _inner = document.createElement('div')
  10143. _inner.style = "color: #fff;padding: 15px;background: #00000070;border-radius: 5px;font-size: 18px;"
  10144. _inner.innerHTML = "上传成功"
  10145. _div.appendChild(_inner)
  10146. _iframe.contentWindow.window.document.body.appendChild(_div)
  10147. _div.onclick = () => {
  10148. _iframe.contentWindow.window.document.body.removeChild(_div)
  10149. }
  10150. setTimeout(() => {
  10151. _iframe.contentWindow.window.document.body.removeChild(_div)
  10152. }, 1000);
  10153. }, [], { "type": "POST", "withCredentials": true });
  10154. }
  10155. }
  10156. }
  10157. U.MD.D.I.getUploadContent = function (cid, s, task, t, uid, atool, type, iframe) {
  10158. U.A.Request(US.Config.pbl + "selectWorksDetail2u", [uid, cid, s, task, t, type, atool], function (res) {
  10159. if (res.value[0].length > 0) {
  10160. if (atool == 57) {
  10161. iframe.contentWindow.loadingXml(res.value[0][0].content)
  10162. }
  10163. } else {
  10164. if (atool == 57) {
  10165. U.MD.D.I.getContents2(cid, s, task, t, uid, '4', iframe)
  10166. // iframe.contentWindow.window.blockpy.components.editor.blockly.clear();
  10167. }
  10168. }
  10169. }, [], { "type": "POST", "withCredentials": true });
  10170. }